:root {
    /* 🎨 Paleta */
    --soft-pink: #F0D2E4;
    --pastel-blue: #a7d3f2;
    --creamy-vanilla: #fff5e1;
    --soft-beige: #e1d0b7;
    --vintage-pink: #e0bdcb;

    /* Acentos */
    --dark-pink: #8A2F5E;
    --warm-brown: #8B7355;

    /* Utilidades */
    --transition-base: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 4px 20px rgba(138, 47, 94, 0.05);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(145deg, var(--creamy-vanilla) 0%, #fdf9f3 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* HEADINGS */
h1, h2, h3, h4, h5 {
    font-family: 'Blona', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--dark-pink);
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================
       ANIMACIONES
==============================*/
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-12px) rotate(-0.5deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

/* Elementos animados por scroll */
.section-title,
.flavor-card,
.reason-card,
.testimonial-card,
.story-text,
.story-image,
.gallery-item,
.location-card {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity var(--transition-base), transform var(--transition-base);
    will-change: opacity, transform; /* ⚡ Mejora rendimiento */
}

.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* ===========================
        BOTONES
==============================*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.4);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--soft-pink), var(--vintage-pink));
    color: var(--dark-pink);
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(240, 210, 228, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--soft-pink);
    color: var(--dark-pink);
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 0;
    background: var(--soft-pink);
    z-index: -1;
    transition: height 0.4s ease;
}

.btn-outline:hover::after {
    height: 100%;
}

/* ===========================
        HEADER
==============================*/

/* Header fijo visible siempre */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(138, 47, 94, 0.08);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

/* Contenido del header */
#header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 20px;
}

/* Offset del body para que el contenido no quede bajo el header */
body {
  /* ajustaremos este padding-top dinámicamente con JS para que coincida con la altura real del header */
  padding-top: 80px; /* valor de respaldo si JS no ha corrido aún */
}

header.scrolled {
    box-shadow: 0 4px 25px rgba(138, 47, 94, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 20px;
    transition: padding 0.3s ease;
}

header.scrolled .header-content {
    padding: 0.2rem 20px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon img {
    height: 80px;
    object-fit: contain;
    display: block;
}

/* NAV */
nav ul {
    display: flex;
    list-style: none;
    gap: 1.6rem;
}

nav a {
    color: var(--dark-pink);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.02rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-pink);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


/* ===========================
   MENÚ HAMBURGUESA ESTILO HELADERÍA
=========================== */

/* ===========================
   MENÚ HAMBURGUESA ESTILO HELADERÍA
=========================== */

/* Botón móvil */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        color: var(--dark-pink);
        background: var(--soft-pink);
        padding: 0.5rem 0.75rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(138, 47, 94, 0.2);
        transition: all 0.3s ease;
    }
    .mobile-menu-btn:hover {
        background: var(--vintage-pink);
        color: #fff;
        transform: scale(1.05);
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--soft-pink) 0%, var(--creamy-vanilla) 100%);
        box-shadow: -6px 0 25px rgba(138, 47, 94, 0.15);
        transition: right 0.5s ease-in-out;
        padding: 4rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        z-index: 10001;
        border-radius: 0 0 0 20px;
        border-left: 3px solid var(--soft-beige);
    }

    #main-nav.open {
        right: 0;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    #main-nav a {
        display: flex;
        align-items: center;
        padding: 0.75rem 1.2rem;
        border-radius: 18px;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--dark-pink);
        text-decoration: none;
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 6px 12px rgba(138, 47, 94, 0.08);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    #main-nav a::before {
        content: "🍦";
        margin-right: 10px;
        font-size: 1.1rem;
        transition: transform 0.3s ease;
        z-index: 0;
    }

    #main-nav a:hover {
        background: var(--soft-beige);
        color: var(--warm-brown);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 12px 20px rgba(138, 47, 94, 0.2);
    }

    #main-nav a:hover::before {
        transform: translateY(-3px) scale(1.2);
    }

    .overlay-visible {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        z-index: 9999;
        pointer-events: none; /* Esto permite click en los enlaces */
    }

    .no-scroll {
        overflow: hidden;
    }
}

