:root {

    --purple-dark: #16075f;
    --purple: #5225d8;

    --blue-dark: #0734a6;
    --blue: #00b5ff;

    --pink: #ff26a8;
    --yellow: #ffd31a;
    --green: #21c86a;

    --white: #ffffff;
    --soft: #f5f8ff;

    --text: #17234d;
    --muted: #617096;

    --shadow:
        0 20px 55px rgba(31, 22, 109, 0.16);

    --radius: 28px;
}


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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8f9ff
        );

    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
}


.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 10px 22px;

    background:
        rgba(20, 8, 92, 0.76);

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid rgba(255,255,255,.14);
}


.header-inner {

    max-width: 1420px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;
}


.brand img {

    width: 94px;

    filter:
        drop-shadow(
            0 8px 18px rgba(0,0,0,.28)
        );
}


.nav {

    display: flex;

    align-items: center;

    gap: 12px;
}


.nav a {

    color: #fff;

    padding: 12px 17px;

    border-radius: 999px;

    font-weight: 800;

    font-size: 14px;

    transition: .25s;
}


.nav a:hover {

    background:
        rgba(255,255,255,.13);

    transform:
        translateY(-2px);
}


.btn-whatsapp {

    background:
        linear-gradient(
            135deg,
            #36e47e,
            #11ad55
        );

    color: #fff;

    padding:
        13px 22px;

    border-radius:
        999px;

    font-weight:
        900;

    box-shadow:
        0 8px 22px
        rgba(23,190,90,.32);
}


.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 28px;
}


.hero {

    min-height: 96vh;

    display: flex;

    align-items: center;

    padding:
        130px 7% 70px;

    position: relative;

    background-image:
        url("../assets/hero.jpg");

    background-size: cover;

    background-position: center;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(19,7,94,.96) 0%,
            rgba(27,11,116,.82) 38%,
            rgba(30,12,115,.22) 75%
        );
}


.hero-content {

    position: relative;

    max-width: 720px;

    color: white;

    z-index: 2;
}


.hero-logo {

    width: 185px;

    margin-bottom: 20px;

    filter:
        drop-shadow(
            0 10px 30px rgba(0,0,0,.35)
        );
}


.hero h1 {

    font-size:
        clamp(3.2rem, 7vw, 6.6rem);

    line-height:
        .92;

    text-transform:
        uppercase;

    font-weight:
        1000;

    text-shadow:
        0 5px 0 rgba(0,0,0,.12);
}


.hero h1 span {

    display: block;

    color:
        var(--yellow);

    text-shadow:
        0 4px 0 #ff8b00,
        0 9px 28px rgba(255,126,0,.30);
}


.hero-subtitle {

    margin-top: 28px;

    font-size:
        1.45rem;

    font-weight:
        900;

    letter-spacing:
        2px;
}


.hero-description {

    margin-top: 15px;

    font-size:
        1.13rem;

    max-width:
        530px;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        15px 25px;

    border-radius:
        999px;

    font-weight:
        900;

    transition:
        .25s;

    box-shadow:
        0 12px 25px
        rgba(0,0,0,.16);
}


.btn:hover {

    transform:
        translateY(-3px);
}


.btn-primary {

    color:
        #fff;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--purple)
        );
}


.btn-secondary {

    color:
        #fff;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            #ff3c78
        );
}


.btn-light {

    background: white;

    color:
        var(--purple-dark);
}


.benefits {

    position: relative;

    z-index: 5;

    margin-top:
        -46px;

    padding:
        0 5%;
}


.benefits-grid {

    max-width:
        1450px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:
        16px;

    background:
        white;

    padding:
        24px;

    border-radius:
        32px;

    box-shadow:
        var(--shadow);
}


.benefit {

    text-align:
        center;

    padding:
        18px 12px;
}


.benefit-icon {

    font-size:
        36px;

    margin-bottom:
        12px;
}


.benefit h3 {

    color:
        var(--purple-dark);

    margin-bottom:
        8px;

    font-size:
        1.03rem;
}


.benefit p {

    font-size:
        .89rem;

    line-height:
        1.5;

    color:
        var(--muted);
}


.section {

    padding:
        110px 6%;
}


.section-heading {

    max-width:
        790px;

    margin:
        0 auto 55px;

    text-align:
        center;
}


.eyebrow {

    color:
        var(--pink);

    font-size:
        .85rem;

    font-weight:
        1000;

    letter-spacing:
        2.5px;
}


.section-heading h2,
.parque-text h3,
.cumpleanos-content h2,
.food-content h2 {

    margin-top:
        12px;

    color:
        var(--purple-dark);
}


.section-heading h2 {

    font-size:
        clamp(2.3rem,4vw,4rem);
}


.section-heading h2 span,
.cumpleanos-content h2 span,
.food-content h2 span {

    color:
        var(--pink);
}


.section-heading p {

    margin-top:
        18px;

    font-size:
        1.08rem;

    line-height:
        1.7;

    color:
        var(--muted);
}


.parque {

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f4ff
        );
}


