:root {
    --rojo-link: #cc0000;
    --rojo-dark: #a30000;
    --blanco: #ffffff;
    --gris-fondo: #f8f9fa;
    --gris-texto: #4a4a4a;
    --negro: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { font-family: 'Inter', sans-serif; color: var(--negro); background: var(--blanco); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: white; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 24px; font-weight: 700; text-transform: uppercase; }
.logo-text span { color: var(--rojo-link); }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--negro); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--rojo-link); }
.btn-nav { background: var(--rojo-link); color: white !important; padding: 8px 20px; border-radius: 5px; }

/* Hero */
.hero { padding: 80px 0; background: radial-gradient(circle at right, #fff5f5 0%, #ffffff 50%); }
.hero-content { display: flex; align-items: center; gap: 40px; }
.hero-text { flex: 1; }
.badge { background: #ffebeb; color: var(--rojo-link); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; }
.hero-text h1 { font-size: 3rem; line-height: 1.1; margin: 20px 0; }
.hero-text p { font-size: 1.1rem; color: var(--gris-texto); margin-bottom: 30px; }

/* Botones */
.btn { padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--rojo-link); color: white; }
.btn-primary:hover { background: var(--rojo-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--gris-fondo); color: var(--negro); margin-left: 10px; }

/* Grid Misión */
.grid-mision { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 60px 0; }
.card { padding: 40px; border-radius: 15px; background: var(--gris-fondo); }
.card-red { background: var(--rojo-link); color: white; }

/* Catálogo */
.section-title { text-align: center; margin-bottom: 40px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: white; border: 1px solid #eee; border-radius: 12px; overflow: hidden; position: relative; transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--rojo-link); color: white; padding: 3px 12px; font-size: 0.7rem; font-weight: bold; border-radius: 5px; }
.product-info { padding: 20px; }
.category { color: var(--rojo-link); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.product-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; margin-top: 10px; }
.btn-sm { background: var(--rojo-link); color: white; text-decoration: none; padding: 8px 15px; border-radius: 5px; font-size: 0.85rem; font-weight: 600; }

/* Banner Comercial */
.banner-comercial { background: var(--rojo-link); color: white; padding: 60px 0; text-align: center; }

/* Contacto */
.contact-section { padding: 80px 20px; }
.contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; background: var(--gris-fondo); padding: 50px; border-radius: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group input, .form-group textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.btn-block { width: 100%; }

/* Footer & WhatsApp */
footer { background: #111; color: #888; padding: 40px 0; }
footer h3 span { color: var(--rojo-link); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 1000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .hero-content, .grid-mision, .contact-container, .footer-content { grid-template-columns: 1fr; text-align: center; }
    .nav-links { display: none; }
}