/* Mantener menú de escritorio visible */
@media (min-width: 1024px) {
    #main-nav {
        position: static;
        height: auto;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        display: block;
        flex-direction: row;
        border-radius: 0;
        border-left: none;
    }
    #main-nav ul {
        flex-direction: row;
        gap: 1.6rem;
    }
    #main-nav a {
        background: none;
        box-shadow: none;
        color: var(--dark-pink);
        font-size: 1.02rem;
        font-weight: 500;
        border-radius: 0;
        padding: 0;
    }
    #main-nav a::before {
        content: "";
        margin: 0;
    }
}

/* ===========================
        FLOTANTES
==============================*/

.floating {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.2;
    z-index: -1; /* 👈 ahora estarán detrás de los contenedores */
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

/* 🔑 TAMAÑOS AUMENTADOS Y ESTILO DE HELADO */

/* 1. Rosa Claro (soft-pink) */
.floating-1 {
    top: 5vh; 
    left: 8vw; 
    width: 250px; /* Antes 200px */
    height: 250px; /* Antes 200px */
    background: radial-gradient(circle at 35% 35%, #FFFFFF 10%, var(--soft-pink) 60%, var(--dark-pink) 95%);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.7) inset, 0 10px 20px rgba(0, 0, 0, 0.15);
    text-shadow: 10px 10px 5px rgba(0, 0, 0, 0.05), -15px -15px 5px rgba(0, 0, 0, 0.05);
    animation: float 20s ease-in-out infinite; 
}

/* 2. Azul Claro (pastel-blue) */
.floating-2 {
    top: 15vh; 
    right: 5vw;
    width: 190px; /* Antes 150px */
    height: 190px; /* Antes 150px */
    background: radial-gradient(circle at 35% 35%, #FFFFFF 15%, var(--pastel-blue) 60%, var(--dark-pink));
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6) inset, 0 8px 15px rgba(0, 0, 0, 0.1);
    animation: float 24s ease-in-out infinite;
    animation-delay: -3s;
}

/* 3. Malva/Rosa Oscuro (vintage-pink) */
.floating-3 {
    top: 30vh;
    left: 20vw;
    width: 100px; /* Antes 80px */
    height: 100px; /* Antes 80px */
    background: radial-gradient(circle at 35% 35%, var(--soft-pink) 15%, var(--vintage-pink) 60%, var(--dark-pink));
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7) inset, 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: float 16s ease-in-out infinite;
    animation-delay: -8s;
}

/* 4. Beige/Caramelo (soft-beige) */
.floating-4 {
    top: 40vh; 
    right: 18vw;
    width: 320px; /* Antes 250px */
    height: 320px; /* Antes 250px */
    background: radial-gradient(circle at 35% 35%, var(--creamy-vanilla) 10%, var(--soft-beige) 60%, var(--warm-brown));
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5) inset, 0 12px 25px rgba(0, 0, 0, 0.18);
    animation: float 22s ease-in-out infinite;
    animation-delay: -12s;
    opacity: 0.25;
}

/* 5. Rosa Claro (soft-pink) */
.floating-5 {
    top: 55vh; 
    left: 5vw;
    width: 150px; /* Antes 120px */
    height: 150px; /* Antes 120px */
    background: radial-gradient(circle at 35% 35%, #FFFFFF 10%, var(--soft-pink) 60%, var(--dark-pink) 95%);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7) inset, 0 8px 15px rgba(0, 0, 0, 0.2);
    animation: float 18s ease-in-out infinite;
    animation-delay: -6s;
}

/* 6. Azul Claro (pastel-blue) */
.floating-6 {
    top: 65vh; 
    right: 8vw;
    width: 120px; /* Antes 90px */
    height: 120px; /* Antes 90px */
    background: radial-gradient(circle at 35% 35%, var(--creamy-vanilla) 15%, var(--pastel-blue) 60%, var(--dark-pink));
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6) inset, 0 6px 12px rgba(0, 0, 0, 0.15);
    animation: float 15s ease-in-out infinite;
    animation-delay: -10s;
    opacity: 0.28;
}