.parque-grid {

    max-width:
        1320px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        1.3fr .7fr;

    align-items:
        center;

    gap:
        50px;
}


.parque-main img {

    width:
        100%;

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);
}


.parque-text h3 {

    font-size:
        2.55rem;
}


.parque-text p {

    margin:
        20px 0;

    line-height:
        1.75;

    color:
        var(--muted);
}


.gallery-grid {

    max-width:
        1400px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    gap:
        18px;
}


.gallery-grid img {

    width:
        100%;

    height:
        350px;

    object-fit:
        cover;

    border-radius:
        24px;

    box-shadow:
        var(--shadow);
}


.gallery-grid img:first-child {

    grid-row:
        span 2;

    height:
        718px;
}


.cumpleanos {

    background:
        linear-gradient(
            135deg,
            #25117b,
            #5b1ed0
        );

    color:
        white;
}


.cumpleanos-wrap {

    max-width:
        1320px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        55px;

    align-items:
        center;
}


.cumpleanos-image img {

    border-radius:
        var(--radius);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.26);
}


.cumpleanos-content h2 {

    color:
        white;

    font-size:
        clamp(2.7rem,5vw,5rem);
}


.cumpleanos-content p {

    margin:
        18px 0;

    color:
        rgba(255,255,255,.86);

    line-height:
        1.7;
}


.food {

    background:
        #fff8e9;
}


.food-wrap {

    max-width:
        1320px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        .8fr 1.2fr;

    align-items:
        center;

    gap:
        55px;
}


.food-content h2 {

    font-size:
        clamp(2.5rem,4vw,4rem);
}


.food-content p {

    margin:
        18px 0;

    line-height:
        1.75;

    color:
        var(--muted);
}


.food-image img {

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);
}


.cta {

    padding:
        110px 6%;

    text-align:
        center;

    color:
        white;

    background:
        radial-gradient(
            circle at 20% 20%,
            #ff32aa,
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            #00b9ff,
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #1a076c,
            #4d13bb
        );
}


.cta h2 {

    font-size:
        clamp(2.8rem,5vw,5rem);
}


.cta h2 span {

    color:
        var(--yellow);
}


.cta p {

    margin:
        20px auto 28px;

    max-width:
        650px;

    font-size:
        1.1rem;
}


.contact-grid {

    max-width:
        1100px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        24px;
}


.contact-card {

    padding:
        36px 28px;

    text-align:
        center;

    background:
        white;

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);
}


.contact-icon {

    font-size:
        42px;

    margin-bottom:
        14px;
}


.contact-card h3 {

    color:
        var(--purple-dark);

    margin-bottom:
        10px;
}


.contact-card p {

    color:
        var(--muted);

    line-height:
        1.6;
}


.footer {

    color:
        white;

    background:
        #110553;

    padding:
        65px 6% 25px;
}


.footer-inner {

    max-width:
        1300px;

    margin:
        auto;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        30px;
}


.footer-brand img {

    width:
        120px;
}


.footer-brand p {

    margin-top:
        12px;

    color:
        rgba(255,255,255,.72);
}


.footer-social {

    display:
        flex;

    gap:
        25px;
}


.footer-social a {

    color:
        white;

    font-weight:
        800;
}


.footer-bottom {

    max-width:
        1300px;

    margin:
        35px auto 0;

    padding-top:
        22px;

    text-align:
        center;

    border-top:
        1px solid rgba(255,255,255,.14);

    color:
        rgba(255,255,255,.55);

    font-size:
        .85rem;
}


.floating-whatsapp {

    position:
        fixed;

    right:
        22px;

    bottom:
        22px;

    width:
        62px;

    height:
        62px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    font-size:
        27px;

    background:
        #1bc85f;

    color:
        white;

    box-shadow:
        0 15px 30px
        rgba(0,0,0,.24);

    z-index:
        900;
}


@media (max-width: 1050px) {

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .benefits-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .parque-grid,
    .cumpleanos-wrap,
    .food-wrap {

        grid-template-columns:
            1fr;
    }

    .gallery-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .gallery-grid img:first-child {

        grid-row:
            auto;

        height:
            350px;
    }

}


@media (max-width: 700px) {

    .header {
        padding:
            8px 14px;
    }

    .brand img {
        width:
            72px;
    }

    .btn-whatsapp {
        display:
            none;
    }

    .hero {

        min-height:
            88vh;

        padding:
            120px 7% 60px;

        background-position:
            center;
    }

    .hero-logo {
        width:
            130px;
    }

    .hero h1 {

        font-size:
            3.4rem;
    }

    .benefits {

        margin-top:
            -25px;
    }

    .benefits-grid {

        grid-template-columns:
            1fr;
    }

    .section {

        padding:
            80px 6%;
    }

    .gallery-grid {

        grid-template-columns:
            1fr;
    }

    .gallery-grid img,
    .gallery-grid img:first-child {

        height:
            280px;
    }

    .contact-grid {

        grid-template-columns:
            1fr;
    }

    .footer-inner {

        flex-direction:
            column;

        text-align:
            center;
    }

}
