/* =====================================================
   LA MICHOACANA ORIGINAL
   V2 — SKY BLUE EDITION 💙🍦
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {

    /* =========================
       💙 AZUL — COLOR PRINCIPAL
    ========================= */

    --sky: #8DDCF5;
    --sky-dark: #42B4D8;
    --sky-deep: #239BC4;
    --sky-light: #E3F8FD;
    --sky-pale: #F3FCFE;

    /* =========================
       🌸 ROSA — ACENTO
    ========================= */

    --pink: #F5A9C4;
    --pink-dark: #E77FA5;
    --pink-light: #FFE6EF;

    /* =========================
       🌼 AMARILLO — ACENTO
    ========================= */

    --yellow: #FFE49A;
    --yellow-dark: #F3C85A;
    --yellow-light: #FFF7D9;

    /* =========================
       🤍 FONDOS
    ========================= */

    --cream: #F7FCFE;
    --white: #FFFFFF;

    /* =========================
       🩶 TEXTO
    ========================= */

    --text: #315563;
    --text-light: #718994;
    --text-soft: #8BA1AA;

    /* =========================
       ✨ SOMBRAS
    ========================= */

    --shadow:
        0 20px 50px rgba(35,155,196,.12);

    --shadow-hover:
        0 30px 70px rgba(35,155,196,.20);

    --radius: 28px;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Nunito", sans-serif;

    color: var(--text);

    background:

        radial-gradient(
            circle at 5% 10%,
            rgba(141,220,245,.20),
            transparent 25%
        ),

        radial-gradient(
            circle at 95% 20%,
            rgba(245,169,196,.10),
            transparent 25%
        ),

        linear-gradient(
            180deg,
            #F7FCFE 0%,
            #FFFFFF 50%,
            #F2FBFE 100%
        );

    overflow-x: hidden;

}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(247,252,254,.88);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid rgba(66,180,216,.18);

    transition:
        .3s ease;

}

.navbar::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sky),
            var(--sky-dark),
            var(--sky),
            transparent
        );

    opacity: .45;

}

.nav-container {

    max-width: 1200px;

    margin: auto;

    padding: 15px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

}

.logo-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    background:

        linear-gradient(
            135deg,
            var(--sky),
            var(--sky-dark)
        );

    border-radius: 50%;

    font-size: 25px;

    box-shadow:
        0 8px 22px rgba(66,180,216,.28);

    animation:
        logoFloat 3s ease-in-out infinite;

}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.logo-text span {

    font-family:
        "Baloo 2",
        cursive;

    font-weight: 800;

    color:
        var(--sky-deep);

    font-size: 17px;

}

.logo-text small {

    color:
        var(--pink-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-top: 4px;

}

.nav-links {

    display: flex;

    gap: 35px;

}

.nav-links a {

    position: relative;

    font-weight: 800;

    font-size: 14px;

    color:
        var(--text);

    transition:
        .3s ease;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -8px;

    width: 0;

    height: 3px;

    border-radius: 10px;

    background:
        var(--sky-dark);

    transform:
        translateX(-50%);

    transition:
        .3s ease;

}

.nav-links a:hover,
.nav-links a.active {

    color:
        var(--sky-deep);

}

.nav-links a:hover::after,
.nav-links a.active::after {

    width: 24px;

}

.nav-order {

    background:

        linear-gradient(
            135deg,
            var(--sky),
            var(--sky-dark)
        );

    color: white;

    padding:
        11px 18px;

    border-radius: 50px;

    font-weight: 900;

    box-shadow:
        0 8px 22px rgba(66,180,216,.28);

    transition:
        .3s ease;

}

.nav-order:hover {

    transform:
        translateY(-3px)
        rotate(-1deg);

    box-shadow:
        0 14px 30px rgba(66,180,216,.38);

}

.menu-toggle {

    display: none;

    border: none;

    background: none;

    color:
        var(--sky-deep);

    font-size: 28px;

    cursor: pointer;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height:
        calc(100vh - 76px);

    max-width: 1200px;

    margin: auto;

    padding:
        80px 25px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 40px;

}

.hero-content {

    position: relative;

    z-index: 2;

}

.hero-tag {

    display: inline-block;

    background:
        var(--sky-light);

    color:
        var(--sky-deep);

    padding:
        9px 16px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 20px;

    border:
        1px solid rgba(66,180,216,.12);

    box-shadow:
        0 8px 20px rgba(66,180,216,.08);

    animation:
        fadeUp .8s ease both;

}

.hero h1 {

    font-family:
        "Baloo 2",
        cursive;

    font-size:
        clamp(60px, 7vw, 95px);

    line-height: .88;

    color:
        var(--text);

    max-width: 650px;

    margin-bottom: 25px;

    letter-spacing: -3px;

}

.hero h1 span {

    display: block;

    color:
        var(--sky-deep);

    transform:
        rotate(-2deg);

    text-shadow:
        0 8px 25px rgba(66,180,216,.14);

}

.hero p {

    max-width: 530px;

    color:
        var(--text-light);

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 30px;

}

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        15px 24px;

    border-radius: 50px;

    font-weight: 900;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.btn:hover {

    transform:
        translateY(-5px)
        scale(1.03);

}

.btn-primary {

    color: white;

    background:

        linear-gradient(
            135deg,
            var(--sky),
            var(--sky-deep)
        );

    box-shadow:
        0 12px 30px rgba(35,155,196,.25);

}

.btn-primary:hover {

    box-shadow:
        0 18px 38px rgba(35,155,196,.35);

}

.btn-secondary {

    background:
        var(--sky-light);

    color:
        var(--sky-deep);

    border:
        1px solid rgba(66,180,216,.14);

}

.btn-white {

    background:
        white;

    color:
        var(--sky-deep);

}


/* =====================================================
   HERO PRODUCT
===================================================== */

.hero-product {

    position: relative;

    height: 600px;

    display: grid;

    place-items: center;

}

.hero-product::before {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(141,220,245,.35),
            rgba(227,248,253,.15),
            transparent 70%
        );

    animation:
        heroGlow 5s ease-in-out infinite;

}

