/* ========== FUENTES PERSONALIZADAS ========== */
@font-face {
    font-family: 'Retrochips';
    src: url('../assets/fonts/Retrochips.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham-Light';
    src: url('../assets/fonts/Gotham-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham-Black';
    src: url('../assets/fonts/GOTHAM-BLACK.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url('../assets/fonts/Gotham-Bold.otf') format('opentype');
}

/* ========== VARIABLES GLOBALES ========== */
:root {
    --primary: #0033fe;
    --secondary: #ff6d00;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Gotham-Light', sans-serif;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--primary);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    color: var(--white);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    font-family: 'Retrochips', sans-serif;
    white-space: nowrap;
}

/* ========== NAV LINKS - DESKTOP ========== */
.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(0.8rem, 1.5vw, 1.5rem);
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
    margin: 0 1rem;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========== HAMBURGER MENU - MOBILE ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Animación hamburger activo */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== RESPONSIVE - TABLET Y MÓVIL ========== */
@media (max-width: 768px) {
    /* Mostrar hamburger en mobile */
    .hamburger {
        display: flex;
    }

    /* Nav links ocultos por defecto */
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        display: none;
        border-bottom: 3px solid var(--secondary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Mostrar nav links cuando está activo */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
        margin: 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
        font-size: 0.95rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* ========== RESPONSIVE - MÓVIL PEQUEÑO ========== */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        top: 65px;
    }

    .nav-links a {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.6), rgba(0, 51, 254, 0.6)),
                url('assets/hero1.webp') center/cover no-repeat fixed;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 40px);
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-logo {
    height: clamp(150px, 25vw, 200px);
    width: auto;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Retrochips', sans-serif;
    font-weight: 800;
    margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    opacity: 0.95;
    line-height: 1.3;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: clamp(12px, 2vw, 15px) clamp(30px, 5vw, 50px);
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-dark);
    text-decoration: none;
}

.cta-button:hover {
    background: #ff8a00;
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 109, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
    opacity: 0.95;
    text-align: justify;
}

.hero-description:last-child {
    margin-bottom: 0;
}

.hero-description-final {
    font-family: 'Gotham-Black', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding-top: clamp(1rem, 2vw, 1.5rem);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* ========== GUISADOS ========== */
.guisados {
    padding: clamp(40px, 10vw, 80px) 0;
    background: var(--white);
}

.section-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-family: 'Retrochips', sans-serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

.guisados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.guisado-card {
    background: var(--gray-light);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.guisado-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-left-color: var(--secondary);
    background: var(--white);
}

.guisado-icon {
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    object-fit: contain;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.guisado-card:hover .guisado-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(255, 109, 0, 0.3));
}

.guisado-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Retrochips', sans-serif;
    font-weight: 600;
}

.guisado-card p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

@media (min-width: 769px) {
    .guisado-card:last-child {
        grid-column: 1 / -1;
        width: clamp(250px, 25vw, 350px);
        margin: 0 auto;
    }
}

/* ========== GALERÍA ========== */
.galeria {
    padding: clamp(40px, 10vw, 80px) 0;
    background: var(--gray-light);
}

.galeria .section-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-family: 'Retrochips', sans-serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    color: var(--primary);
}

.galeria .section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

/* ========== GALERÍA MALLA - DESKTOP ========== */
.galeria-malla {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: clamp(1rem, 2vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

@media (min-width: 1025px) {
    .galeria-malla {
        display: grid;
    }
}

.galeria-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    background: var(--gray-dark);
    aspect-ratio: 1 / 1;
    animation: fadeInUp 0.6s ease-out;
}

/* Video Vertical - Una celda */
.video-vertical-card {
    aspect-ratio: 1 / 1;
    grid-column: 2;
    grid-row: 1;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor del video con fondo negro */
.video-container-black {
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-vertical {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    background: #000000;
}

.video-vertical-card:hover .galeria-caption {
    transform: translateY(0);
}

/* Carrusel */
.galeria-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.galeria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    display: block;
}

.galeria-card:hover .galeria-img {
    opacity: 0.9;
}

.galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-family: 'Retrochips', sans-serif;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-carousel:hover .galeria-caption {
    transform: translateY(0);
}

/* ✨ BOTONES CARRUSEL ✨ */
.carousel-btn-mini {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 109, 0, 0.9);
    color: var(--white);
    border: none;
    width: clamp(40px, 9vw, 50px);
    height: clamp(40px, 9vw, 50px);
    border-radius: 50%;
    cursor: pointer;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-card:hover .carousel-btn-mini {
    opacity: 1;
}

.carousel-btn-mini:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.2);
}