/* 7. Malva/Rosa Oscuro (vintage-pink) */
.floating-7 {
    top: 75vh;
    left: 15vw;
    width: 220px; /* Antes 170px */
    height: 220px; /* Antes 170px */
    background: radial-gradient(circle at 35% 35%, var(--soft-pink) 10%, var(--vintage-pink) 60%, var(--dark-pink));
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5) inset, 0 10px 20px rgba(0, 0, 0, 0.15);
    animation: float 21s ease-in-out infinite;
    animation-delay: -4s;
}

/* 8. Beige/Caramelo (soft-beige) */
.floating-8 {
    top: 85vh; 
    right: 25vw;
    width: 80px; /* Antes 60px */
    height: 80px; /* Antes 60px */
    background: radial-gradient(circle at 35% 35%, var(--creamy-vanilla) 15%, var(--soft-beige) 60%, var(--warm-brown));
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8) inset, 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: float 19s ease-in-out infinite;
    animation-delay: -14s;
    opacity: 0.35;
}

/* 9. Mezcla de Algodón de Azúcar (soft-pink + pastel-blue) */
.floating-9 {
    bottom: 5vh; 
    left: 2vw;
    width: 170px; /* Antes 130px */
    height: 170px; /* Antes 130px */
    background: radial-gradient(circle at 35% 35%, #FFFFFF 15%, var(--pastel-blue) 40%, var(--soft-pink) 80%);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.7) inset, 0 8px 15px rgba(0, 0, 0, 0.15);
    animation: float 23s ease-in-out infinite;
    animation-delay: -7s;
}

/* 10. Beige con toque de Rosa (soft-beige) */
.floating-10 {
    bottom: 10vh; 
    right: 15vw;
    width: 280px; /* Antes 220px */
    height: 280px; /* Antes 220px */
    background: radial-gradient(circle at 35% 35%, var(--creamy-vanilla) 10%, var(--soft-beige) 60%, var(--dark-pink));
    box-shadow: 0 0 45px rgba(255, 255, 255, 0.6) inset, 0 12px 25px rgba(0, 0, 0, 0.15);
    animation: float 17s ease-in-out infinite;
    animation-delay: -1s;
    opacity: 0.2;
}

/* =======================================
   HERO SECTION
======================================= */

.hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    text-align: center;
    perspective: 1000px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

/* Título */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    text-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.hero h1 span {
    color: var(--warm-brown);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--soft-beige);
    opacity: 0.4;
    border-radius: 8px;
    z-index: -1;
}

/* Descripción */
.hero p {
    font-size: 1.2rem;
    color: #555;
    margin: 0 auto 2.25rem;
    max-width: 700px;
}

/* Imagen Hero */
.hero-image {
    max-width: 580px;
    margin: 3.5rem auto 0;
    position: relative;
    transform-style: preserve-3d;
    animation: float 20s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-image-inner {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-pink), var(--vintage-pink));
    height: 380px;
    box-shadow:
        0 25px 50px -12px rgba(0,0,0,0.12),
        0 35px 60px -12px rgba(240,210,228,0.4);
    transform: translateZ(20px);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 2rem;
    color: var(--dark-pink);
}

.hero-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image:hover .hero-image-inner {
    transform: translateZ(40px) rotate(1deg);
}

/* =======================================
   SECCIONES GENERALES
======================================= */

section {
    padding: 6rem 0;
    position: relative;
}

/* Títulos generales */
.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin: 0;
    padding-bottom: 1.25rem;
}

.section-title p {
    color: #666;
    font-size: 1.15rem;
    margin-top: 2rem;
    line-height: 1.7;
}

/* =======================================
   TABS / FILTRO DE SABORES
======================================= */

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.65rem 1.5rem;
    background: none;
    border: none;
    border-radius: 9999px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--dark-pink);
    transition: all .4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--soft-pink);
    border-radius: 9999px;
    opacity: 0;
    z-index: -1;
    transition: opacity .3s;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    opacity: 1;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--dark-pink);
}