.hero-product-shadow {

    position: absolute;

    width: 330px;

    height: 100px;

    bottom: 90px;

    background:
        rgba(35,155,196,.14);

    border-radius: 50%;

    filter:
        blur(20px);

}

.hero-icecream {

    position: relative;

    z-index: 3;

    animation:
        productFloat 4s ease-in-out infinite;

}

.icecream-stick {

    width: 55px;

    height: 130px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #C9874E,
            #E0A86B
        );

    border-radius:
        0 0 25px 25px;

    box-shadow:
        inset 5px 0 rgba(255,255,255,.25);

}

.popsicle {

    position: relative;

    width: 250px;

    height: 390px;

    background:

        linear-gradient(
            135deg,
            #8DDCF5,
            #42B4D8
        );

    border-radius:
        125px 125px 55px 55px;

    box-shadow:

        25px 25px 0 rgba(66,180,216,.10),

        0 30px 50px rgba(35,155,196,.25);

    overflow: hidden;

}

.popsicle::before {

    content: "";

    position: absolute;

    width: 80px;

    height: 450px;

    left: 30px;

    top: -20px;

    background:
        rgba(255,255,255,.20);

    transform:
        rotate(12deg);

    border-radius: 50%;

}

.popsicle-highlight {

    position: absolute;

    top: 35px;

    left: 50px;

    width: 30px;

    height: 130px;

    background:
        rgba(255,255,255,.45);

    border-radius: 50px;

    transform:
        rotate(10deg);

}

.popsicle-face {

    position: absolute;

    bottom: 75px;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: center;

    gap: 55px;

    font-size: 30px;

    color:
        #316A7A;

}

.hero-sticker {

    position: absolute;

    z-index: 5;

    top: 100px;

    right: 20px;

    width: 115px;

    height: 115px;

    display: grid;

    place-items: center;

    text-align: center;

    background:
        var(--yellow);

    color:
        #98762A;

    font-family:
        "Baloo 2";

    font-weight: 900;

    font-size: 17px;

    line-height: 1;

    border-radius: 50%;

    transform:
        rotate(12deg);

    box-shadow:
        0 12px 25px rgba(245,200,92,.25);

    animation:
        stickerWiggle 3s ease-in-out infinite;

}

.fruit {

    position: absolute;

    z-index: 6;

    font-size: 50px;

    filter:
        drop-shadow(
            0 10px 10px rgba(0,0,0,.08)
        );

}

.fruit-hero-1 {

    left: 50px;

    bottom: 100px;

    animation:
        fruitFloat 3s infinite ease-in-out;

}

.fruit-hero-2 {

    right: 40px;

    bottom: 180px;

    animation:
        fruitFloat 4s infinite ease-in-out reverse;

}

.fruit-hero-3 {

    left: 20px;

    top: 140px;

    animation:
        fruitFloat 3.5s infinite ease-in-out;

}


/* =====================================================
   MINI INFO
===================================================== */

.hero-mini-info {

    display: flex;

    gap: 25px;

    margin-top: 35px;

}