.carousel-btn-mini:active {
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-mini.prev {
    left: clamp(0.5rem, 2vw, 1rem);
}

.carousel-btn-mini.next {
    right: clamp(0.5rem, 2vw, 1rem);
}

/* ========== GALERÍA LINEAL - MÓVIL ========== */
.galeria-lineal {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

@media (min-width: 1025px) {
    .galeria-lineal {
        display: none;
    }
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    background: var(--gray-dark);
    aspect-ratio: 16 / 9;
    animation: fadeInUp 0.6s ease-out;
}

.galeria-item img,
.galeria-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-item:hover img {
    opacity: 0.9;
}

.galeria-item .galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-family: 'Retrochips', sans-serif;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-caption {
    transform: translateY(0);
}

.galeria-item.video-item {
    position: relative;
    background: #000;
}

.galeria-item.video-item:hover .galeria-caption {
    transform: translateY(0);
}

/* ========== RESPONSIVE TABLET ========== */
@media (max-width: 1024px) and (min-width: 769px) {
    .galeria-malla {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .video-vertical-card {
        grid-column: 1 / 3;
        aspect-ratio: 16 / 9;
        grid-row: auto;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== POR QUÉ ELEGIRNOS ========== */
.por-que {
    padding: clamp(40px, 10vw, 80px) 0;
    background: var(--white);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.beneficio-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0020a3 100%);
    color: var(--white);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.beneficio-card h3 {
    font-family: 'Retrochips', sans-serif;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.beneficio-icon {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-icon 3s ease-in-out infinite;
}

.beneficio-icon img,
.beneficio-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.beneficio-card:hover .beneficio-icon {
    filter: drop-shadow(0 6px 12px rgba(255, 109, 0, 0.25));
}

/* ========== TIPOS DE EVENTOS ========== */
.eventos {
    padding: clamp(40px, 10vw, 80px) 0;
    background: var(--white);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.evento-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evento-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-dark);
}

.evento-icon {
    width: clamp(30px, 5vw, 45px);
    height: clamp(30px, 5vw, 45px);
    margin: 0 auto 0.75rem;
    display: block;
    animation: float-evento 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.evento-icon img,
.evento-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float-evento {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.evento-card:hover .evento-icon {
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.4));
}

.evento-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-family: 'Retrochips', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.evento-card p {
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    opacity: 0.95;
}

.btn-evento {
    background: var(--white);
    color: var(--primary);
    padding: clamp(8px, 2vw, 10px) clamp(20px, 3vw, 25px);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-evento:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== UBICACIÓN - MAPAS ========== */
.ubicacion {
    padding: clamp(40px, 10vw, 80px) 0;
    background: var(--white);
}

.ubicaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.ubicacion-card {
    background: var(--gray-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.ubicacion-card:hover {
    box-shadow: var(--shadow-dark);
    transform: translateY(-5px);
}

.map-container {
    position: relative;
    width: 100%;
    height: clamp(250px, 40vw, 400px);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ubicacion-info {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.ubicacion-info h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: var(--primary);
    font-family: 'Retrochips', sans-serif;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 51, 254, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    min-width: 30px;
    text-align: center;
}

.info-item h4 {
    color: var(--primary);
    font-family: 'Retrochips', sans-serif;
    margin-bottom: 0.3rem;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.info-item p {
    color: #666;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.info-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--primary);
}

/* ========== BOTONES DELIVERY EN UBICACIÓN ========== */
.info-item-telefono {
    align-items: flex-start;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.delivery-apps-small {
    display: flex;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    margin-left: auto;
    align-items: center;
}

.btn-delivery-svg {
    width: clamp(36px, 7vw, 45px);
    height: clamp(36px, 7vw, 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.btn-delivery-svg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.btn-delivery-svg:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* ========== CONTACTO ========== */
.contacto {
    background: var(--primary);
    color: var(--white);
    padding: clamp(40px, 10vw, 80px) 0;
    text-align: center;
}

.contacto h2 {
    font-size: clamp(2rem, 7vw, 3rem);
    font-family: 'Retrochips', sans-serif;
    font-weight: 800;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.contacto-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    opacity: 0.95;
}

.contacto-content {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
    flex-wrap: wrap;
}

.contacto-btn {
    background: var(--white);
    color: var(--primary);
    padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.contacto-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-button-large {
    background: var(--secondary);
    color: var(--white);
    padding: clamp(14px, 3vw, 18px) clamp(40px, 5vw, 60px);
    border: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.4);
}

.cta-button-large:hover {
    background: #ff8a00;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 109, 0, 0.5);
}

/* ========== FORMULARIO CONTACTO ========== */
.formulario-container {
    max-width: 500px;
    margin: clamp(2rem, 5vw, 4rem) auto;
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.formulario-container h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.formulario-contacto {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: clamp(0.75rem, 2vw, 1rem);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-dark);
    font-family: inherit;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 10px rgba(255, 109, 0, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    text-align: center;
    color: var(--white);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    margin-top: 1rem;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #ff6b6b;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: clamp(40px, 5vw, 60px) 0 clamp(20px, 3vw, 20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.footer-section h4 {
    color: var(--secondary);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    background: var(--primary);
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--white);
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.delivery-apps {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}

.delivery-btn {
    flex: 1;
    min-width: 140px;
    height: clamp(55px, 12vw, 75px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: clamp(12px, 2.5vw, 18px);
    border: 3px solid;
    background: #FFFFFF;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.delivery-btn img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    max-width: 100%;
}

.delivery-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.delivery-btn.uber-eats {
    border-color: #000000;
}

.delivery-btn.uber-eats:hover {
    background: #F8F8F8;
}

.delivery-btn.didi-foods {
    border-color: #FF6B35;
}

.delivery-btn.didi-foods:hover {
    background: #FFF8F3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* ========== BOTONES FLOTANTES ========== */
.botones-flotantes {
    position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
    z-index: 999;
}

.boton-flotante {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: float-social 3s ease-in-out infinite;
    padding: 8px;
    border: none;
    cursor: pointer;
}

.boton-flotante img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.boton-flotante i {
    color: var(--white);
}

.boton-flotante:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    animation: none;
}

.boton-flotante.facebook {
    background: linear-gradient(135deg, #1877f2, #0a66c2);
}

.boton-flotante.instagram {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #f77737, #feda75, #f58529);
}

.boton-flotante.uber-eats {
    background: #FFFFFF;
    border: 2px solid #000000;
}

.boton-flotante.didi-foods {
    background: #FFFFFF;
    border: 3px solid #FF6B35;
}

@keyframes float-social {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ========== RESPONSIVE TABLET ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 3px solid var(--secondary);
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.75rem 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-right {
        align-items: center;
    }

    .hero-description {
        text-align: center;
    }

    /* ========== TODO BLANCO EN RESPONSIVE ========== */
    .guisados {
        background: var(--white);
    }

    .guisados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guisado-card {
        background: var(--white);
    }

    .galeria {
        background: var(--white);
    }

    .por-que {
        background: var(--white);
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eventos {
        background: var(--white);
    }

    .eventos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ubicacion {
        background: var(--white);
    }

    .ubicaciones-grid {
        grid-template-columns: 1fr;
    }

    .ubicacion-card {
        background: var(--white);
    }

    .map-container {
        height: clamp(200px, 50vw, 300px);
    }

    .info-item-telefono {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .delivery-apps-small {
        margin-left: auto;
        order: 2;
        width: 100%;
        justify-content: flex-end;
        gap: 0.5rem;
    }

    .btn-delivery-svg {
        width: 36px;
        height: 36px;
    }

    .contacto-content {
        flex-direction: column;
    }

    .contacto-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* ========== RESPONSIVE MÓVIL ========== */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .logo {
        height: 40px;
    }

    /* ========== TODO BLANCO EN MÓVIL ========== */
    .guisados {
        background: var(--white);
    }

    .guisados-grid {
        grid-template-columns: 1fr;
    }

    .guisado-card {
        background: var(--white);
    }

    .galeria {
        background: var(--white);
    }

    .por-que {
        background: var(--white);
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .eventos {
        background: var(--white);
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .ubicacion {
        background: var(--white);
    }

    .ubicacion-card {
        background: var(--white);
    }

    .info-item-telefono {
        flex-direction: column;
        gap: 0.75rem;
    }

    .delivery-apps-small {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .btn-delivery-svg {
        width: 32px;
        height: 32px;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .botones-flotantes {
        display: none;
    }

    .navbar {
        position: relative;
    }
}