/* =======================================
   TARJETAS DE SABORES
======================================= */

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Tarjeta */
.flavor-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(225,216,183,0.4);
    box-shadow:
        0 10px 30px -5px rgba(0,0,0,0.05),
        0 20px 40px -10px rgba(224,189,203,0.15);
    transition: all .5s cubic-bezier(0.16,1,0.3,1);
}

.flavor-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        0 15px 40px -5px rgba(0,0,0,0.08),
        0 25px 50px -10px rgba(240,210,228,0.4);
}

/* Imagen */
.flavor-img {
    height: 300px;
    background: linear-gradient(135deg, var(--soft-pink), var(--vintage-pink));
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-pink);
    position: relative;
    overflow: hidden;
}

.flavor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glow hover */
.flavor-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s;
}

.flavor-card:hover .flavor-img::before {
    opacity: 1;
}

/* Texto */
.flavor-content {
    padding: 1.75rem 1.5rem;
}

.flavor-content h3 {
    font-size: 1.45rem;
    margin-bottom: .75rem;
}

.flavor-content p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Meta */
.flavor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flavor-tag {
    font-size: .8rem;
    padding: .35rem 1rem;
    background: var(--soft-pink);
    color: var(--dark-pink);
    border-radius: 9999px;
    font-weight: 700;
    margin-top: .5rem;
}

.flavor-action {
    color: var(--dark-pink);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: gap .3s;
}

.flavor-card:hover .flavor-action {
    gap: .7rem;
}

/* =======================================
   VIDEO GALLERY
======================================= */

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: .5rem;
    gap: 0;
    background-color: #e1d8b7;
    max-width: 1150px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    overflow: hidden;
}

.video-item {
    flex: 0 0 25%;
    aspect-ratio: 2 / 5;
    overflow: hidden;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-gallery {
        display: none !important;
    }
}

/* ----------------------------------------------------------------------
   EFECTO DE BRILLO EN LAS IMÁGENES DE SABORES
---------------------------------------------------------------------- */
.flavor-img::before {
    content: '';
    position: absolute;
    top: -50%; 
    left: -50%;
    width: 200%; 
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; /* previene bloqueos accidentalmente */
}

.flavor-card:hover .flavor-img::before {
    opacity: 1;
}

/* ----------------------------------------------------------------------
   CONTENIDO DE LAS TARJETAS DE SABOR
---------------------------------------------------------------------- */
.flavor-content {
    padding: 1.75rem 1.5rem;
}

.flavor-content h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.flavor-content p {
    font-size: 1.02rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Meta: categoría y enlace */
.flavor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flavor-tag {
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
    background: var(--soft-pink);
    color: var(--dark-pink);
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block; 
    margin-top: 0.5rem; 
}

.flavor-action {
    color: var(--dark-pink);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
}

.flavor-card:hover .flavor-action {
    gap: 0.7rem;
}

/* ======================================================================
    Non-Dairy (SECTION) 
====================================================================== */
.non-dairy-section {
    margin-top: 50px; 
}

.non-dairy-title {
    margin-bottom: 18px; 
}

.non-dairy-section .gallery-grid {
    margin-top: 0;
}

.non-dairy-section .gallery-item {
    margin-top: 0;
}

/* ======================================================================
    Sugar-Free (SECTION)
====================================================================== */
.sugar-free-section {
    margin-top: 50px; 
}

.sugar-free-title {
    margin-bottom: 18px; 
}

.sugar-free-section .gallery-grid {
    margin-top: 0;
}

.sugar-free-section .gallery-item {
    margin-top: 0;
}

/* ======================================================================
   CARRUSEL DE RAZONES (REASONS CAROUSEL)
====================================================================== */

/* ================= CONTENEDOR PRINCIPAL ================= */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* ================= PISTA DEL CARRUSEL ================= */
.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;                 /* Permite swipe en móviles */
    scroll-behavior: smooth;          /* Desplazamiento suave */
    -webkit-overflow-scrolling: touch;/* Rendimiento iOS */
    scroll-snap-type: x mandatory;    /* Snap por tarjeta */
}

/* Ocultar scrollbars */
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track { -ms-overflow-style: none; scrollbar-width: none; }