.hero-mini-info div {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 800;

}

.hero-mini-info strong {

    font-size: 20px;

    color:
        var(--sky-deep);

}


/* =====================================================
   BACKGROUND DECORATIONS
===================================================== */

.hero-background-circle {

    position: absolute;

    border-radius: 50%;

    filter:
        blur(1px);

}

.circle-one {

    width: 400px;
    height: 400px;

    background:
        var(--sky-light);

    right: -200px;

    top: 50px;

}

.circle-two {

    width: 220px;
    height: 220px;

    background:
        var(--yellow-light);

    left: -120px;

    bottom: 40px;

}

.floating-decoration {

    position: fixed;

    pointer-events: none;

    z-index: -1;

    opacity: .65;

}

.strawberry {

    right: 3%;

    top: 30%;

    font-size: 25px;

    animation:
        floatSlow 7s infinite ease-in-out;

}

.lemon {

    left: 3%;

    top: 55%;

    font-size: 25px;

    animation:
        floatSlow 8s infinite ease-in-out reverse;

}

.cherry {

    right: 8%;

    bottom: 15%;

    font-size: 24px;

    animation:
        floatSlow 6s infinite ease-in-out;

}

.flower {

    font-size: 30px;

    animation:
        floatSlow 9s infinite ease-in-out;

}

.flower-1 {

    top: 25%;
    left: 5%;

}

.flower-2 {

    top: 75%;
    right: 5%;

}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    max-width: 1200px;

    margin: auto;

    padding:
        110px 25px;

}

.section-heading {

    text-align: center;

    max-width: 700px;

    margin:
        0 auto 60px;

}

.section-kicker {

    display: inline-block;

    color:
        var(--sky-deep);

    font-weight: 900;

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

.section-heading h2,
.story-content h2 {

    font-family:
        "Baloo 2";

    font-size:
        clamp(45px, 5vw, 65px);

    line-height: .95;

    margin-bottom: 20px;

    color:
        var(--text);

}

.section-heading h2 span,
.story-content h2 span {

    color:
        var(--sky-dark);

}

.section-heading p {

    color:
        var(--text-light);

    line-height: 1.7;

}


/* =====================================================
   PRODUCT CARDS
===================================================== */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.product-card {

    border-radius:
        var(--radius);

    overflow: hidden;

    box-shadow:
        var(--shadow);

    background:
        white;

    border:
        1px solid rgba(66,180,216,.08);

    transition:

        transform .4s cubic-bezier(.2,.8,.2,1),

        box-shadow .4s ease;

}

.product-card:hover {

    transform:
        translateY(-14px)
        rotate(-1deg);

    box-shadow:
        var(--shadow-hover);

}

.product-image {

    height: 300px;

    display: grid;

    place-items: center;

    position: relative;

    overflow: hidden;

}

.product-image::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.28);

    top: -80px;
    right: -50px;

}

.card-pink .product-image {

    background:

        linear-gradient(
            135deg,
            #FFE6EF,
            #FFD5E4
        );

}

.card-blue .product-image {

    background:

        linear-gradient(
            135deg,
            #DDF7FD,
            #B9ECF8
        );

}

.card-yellow .product-image {

    background:

        linear-gradient(
            135deg,
            #FFF7D9,
            #FFEDB1
        );

}

.product-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    background:
        white;

    color:
        var(--sky-deep);

    padding:
        7px 12px;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 900;

    z-index: 3;

    box-shadow:
        0 5px 15px rgba(35,155,196,.10);

}

.blue-badge {

    color:
        var(--sky-deep);

}

.yellow-badge {

    color:
        #BD952F;

}

.fake-product {

    font-size: 130px;

    filter:
        drop-shadow(
            0 20px 15px rgba(0,0,0,.08)
        );

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1);

}

.product-card:hover .fake-product {

    transform:
        scale(1.2)
        rotate(8deg)
        translateY(-8px);

}

.product-info {

    padding:
        25px;

}

.product-category {

    color:
        var(--sky-deep);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}

.product-info h3 {

    font-family:
        "Baloo 2";

    font-size: 27px;

    margin:
        5px 0;

}

.product-info p {

    color:
        var(--text-light);

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 20px;

}

.product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.product-bottom strong {

    font-family:
        "Baloo 2";

    color:
        var(--sky-deep);

    font-size: 25px;

}

.product-bottom a {

    color:
        var(--pink-dark);

    font-weight: 900;

    font-size: 13px;

}

.center-button {

    text-align: center;

    margin-top: 40px;

}


/* =====================================================
   CRAVING
===================================================== */

