/* ===== ESTILOS GENERALES ===== */
:root {
    --primary-color: #69C4E9;    /* Azul corporativo */
    --secondary-color: #EFCA2E;  /* Amarillo corporativo */
    --dark-color: #000000;       /* Negro */
    --light-color: #FFFFFF;      /* Blanco */
    --gray-light: #f9f9f9;       /* Gris claro para fondos */
    --gray-medium: #e0e0e0;      /* Gris medio */
    --gray-dark: #333333;        /* Gris oscuro para texto */
    --success-color: #28a745;    /* Verde para confirmaciones */
    --error-color: #dc3545;      /* Rojo para errores */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-dark);
    background-color: var(--light-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #4fb0d9;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #e0b827;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* ===== NAVEGACIÓN ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #69C4E9; /* Azul corporativo sólido */
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    height: 110px; /* Altura fija aumentada para logo de 90px */
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo img {
    height: 90px; /* Logo de 90px como solicitado */
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #000000; /* Negro puro */
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFFFFF; /* Blanco en hover y activo */
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF; /* Línea blanca para activo */
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #000000; /* Negro para contraste con azul */
    cursor: pointer;
}

/* ===== BOTÓN FLOTANTE DE WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* ===== HERO CON VIDEO - COMPLETAMENTE REAJUSTADO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 110px; /* Compensa la altura del header fijo de 110px */
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Detrás del contenido */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center; /* Enfoca el lado derecho donde está la persona */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.video-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-content {
    text-align: center;
    color: white;
    padding: 20px;
}

/* CONTENIDO DEL HERO ALINEADO A LA IZQUIERDA */
.hero-content {
    text-align: left;
    color: var(--light-color);
    z-index: 2;
    max-width: 26%; /* Ocupa solo la mitad izquierda */
    margin-left: 2%;
    padding: 25px;
    background: rgba(0, 0, 0, 0.416); /* Fondo semitransparente para mejor legibilidad */
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    position: relative;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== SECCIÓN DE INTRODUCCIÓN ===== */
.intro-section {
    background-color: var(--light-color);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.intro-image img {
    width: 50%; /* Cambiado de 50% a 100% para mejor responsividad */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ===== SECCIÓN DE PRODUCTOS DESTACADOS - CON IMÁGENES CUADRADAS ===== */
.featured-section {
    background-color: var(--gray-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.product-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Esto crea un cuadrado perfecto */
    position: relative;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre el área manteniendo proporciones */
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.product-ingredients {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto; /* Empuja el precio hacia abajo */
}

/* ===== SECCIÓN DE ALIANZA ===== */
.partnership-section {
    background-color: var(--light-color);
    border-top: 1px solid var(--gray-medium);
    border-bottom: 1px solid var(--gray-medium);
}

.partnership-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.partnership-logo {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-logo img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    object-fit: contain;
    max-height: 150px;
}

.partnership-text h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.partnership-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== HEADER DE PÁGINA ===== */
.page-header {
    background-color: var(--gray-light);
    padding: 100px 0 60px;
    margin-top: 110px; /* Para compensar la navegación fija */
}

.page-header h1 {
    text-align: center;
    color: var(--dark-color);
}

.page-header p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* ===== MENÚ DE EMPANADAS - CON IMÁGENES CUADRADAS ===== */
.menu-section {
    background-color: var(--light-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.menu-item-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Cuadrado perfecto */
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.menu-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-item-ingredients {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.menu-item-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 15px;
}

.order-cta {
    text-align: center;
    background-color: var(--gray-light);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.order-cta h3 {
    margin-bottom: 10px;
}

.order-cta p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECCIÓN DE EVENTOS ===== */
.events-section {
    background-color: var(--light-color);
}

.event-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 60px;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--box-shadow-hover);
}

.event-card.featured-event {
    border: 2px solid var(--secondary-color);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-content {
    padding: 30px;
}

.event-content h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

.event-meta i {
    margin-right: 5px;
}

.event-cta {
    margin-top: 25px;
}

.social-reminder {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
}

.social-reminder p {
    margin-bottom: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn.facebook {
    background-color: #1877F2;
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn:hover {
    transform: translateY(-3px);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: var(--dark-color);
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
}

/* ===== SECCIÓN DE CONTACTO ===== */
.contact-section {
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-map h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-detail {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    flex: 0 0 50px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 8px;
    color: #666;
}

.map-link,
.phone-link,
.email-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.map-link:hover,
.phone-link:hover,
.email-link:hover {
    color: #4fb0d9;
    text-decoration: underline;
}

.contact-map {
    height: 100%;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
}

.map-instructions {
    background-color: var(--gray-light);
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.map-instructions i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-form-section {
    background-color: var(--gray-light);
    padding: 50px;
    border-radius: var(--border-radius);
}

/* ===== FORMULARIOS ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(105, 196, 233, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-col i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Sección de alianza en tablet */
    .partnership-content {
        gap: 30px;
    }
    
    .partnership-logo {
        width: 180px;
    }
    
    .partnership-logo img {
        max-height: 130px;
    }
    
    .partnership-text h2 {
        font-size: 1.6rem;
    }
    
    /* Ajustes de grid */
    .intro-content,
    .partnership-content,
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        grid-template-columns: 1fr;
    }
    
    /* Hero responsive */
    .hero-content {
        max-width: 70%;
        margin-left: 5%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-video {
        object-position: 65% center;
    }
    
    /* Productos destacados */
    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-ingredients {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    /* Menú de empanadas */
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    /* Header responsive */
    .main-nav {
        height: 90px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: #69C4E9;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Hero responsive */
    .hero {
        margin-top: 90px;
        min-height: calc(100vh - 90px);
    }
    
    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
        padding: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-video {
        object-position: 60% center;
        opacity: 0.8;
    }
    
    /* SECCIÓN DE ALIANZA EN MÓVILES */
    .partnership-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .partnership-logo {
        width: 160px;
        margin: 0 auto;
    }
    
    .partnership-logo img {
        max-height: 120px;
    }
    
    .partnership-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .partnership-text p {
        margin-bottom: 20px;
        font-size: 1rem;
    }
    
    .partnership-text .btn {
        display: inline-block;
        margin-top: 10px;
    }
    
    /* Productos destacados */
    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-ingredients {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    /* Otros ajustes responsive */
    .featured-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        flex-direction: column;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .menu-item-image {
        flex: 0 0 auto;
        height: 0;
        padding-bottom: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main-nav {
        height: 80px;
    }
    
    .logo img {
        height: 60px;
    }
    
    /* Sección de alianza en móviles pequeños */
    .partnership-section {
        padding: 40px 0;
    }
    
    .partnership-content {
        gap: 25px;
    }
    
    .partnership-logo {
        width: 140px;
    }
    
    .partnership-logo img {
        max-height: 100px;
    }
    
    .partnership-text h2 {
        font-size: 1.4rem;
    }
    
    .partnership-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    /* Hero responsive */
    .hero {
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    /* Productos destacados */
    .featured-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-ingredients {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    /* Modal y formularios */
    .modal-content {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
}

/* Para pantallas muy pequeñas (menos de 360px) */
@media (max-width: 360px) {
    .partnership-logo {
        width: 120px;
    }
    
    .partnership-logo img {
        max-height: 90px;
    }
    
    .partnership-text h2 {
        font-size: 1.3rem;
    }
    
    .partnership-text p {
        font-size: 0.9rem;
    }
    
    .partnership-text .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .featured-grid {
        max-width: 280px;
    }
    
    .product-card {
        max-width: 280px;
    }
}