/* ================= TARJETAS ================= */
.card-container {
    min-width: 320px;
    width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem 2rem;
    text-align: center;
    border: 1px solid var(--soft-beige, #f5f0e6);
    box-shadow: 0 8px 25px -5px rgba(0,0,0,0.04),
                0 15px 35px -10px rgba(167,211,242,0.15);
    transition: transform 0.3s ease;
}

.card-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px -5px rgba(224,189,203,0.5),
                0 25px 50px -10px rgba(138,47,94,0.15);
}

/* ================= IMÁGENES ================= */
.reason-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= TEXTOS ================= */
.card-container h3 {
    font-size: 1.2rem;
    color: #8A2F5E;
    margin-bottom: 0.75rem;
}

.card-container p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Cursor cuando está sobre el carrusel */
.whyus-grid-scroller,
.testimonials-grid-scroller {
    cursor: grab;
}

/* Cursor cuando está arrastrando */
.whyus-grid-scroller.dragging,
.testimonials-grid-scroller.dragging {
    cursor: grabbing;
}
/* ==============================
   SECCIÓN HISTORIA (STORY)
================================ */

.story {
    background: white;
    position: relative;
    overflow: hidden;
}

/* ------------------------------
   CONTENEDOR PRINCIPAL
-------------------------------- */
.story-content {
    background: var(--vintage-pink);
    border-radius: 1.5rem;
    padding: 3.5rem;
    margin: 3rem auto;
    max-width: 1150px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;

    position: relative;
    z-index: 1;
}

/* ------------------------------
   1. TÍTULO
-------------------------------- */
.section-title {
    width: 100%;
    margin-bottom: 2.5rem;
    order: 1;
}

.section-title::after {
    content: none !important;
}

.section-title h2 {
    margin: 0;
}

/* ------------------------------
   2. TEXTO
-------------------------------- */
.story-text {
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
    order: 2;
}

.story-text p {
    margin: 0;
    line-height: 1.7;
    color: #444;
}

.story-text::after {
    content: none !important;
}

/* ------------------------------
   3. BOTÓN
-------------------------------- */
.story-button-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 3;
}

.story-button-wrapper::after {
    content: none !important;
}

/* ------------------------------
   RESPONSIVE 
-------------------------------- */
@media screen and (max-width: 768px) {

    .story-content {
        padding: 2rem;
        display: block;
        text-align: center;
    }

    .section-title,
    .story-text,
    .story-button-wrapper {
        order: initial;
    }

    .story-text p {
        font-size: 1rem;
    }
}

/* ==============================
   AJUSTES DE BOTÓN + LÍNEA DIVISORIA
================================= */

.story-button-wrapper {
    margin-top: 1.5rem;       /* Separación después del texto */
    margin-bottom: 2rem;      /* Espacio antes de la línea */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-button-wrapper::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 2rem auto 0 auto; /* Línea separadora debajo del botón */
    background-color: rgba(255, 255, 255, 0.4);
}

/* ==============================
   AJUSTES DEL TÍTULO
================================= */

.story-content .section-title {
    order: -1;                /* El título siempre aparece primero */
    width: 100%;
    margin-bottom: 2rem;
}

.section-title h2 {
    margin: 0;                /* Sin separación extra */
}

/* ==============================
   TEXTO DE HISTORIA
================================= */

.story-text {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-pink);
}

.story-text p {
    margin-bottom: 1.25rem;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
}


/* ============================================================
   BLOQUE DE IMAGEN (STORY-IMAGE)
============================================================ */

.story-image {
    flex: 1;
    min-width: 320px;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: none;
    transform: rotate(-1deg);
    transition: transform 0.5s ease;
}

.story-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.story-image-inner {
    height: 380px;
    background: linear-gradient(135deg, var(--soft-beige), var(--creamy-vanilla));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;

    font-family: 'Blona', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-pink);
}

/* ============================================================
   GALERÍA DE PRODUCTOS (GALLERY)
============================================================ */

.menu-section {
    max-width: 1000px;     /* Consistente con tu layout general */
    margin: 0 auto;
    padding: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    text-align: center;
}

.gallery-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;     /* Círculo perfecto */
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