.craving-section {

    position: relative;

    overflow: hidden;

    min-height: 400px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:

        linear-gradient(
            135deg,
            #65C9E8,
            #35A9D0
        );

}

.craving-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.18);

    top: -300px;

    left: -100px;

}

.craving-section::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    border:
        2px solid rgba(255,255,255,.12);

    right: -80px;
    bottom: -120px;

}

.craving-content {

    position: relative;

    z-index: 2;

}

.craving-content > span {

    color:
        rgba(255,255,255,.9);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}

.craving-content h2 {

    font-family:
        "Baloo 2";

    font-size:
        clamp(50px,6vw,80px);

    line-height: .9;

    color:
        white;

    margin:
        15px 0;

    text-shadow:
        0 8px 25px rgba(0,0,0,.08);

}

.craving-content p {

    color:
        rgba(255,255,255,.92);

    font-size: 17px;

    margin-bottom: 25px;

}

.craving-decoration {

    position: absolute;

    right: 10%;

    bottom: -30px;

    font-size: 170px;

    transform:
        rotate(-15deg);

    animation:
        productFloat 5s infinite ease-in-out;

}


/* =====================================================
   STORY
===================================================== */

.story {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}

.story-visual {

    position: relative;

    height: 500px;

    display: grid;

    place-items: center;

}

.story-circle {

    width: 360px;

    height: 360px;

    background:

        linear-gradient(
            135deg,
            var(--sky),
            var(--sky-light)
        );

    border-radius:
        47% 53% 58% 42%;

    box-shadow:
        0 25px 60px rgba(66,180,216,.18);

    animation:
        blob 8s infinite ease-in-out;

}

.story-card {

    position: absolute;

    background:
        white;

    padding:
        25px 35px;

    border-radius:
        25px;

    box-shadow:
        var(--shadow);

    display: flex;

    flex-direction: column;

    text-align: center;

    bottom: 30px;

    right: 10px;

    transform:
        rotate(4deg);

    animation:
        cardFloat 4s infinite ease-in-out;

}

.story-emoji {

    font-size: 45px;

}

.story-card strong {

    font-family:
        "Baloo 2";

    font-size: 20px;

}

.story-card span {

    color:
        var(--text-light);

    font-size: 12px;

}

.story-fruit {

    position: absolute;

    font-size: 55px;

}

.fruit-a {

    top: 50px;
    left: 50px;

    animation:
        fruitFloat 3s infinite ease-in-out;

}

.fruit-b {

    right: 40px;
    top: 80px;

    animation:
        fruitFloat 4s infinite ease-in-out reverse;

}

.story-content > p {

    color:
        var(--text-light);

    line-height: 1.8;

    margin-bottom: 15px;

}

.story-values {

    display: flex;

    gap: 20px;

    margin-top: 30px;

}

.story-values div {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

}

.story-values span {

    font-size: 25px;

}

.story-values strong {

    font-size: 11px;

    color:
        var(--text);

}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

    max-width: 1100px;

    margin:
        50px auto 100px;

    padding:
        80px 25px;

    border-radius:
        40px;

    text-align: center;

    background:

        linear-gradient(
            135deg,
            var(--sky-light),
            #F7FCFE
        );

    border:
        1px solid rgba(66,180,216,.12);

    box-shadow:
        0 20px 60px rgba(35,155,196,.08);

}

.final-cta-inner > span {

    color:
        var(--sky-deep);

    font-weight: 900;

    font-size: 12px;

    letter-spacing: 2px;

}

.final-cta h2 {

    font-family:
        "Baloo 2";

    font-size:
        clamp(50px,6vw,75px);

    line-height: .9;

    color:
        var(--text);

    margin:
        15px 0;

}

.final-cta p {

    color:
        var(--text-light);

    margin-bottom: 25px;

}


/* =====================================================
   PAGE HERO
===================================================== */

.page-hero {

    min-height: 420px;

    position: relative;

    display: grid;

    place-items: center;

    text-align: center;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            var(--sky-light),
            #F8FCFE
        );

}

.page-hero::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(141,220,245,.18);

    left: -180px;
    top: -150px;

}

.page-hero::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(245,169,196,.10);

    right: -100px;
    bottom: -120px;

}

.page-hero-content {

    position: relative;

    z-index: 2;

    padding:
        80px 25px;

}

.page-hero-content > span {

    color:
        var(--sky-deep);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}

.page-hero h1 {

    font-family:
        "Baloo 2";

    font-size:
        clamp(60px,8vw,100px);

    line-height: .85;

    color:
        var(--text);

    margin:
        15px 0;

}

.page-hero h1 strong {

    display: block;

    color:
        var(--sky-deep);

}

.page-hero p {

    color:
        var(--text-light);

    font-size: 18px;

    max-width: 600px;

    margin: auto;

    line-height: 1.6;

}

.page-hero-decoration {

    position: absolute;

    font-size: 150px;

    opacity: .35;

    animation:
        productFloat 5s infinite ease-in-out;

}


/* =====================================================
   MENU
===================================================== */

.menu-section {

    max-width: 1200px;

    margin: auto;

    padding:
        80px 25px 120px;

}

.filter-container {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 50px;

}

.filter-btn {

    border: none;

    background:
        white;

    color:
        var(--text);

    padding:
        12px 20px;

    border-radius: 50px;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(35,155,196,.08);

    transition:
        .3s ease;

}

.filter-btn:hover {

    transform:
        translateY(-3px);

    color:
        var(--sky-deep);

}

.filter-btn.active {

    background:

        linear-gradient(
            135deg,
            var(--sky),
            var(--sky-deep)
        );

    color:
        white;

    box-shadow:
        0 10px 25px rgba(35,155,196,.22);

}

.menu-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

}

.menu-product {

    background:
        white;

    border-radius:
        28px;

    overflow: hidden;

    box-shadow:
        var(--shadow);

    border:
        1px solid rgba(66,180,216,.07);

    transition:
        .4s cubic-bezier(.2,.8,.2,1);

    animation:
        menuAppear .5s ease both;

}

.menu-product:hover {

    transform:
        translateY(-10px)
        rotate(.5deg);

    box-shadow:
        var(--shadow-hover);

}

.menu-product.hidden {

    display: none;

}

.menu-product-image {

    height: 250px;

    display: grid;

    place-items: center;

    font-size: 110px;

    transition:
        .4s ease;

}

.menu-product:hover .menu-product-image {

    transform:
        scale(1.05);

}

.pink-product {

    background:
        var(--pink-light);

}

.yellow-product {

    background:
        var(--yellow-light);

}

.blue-product {

    background:
        var(--sky-light);

}

.menu-product-info {

    padding:
        25px;

}

.menu-product-info > span {

    font-size: 10px;

    letter-spacing: 2px;

    color:
        var(--sky-deep);

    font-weight: 900;

}

.menu-product-info h3 {

    font-family:
        "Baloo 2";

    font-size: 27px;

    margin:
        5px 0;

}

.menu-product-info p {

    color:
        var(--text-light);

    font-size: 14px;

    margin-bottom: 15px;

}

.menu-product-info strong {

    font-family:
        "Baloo 2";

    color:
        var(--sky-deep);

    font-size: 25px;

}

.menu-cta {

    padding:
        100px 25px;

    text-align: center;

    background:
        var(--sky-light);

}

.menu-cta span {

    color:
        var(--sky-deep);

    font-weight: 900;

    font-size: 12px;

}

.menu-cta h2 {

    font-family:
        "Baloo 2";

    font-size:
        clamp(45px,6vw,70px);

    line-height: .9;

    margin:
        15px 0 25px;

}


/* =====================================================
   LOCATION
===================================================== */

.location-section {

    max-width: 1200px;

    margin: auto;

    padding:
        100px 25px;

    display: grid;

    grid-template-columns:
        1fr 1.1fr;

    gap: 70px;

    align-items: center;

}

.location-info h2 {

    font-family:
        "Baloo 2";

    font-size:
        clamp(50px,5vw,70px);

    line-height: .9;

    margin:
        10px 0 20px;

}

.location-info h2 span {

    color:
        var(--sky-deep);

}

.location-info > p {

    color:
        var(--text-light);

    line-height: 1.7;

    margin-bottom: 30px;

}

.info-item {

    display: flex;

    gap: 15px;

    align-items: center;

    margin:
        20px 0;

}

.info-icon {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--sky-light);

    color:
        var(--sky-deep);

    font-size: 22px;

}

.info-item div:last-child {

    display: flex;

    flex-direction: column;

}

.info-item strong {

    font-family:
        "Baloo 2";

    font-size: 18px;

}

.info-item span {

    color:
        var(--text-light);

    font-size: 13px;

    line-height: 1.5;

}

.map-container {

    min-height: 480px;

    border-radius:
        35px;

    overflow: hidden;

    background:
        var(--sky-light);

    box-shadow:
        var(--shadow);

    position: relative;

}

.map-placeholder {

    height: 100%;

    min-height: 480px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 30px;

    background:

        radial-gradient(
            circle at center,
            rgba(255,255,255,.9),
            transparent 50%
        ),

        var(--sky-light);

}