.gallery-item p {
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #a03c5f;
    font-family: 'Raleway', sans-serif;
}


/* ------------------------TESTIMONIOS----------------------------------------- */

/* ============================================================
   CONTENEDOR PRINCIPAL DEL CARRUSEL
============================================================ */
.testimonials-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden; /* Mantiene oculto cualquier elemento fuera del contenedor */
}

/* ============================================================
   BOTONES (OPCIONALES, OCULTOS EN MÓVIL)
============================================================ */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    color: var(--dark-pink);
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s, opacity 0.3s;
}

.scroll-btn:hover {
    background-color: var(--soft-pink);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

@media (max-width: 768px) {
    .scroll-btn { display: none; } /* Ocultos en móvil */
}

/* ============================================================
   WRAPPER GENERAL
============================================================ */
.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

/* ============================================================
   TRACK DEL CARRUSEL (SWIPING + AUTOPLAY)
============================================================ */
.testimonials-grid-scroller {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    width: 100%;
    overflow-x: scroll;              /* Scroll horizontal nativo */
    scroll-snap-type: x mandatory;   /* Snap obligatorio */
    -webkit-overflow-scrolling: touch; /* Suaviza el scroll en iOS */
    transition: none !important;     /* Evita conflictos con JS */

    /* Ocultar scrollbars */
    scrollbar-width: none;           /* Firefox */
}

.testimonials-grid-scroller::-webkit-scrollbar {
    display: none;                   /* Chrome, Safari, Edge */
}

/* ============================================================
   TARJETAS DE TESTIMONIO
============================================================ */
.testimonial-card {
    flex: 0 0 350px;    /* Tamaño fijo, evita que se compriman */
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: center;       /* Snap centrado */

    /* Estilos visuales */
    background: linear-gradient(140deg, var(--soft-pink), var(--vintage-pink));
    border: 1px solid var(--vintage-pink);
    border-radius: 1.5rem;
    padding: 2.25rem;
    box-shadow:
        0 10px 30px -5px rgba(224, 189, 203, 0.3),
        0 20px 40px -10px rgba(138, 47, 94, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 15px 40px -5px rgba(224, 189, 203, 0.5),
        0 25px 50px -10px rgba(138, 47, 94, 0.15);
}

/* ============================================================
   ESTILOS DE CONTENIDO
============================================================ */

/* Estrellas */
.stars {
    color: #fbbf24;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    letter-spacing: 3px;
    text-shadow: 1px 1px 1px #000;
}

/* Texto del testimonio */
.testimonial-card p {
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #2d1b28;
    line-height: 1.6;
}

/* Autor */
.testimonial-card cite {
    font-weight: 700;
    color: var(--dark-pink);
    font-size: 1.1rem;
    font-style: normal;
    display: block;
    text-align: right;
}


/* ==----------========= Contenedor CTA (Call to Action) ============================== */

/* Contenedor externo (fondo blanco) */
.cta-wrapper {
    background-color: white;
    padding: 3rem 0;
}

/* -------------------------------------------------------------- */
/* === ANIMACIÓN (Estado Inicial) === */
/* Estos elementos empiezan ocultos y 30px abajo */
/* -------------------------------------------------------------- */
.section-title,
.cta-inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* -------------------------------------------------------------- */
/* === ANIMACIÓN ACTIVADA POR JS === */
/* -------------------------------------------------------------- */
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------- */
/* === CONTENEDOR PRINCIPAL DEL CTA === */
/* -------------------------------------------------------------- */
.cta-inner {
    background: var(--vintage-pink);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 1.5rem;

    max-width: 1150px;
    margin: 0 auto;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* -------------------------------------------------------------- */
/* === TEXTO Y TITULOS CTA === */
/* -------------------------------------------------------------- */
.cta-inner h2 {
    font-size: 2.2rem;
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------------------------------- */
/* === BOTONES CTA === */
/* -------------------------------------------------------------- */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}


/* ===========================================================
   SECCIÓN: UBICACIÓN (LOCATION)
   =========================================================== */

/* Contenedor general con degradado azul pastel */
.location {
    background: linear-gradient(135deg, var(--pastel-blue), #d0e9f7);
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo circular en el fondo */
.location::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--soft-pink);
    opacity: 0.1;
}

/* Tarjeta que contiene todo el bloque */
.location-card {
    background: var(--creamy-vanilla);
    border-radius: 2rem;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;

    /* Sombra 3D elegante */
    box-shadow:
        0 35px 80px -20px rgba(0, 0, 0, 0.15),
        0 25px 60px -15px rgba(167, 211, 242, 0.3);

    /* Optimización para transformaciones */
    transform: translateZ(0);
}

/* Layout interno */
.location-content {
    display: flex;
    flex-wrap: wrap;
}

/* -----------------------------------------------------------
   BLOQUE IZQUIERDO (MAPA E INFO PRINCIPAL)
   ----------------------------------------------------------- */
.location-map {
    flex: 1;
    min-width: 320px;
    min-height: 300px;

    background-image: url('img/address.jpg');
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Capa blanca para legibilidad */
.location-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    pointer-events: none;
}

/* Asegura que el contenido esté por encima de la capa */
.location-map > * {
    position: relative;
    z-index: 2;
}

/* Icono del mapa */
.location-map svg {
    width: 70px;
    height: 70px;
    color: var(--dark-pink);
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Tipografía del bloque izquierdo */
.location-map h3 {
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
}

.location-map p {
    font-size: 1.1rem;
    color: #666;
    max-width: 300px;
    margin: 0 auto;
}

.location-map a.btn {
    margin-top: 2rem;
}

/* -----------------------------------------------------------
   BLOQUE DERECHO (INFORMACIÓN DE CONTACTO)
   ----------------------------------------------------------- */
.location-info {
    flex: 1;
    min-width: 320px;
    padding: 3rem;
}

/* Título principal */
.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Elemento de contacto */
.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

/* Icono de cada ítem */
.contact-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 0.35rem;
    color: var(--dark-pink);
    font-size: 1.5rem;
}

/* Tipografía del texto de contacto */
.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* Botón Google (reviews / maps) */
.google-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #4285F4;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.google-btn:hover {
    background-color: #3367D6;
}


/* ===========================================================
   RESPONSIVE — SECCIÓN UBICACIÓN
   =========================================================== */
@media (max-width: 768px) {

  .location-content {
    flex-direction: column; /* Apila verticalmente */
  }

  .location-map,
  .location-info {
    min-width: auto;
    width: 100%;
    padding: 1.5rem; /* Padding más compacto */
  }

  .location-map h3 {
    font-size: 1.5rem;
  }

  .location-map p {
    font-size: 1rem;
    max-width: 100%;
  }

  .location-info h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {

  .location-card {
    border-radius: 1rem;
  }

  /* Ítem de contacto más vertical */
  .contact-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-text h3 {
    font-size: 1.1rem;
  }

  .contact-text p {
    font-size: 0.95rem;
  }
}


/* ===========================================================
   FOOTER — SECCIÓN PIE DE PÁGINA
   =========================================================== */

footer {
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Elemento decorativo circular */
footer::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--soft-pink);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Grilla de columnas */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.75rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

/* Columna individual */
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Títulos estilizados */
.footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.5rem;
  font-family: 'Blona', serif;
  font-style: italic;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--soft-pink);
  border-radius: 2px;
}

/* Párrafos en descripción */
.footer-about p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #94a3b8;
}