.map-pin {

    font-size: 75px;

    animation:
        pinBounce 2s infinite;

}

.map-placeholder h3 {

    font-family:
        "Baloo 2";

    font-size: 30px;

}

.map-placeholder p {

    color:
        var(--text-light);

    margin:
        5px 0 20px;

}

.map-placeholder a {

    color:
        var(--sky-deep);

    font-weight: 900;

}


/* =====================================================
   HOURS
===================================================== */

.hours-section {

    padding:
        100px 25px;

    background:
        var(--sky-light);

}

.hours-card {

    max-width: 900px;

    margin: auto;

    padding:
        70px 40px;

    text-align: center;

    background:
        white;

    border-radius:
        40px;

    box-shadow:
        var(--shadow);

    position: relative;

    overflow: hidden;

}

.hours-decoration {

    position: absolute;

    right: 20px;

    top: 20px;

    font-size: 80px;

    opacity: .3;

}

.hours-card > span {

    color:
        var(--sky-deep);

    font-weight: 900;

    font-size: 12px;

    letter-spacing: 2px;

}

.hours-card h2 {

    font-family:
        "Baloo 2";

    font-size:
        clamp(45px,5vw,65px);

    line-height: .9;

    margin:
        15px auto 40px;

    max-width: 650px;

}

.hours-list {

    max-width: 550px;

    margin: auto;

}

.hours-list div {

    display: flex;

    justify-content: space-between;

    padding:
        18px 0;

    border-bottom:
        1px dashed #D5EAF0;

}

.hours-list span {

    color:
        var(--text-light);

}

.hours-list strong {

    color:
        var(--sky-deep);

}


/* =====================================================
   SOCIAL
===================================================== */

.social-section {

    max-width: 1200px;

    margin: auto;

    padding:
        100px 25px;

}

.social-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}

.social-card {

    padding:
        35px 25px;

    border-radius:
        30px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    transition:
        .4s ease;

}

.social-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        var(--shadow);

}

.social-card > :first-child {

    font-size: 40px;

}

.social-card strong {

    font-family:
        "Baloo 2";

    font-size: 25px;

}

.social-card span {

    font-size: 13px;

    color:
        var(--text-light);

}

.instagram {

    background:
        var(--pink-light);

}

.facebook {

    background:
        var(--sky-light);

}

.tiktok {

    background:
        var(--yellow-light);

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background:

        linear-gradient(
            135deg,
            #287C99,
            #185F78
        );

    color:
        white;

    padding:
        70px 25px 25px;

}

.footer-content {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

}

.footer .logo-text span {

    color:
        white;

}

.footer-brand p {

    margin-top: 15px;

    color:
        rgba(255,255,255,.75);

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.footer-links strong {

    color:
        var(--yellow);

    margin-bottom: 5px;

}

.footer-links a {

    color:
        rgba(255,255,255,.72);

    font-size: 14px;

    transition:
        .3s;

}

.footer-links a:hover {

    color:
        white;

    transform:
        translateX(5px);

}

.footer-bottom {

    max-width: 1200px;

    margin:
        50px auto 0;

    padding-top:
        20px;

    border-top:
        1px solid rgba(255,255,255,.15);

    color:
        rgba(255,255,255,.6);

    font-size: 12px;

    display: flex;

    justify-content: space-between;

}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    background:
        #68D391;

    color:
        white;

    border-radius: 50%;

    font-size: 28px;

    z-index: 999;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    animation:
        whatsappFloat 3s infinite ease-in-out;

}

.whatsapp-pulse {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        2px solid #68D391;

    animation:
        pulse 2s infinite;

}


/* =====================================================
   REVEAL ANIMATIONS
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s cubic-bezier(.2,.8,.2,1);

}

.reveal-left {

    opacity: 0;

    transform:
        translateX(-60px);

    transition:

        opacity .8s ease,

        transform .8s cubic-bezier(.2,.8,.2,1);

}

.reveal-right {

    opacity: 0;

    transform:
        translateX(60px);

    transition:

        opacity .8s ease,

        transform .8s cubic-bezier(.2,.8,.2,1);

}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {

    opacity: 1;

    transform:
        translate(0);

}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}

@keyframes productFloat {

    0%,100% {

        transform:
            translateY(0)
            rotate(-2deg);

    }

    50% {

        transform:
            translateY(-20px)
            rotate(2deg);

    }

}

@keyframes fruitFloat {

    0%,100% {

        transform:
            translateY(0)
            rotate(-5deg);

    }

    50% {

        transform:
            translateY(-18px)
            rotate(8deg);

    }

}

@keyframes floatSlow {

    0%,100% {

        transform:
            translateY(0)
            rotate(0);

    }

    50% {

        transform:
            translateY(-30px)
            rotate(12deg);

    }

}

@keyframes logoFloat {

    0%,100% {

        transform:
            rotate(0);

    }

    50% {

        transform:
            rotate(-8deg)
            translateY(-2px);

    }

}

@keyframes stickerWiggle {

    0%,100% {

        transform:
            rotate(12deg);

    }

    50% {

        transform:
            rotate(17deg)
            scale(1.04);

    }

}

@keyframes cardFloat {

    0%,100% {

        transform:
            translateY(0)
            rotate(4deg);

    }

    50% {

        transform:
            translateY(-8px)
            rotate(2deg);

    }

}

@keyframes blob {

    0%,100% {

        border-radius:
            47% 53% 58% 42%;

    }

    50% {

        border-radius:
            60% 40% 45% 55%;

    }

}

@keyframes whatsappFloat {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-7px);

    }

}

@keyframes pulse {

    0% {

        transform:
            scale(1);

        opacity:
            .8;

    }

    100% {

        transform:
            scale(1.6);

        opacity:
            0;

    }

}

@keyframes pinBounce {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}

@keyframes menuAppear {

    from {

        opacity: 0;

        transform:
            translateY(20px)
            scale(.96);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}

@keyframes heroGlow {

    0%,100% {

        transform:
            scale(1);

        opacity:
            .8;

    }

    50% {

        transform:
            scale(1.08);

        opacity:
            1;

    }

}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media(max-width: 900px) {

    .nav-links,
    .nav-order {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

    .hero {

        grid-template-columns:
            1fr;

        text-align:
            center;

        padding-top:
            60px;

    }

    .hero-content {

        display: flex;

        flex-direction:
            column;

        align-items:
            center;

    }

    .hero h1 {

        font-size:
            clamp(55px,12vw,80px);

    }

    .hero-mini-info {

        justify-content:
            center;

        flex-wrap:
            wrap;

    }

    .hero-product {

        height:
            500px;

    }

    .product-grid,
    .menu-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .story,
    .location-section {

        grid-template-columns:
            1fr;

    }

    .story-content {

        text-align:
            center;

    }

    .story-values {

        justify-content:
            center;

    }

    .social-grid {

        grid-template-columns:
            1fr;

    }

    .footer-content {

        grid-template-columns:
            1fr 1fr;

    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media(max-width: 600px) {

    .nav-container {

        padding:
            12px 18px;

    }

    .logo-text span {

        font-size:
            14px;

    }

    .hero {

        padding:
            50px 18px;

    }

    .hero h1 {

        font-size:
            58px;

        letter-spacing:
            -2px;

    }

    .hero p {

        font-size:
            15px;

    }

    .hero-buttons {

        width:
            100%;

        flex-direction:
            column;

    }

    .hero-buttons .btn {

        width:
            100%;

    }

    .hero-product {

        height:
            430px;

    }

    .popsicle {

        width:
            190px;

        height:
            300px;

    }

    .icecream-stick {

        height:
            100px;

    }

    .hero-sticker {

        width:
            90px;

        height:
            90px;

        font-size:
            13px;

        top:
            70px;

    }

    .product-grid,
    .menu-grid {

        grid-template-columns:
            1fr;

    }

    .section {

        padding:
            80px 18px;

    }

    .story-visual {

        height:
            400px;

    }

    .story-circle {

        width:
            280px;

        height:
            280px;

    }

    .story-card {

        right:
            0;

    }

    .story-values {

        gap:
            12px;

    }

    .craving-decoration {

        opacity:
            .25;

        right:
            -20px;

    }

    .footer-content {

        grid-template-columns:
            1fr;

    }

    .footer-bottom {

        flex-direction:
            column;

        gap:
            10px;

    }

    .hours-card {

        padding:
            50px 20px;

    }

    .hours-list div {

        flex-direction:
            column;

        gap:
            5px;

        text-align:
            left;

    }

    .whatsapp {

        width:
            56px;

        height:
            56px;

        right:
            18px;

        bottom:
            18px;

    }

}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .navbar-logo {
    transform: scale(1.06) rotate(-2deg);
}

/* =====================================================
   PRODUCTOS - MEJOR CONTRASTE DE TEXTO
===================================================== */


/* Contenedor general de imagen */

.menu-product-image {
    position: relative;
    overflow: hidden;
}