/* Redes sociales */
.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.social-link {
  font-size: 60px;
  color: #ffffff;
  transition: transform 0.25s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  color: #e1306c; /* Instagram */
}

.social-link:nth-child(2):hover {
  color: #1877f2; /* Facebook */
}

.social-link:nth-child(3):hover {
  color: #25d366; /* WhatsApp */
}

/* Enlaces rápidos */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  color: var(--soft-pink);
  padding-left: 4px;
}

/* Contacto */
.footer-contact address {
  font-style: normal;
  line-height: 1.8;
  margin: 0;
  width: 100%;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.9rem 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #94a3b8;
}

.footer-contact .ci {
  display: inline-flex;
  width: 24px;
  justify-content: center;
  flex-shrink: 0;
  color: var(--soft-pink);
  font-size: 1.1rem;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 0.75rem 0 0 0.75rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form button {
  background: var(--soft-pink);
  color: var(--dark-ppink, #9b174c);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 0 0.75rem 0.75rem 0;
  font-weight: 700;
  cursor: pointer;
  min-width: 140px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
  background: #ffffff;
  transform: scale(1.02);
}

/* Marca de agua del logo */
.newsletter-wrapper {
  position: relative;
  width: 100%;
}

.newsletter-watermark {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 80px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Parte inferior */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}

/* === Responsive (Media Queries) === */

/* --- Hasta 1024px --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem; /* Reduce padding lateral */
    }
}

/* --- Hasta 900px: Tablets y Laptops pequeños --- */
@media (max-width: 900px) {

    /* Oculta el menú de escritorio (solo la lista UL, no el contenedor NAV) */
    nav ul {
        display: none;
    }

    /* Oculta botón DoorDash de escritorio */
    .header-content .btn-doordash {
        display: none;
    }

    /* Botón de menú móvil (hamburguesa) */
    .mobile-menu-btn { 
        display: block;
        z-index: 1001;
        font-size: 2rem;
        cursor: pointer;
        background: transparent;
        border: none;
        color: var(--dark-pink);
    }

    /* Menú móvil (contenedor #main-nav) – Oculto inicialmente */
    #main-nav {
        display: flex;                 /* Importante: mantiene flex aunque esté fuera de pantalla */
        flex-direction: column;
        justify-content: center;
        align-items: center;

        position: fixed;
        top: 0;
        right: -100%;                 /* Oculto */
        width: 75%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s ease-out;
        z-index: 1000;
        padding: 0 1rem;
    }

    /* Estado visible del menú móvil */
    #main-nav.open {
        right: 0;
    }

    /* Lista de enlaces dentro del menú */
    #main-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    #main-nav li {
        margin: 1.5rem 0;
    }

    #main-nav a {
        font-size: 1.5rem;
        color: #333;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.25s ease;
    }

    #main-nav a:hover {
        color: var(--dark-pink);
    }
}

    /* ------------------------------------------------------------- */
/* === OTROS AJUSTES DE 900PX (Tablets y móviles horizontales) === */
/* ------------------------------------------------------------- */
@media (max-width: 900px) {

    /* Hero */
    .hero h1 { font-size: 2.4rem; }
    .hero-image { max-width: 500px; }

    /* Story: invierte, sin rotación, ancho completo */
    .story-content { flex-direction: column-reverse; }
    .story-image { transform: rotate(0deg); }
    .story-image:hover { transform: scale(1.01); }
    .story-text, 
    .story-image { min-width: 100%; }

    /* Títulos */
    .section-title h2 { font-size: 2rem; }
    .cta h2 { font-size: 2.2rem; }
}


/* ------------------------------------------------------------- */
/* === Tablets pequeñas y móviles (Hasta 768px) === */
/* ------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Hero */
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .btn { width: 100%; }

    /* Header */
    .header-content { padding: 0.8rem 0; }
    .logo-text h1 { font-size: 1.4rem; }
    .logo-text p { font-size: 0.75rem; }

    /* Location */
    .location-content { flex-direction: column; }
    .location-map { 
        min-height: 240px; 
        border-radius: 0 0 2rem 2rem; 
    }
    .location-info { padding: 2.5rem 1.5rem; }

    /* CTA */
    .cta h2 { font-size: 1.8rem; }
    .cta p { font-size: 1.1rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
}


/* ------------------------------------------------------------- */
/* === Móviles pequeños (Hasta 480px) === */
/* ------------------------------------------------------------- */
@media (max-width: 480px) {

    /* Grillas: 1 columna */
    .flavors-grid,
    .reasons-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero { padding: 3.5rem 0 2.5rem; }

    /* Secciones generales */
    section { padding: 4rem 0; }

    /* Tabs */
    .tabs { justify-content: flex-start; }
    .tab-btn { 
        font-size: 0.85rem; 
        padding: 0.5rem 1rem; 
    }
}