/* Imágenes reales */

.menu-product-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =====================================================
   PRODUCTOS SIN IMAGEN
===================================================== */

.product-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* Capa de contraste */

.product-placeholder::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 0%,
            rgba(0, 0, 0, 0.12) 45%,
            rgba(0, 0, 0, 0.28) 100%
        );

    z-index: 1;

    pointer-events: none;
}


/* Texto del producto */

.product-placeholder span {
    position: relative;
    z-index: 2;

    padding: 10px 22px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.90);

    color: #1479b8;

    font-family: "Nunito", sans-serif;

    font-size: 0.85rem;

    font-weight: 900;

    letter-spacing: 2px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(6px);

    -webkit-backdrop-filter: blur(6px);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Movimiento al pasar el mouse */

.menu-product:hover .product-placeholder span {

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.18);

}


/* =====================================================
   COLORES ESPECÍFICOS
===================================================== */


/* Mango */

.mango-placeholder span,
.bebida-mango-placeholder span {

    color: #b36b00;

}


/* Coco */

.coco-placeholder span {

    color: #2678a8;

}


/* Sandía */

.sandia-placeholder span {

    color: #d94d63;

}


/* Limón */

.lemon-placeholder span {

    color: #648b00;

}


/* Fresa */

.fresa-placeholder span,
.bebida-placeholder span {

    color: #d54d68;

}


/* Vainilla */

.vainilla-placeholder span {

    color: #9a7138;

}


/* =====================================================
   ETIQUETA "FAVORITA"
===================================================== */

.product-floating-label {

    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 5;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.94);

    color: #1479b8;

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 1.2px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Hover de etiqueta */

.menu-product:hover .product-floating-label {

    transform: translateY(-3px);

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.18);

}


/* =====================================================
   OSCURECER LIGERAMENTE FOTOS AL PASAR EL MOUSE
===================================================== */

.menu-product-image > img {

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}


.menu-product:hover .menu-product-image > img {

    transform: scale(1.04);

    filter: brightness(0.94);

}


/* =====================================================
   EFECTO VISUAL DE LAS TARJETAS
===================================================== */

.menu-product {

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.menu-product:hover {

    transform: translateY(-8px);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {

    .product-placeholder span {

        padding: 8px 16px;

        font-size: 0.72rem;

        letter-spacing: 1.5px;

    }

    .product-floating-label {

        top: 12px;
        left: 12px;

        padding: 7px 11px;

        font-size: 0.65rem;

    }

}
/* =====================================================
   GOOGLE MAPS
===================================================== */

.google-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    position: relative;
    background: #dff5ff;
    box-shadow: 0 20px 50px rgba(70, 180, 220, 0.15);
}

.google-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    border: 0;
}
/* =====================================================
   GALERÍA DE CLIENTES
   ===================================================== */

.customer-gallery {
    overflow: hidden;
}

.customer-gallery-grid {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    
    align-items: stretch;
}

/* Cada fotografía */
.customer-photo {
    width: 100%;
    height: 230px;
    
    overflow: hidden;
    border-radius: 22px;
    
    position: relative;
    
    background: #f5f8ff;
    
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Imagen */
.customer-photo img {
    width: 100%;
    height: 100%;
    
    display: block;
    
    object-fit: cover;
    
    transition: transform 0.5s ease;
}

/* Efecto al pasar el mouse */
.customer-photo:hover {
    transform: translateY(-6px);
    
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.customer-photo:hover img {
    transform: scale(1.06);
}


/* =====================================================
   FOTOS 4, 5 Y 6 OCULTAS
   ===================================================== */

.gallery-hidden {
    display: none;
}


/* Cuando se presiona "Ver más fotos" */
.gallery-hidden.gallery-visible {
    display: block;
    
    animation: galleryAppear 0.5s ease forwards;
}


/* Animación de aparición */
@keyframes galleryAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   BOTÓN DE GALERÍA
   ===================================================== */

.gallery-toggle {
    cursor: pointer;
    border: none;
    
    font-family: inherit;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    .customer-gallery-grid {
        max-width: 720px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .customer-photo {
        height: 220px;
    }

}


/* =====================================================
   CELULAR
   ===================================================== */

@media (max-width: 600px) {

    .customer-gallery-grid {
        width: calc(100% - 30px);
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .customer-photo {
        height: 170px;
        border-radius: 16px;
    }

}


/* =====================================================
   CELULAR PEQUEÑO
   ===================================================== */

@media (max-width: 420px) {

    .customer-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .customer-photo {
        height: 150px;
        border-radius: 14px;
    }

}