:root{
    --rosa:#ff5c9a;
    --rosa-soft:#ffd8e7;
    --rosa-dark:#ff3d85;
    --azul:#1e4663;
    --texto:#1c1c1c;
    --gris:#6d6d6d;
    --blanco:#ffffff;
    --transicion:all .4s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--white);
    color:var(--text);
    overflow-x:hidden;
}

/* =========================================================
   NAVBAR ULTRA PREMIUM
========================================================= */

.navbar{

    position:fixed;
    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:92%;
    max-width:1380px;

    z-index:9999;

    padding:18px 35px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.10),
        rgba(255,255,255,.04)
    );

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.15);

    transition:var(--transition);

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

/* SCROLL */

.navbar.scrolled{

    top:10px;

    background:
    rgba(255,255,255,.92);

    border:
    1px solid rgba(0,0,0,.04);

    box-shadow:
    0 15px 50px rgba(0,0,0,.10);
}

/* CONTAINER */

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;
}
.nav-container{
    width:100%;
    max-width:1250px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo-box{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo-box img{
    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;
}

.logo-text{
    color:white;
    font-size:18px;
    font-weight:800;
    letter-spacing:1px;
}

.navbar.scrolled .logo-text{
    color:var(--azul-deep);
}


/* MENU */


.nav-menu{
    display:flex;
    align-items:center;
    gap:12px;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:white;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    padding:12px 14px;
    transition:var(--transicion);
}

/* Hover elegante */

.nav-menu li a::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:6px;

    transform:translateX(-50%);

    width:0%;
    height:2px;

    border-radius:20px;

    background:linear-gradient(
        to right,
        var(--rosa),
        var(--rosa-dark)
    );

    transition:.35s ease;
}

.nav-menu li a:hover{

    color:var(--rosa-dark);

    background:rgba(255,92,154,.06);
}

.nav-menu li a:hover::after{

    width:58%;
}

/* BOTON */

.btn-comprar{

    background:
    linear-gradient(
        135deg,
        var(--rosa),
        var(--rosa-dark)
    ) !important;

    color:white !important;

    padding:14px 28px !important;

    border-radius:50px;

    box-shadow:
    0 12px 25px rgba(255,92,154,.25);

    transition:.4s ease !important;
}

.btn-comprar:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 35px rgba(255,92,154,.35);
}

/* ==================================================
   DROPDOWN
================================================== */

.dropdown-content{

    position:absolute;

    top:120%;
    left:0;

    min-width:220px;

    background:white;

    border-radius:18px;

    overflow:hidden;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.35s ease;

    box-shadow:
    0 20px 45px rgba(0,0,0,.10);
}

.dropdown-content li{

    list-style:none;
}

.dropdown-content li a{

    display:block;

    color:#333 !important;

    padding:15px 22px;

    font-size:11px;

    border-radius:0;
}

.dropdown-content li a:hover{

    background:#fff4f8;

    color:var(--rosa-dark) !important;
}

.dropdown:hover .dropdown-content{

    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

/* ==================================================
   HERO
================================================== */

.hero{

    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.45)),
    url('326182fd-72e7-49d3-87e3-2c4ee95486f2.png');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    overflow:hidden;
}

.hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(circle,
    rgba(255,92,154,.18),
    transparent 70%);

    top:-220px;
    right:-180px;
}

.hero::after{

    content:"";

    position:absolute;
    bottom:0;
    left:0;

    width:100%;
    height:170px;

    background:
    linear-gradient(to top,#fff,transparent);
}

.hero-content{

    position:relative;
    z-index:3;

    text-align:center;

    color:white;

    animation:fadeHero 1.3s ease;
}

@keyframes fadeHero{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:85px;

    line-height:1.1;

    margin-bottom:20px;

    text-shadow:
    0 10px 30px rgba(0,0,0,.3);
}

.hero-content p{

    max-width:650px;

    margin:auto;

    color:#f1f1f1;

    font-size:16px;
}

/* ==================================================
   TIMELINE
================================================== */

.timeline-container{

    position:relative;

    max-width:1200px;

    margin:100px auto;

    padding:20px;
}

.main-line{

    position:absolute;

    left:50%;
    top:0;
    bottom:0;

    transform:translateX(-50%);

    border-left:2px dashed rgba(30,70,99,.18);
}

.scroll-dot{

    position:absolute;

    left:50%;

    transform:translate(-50%,-50%);

    width:20px;
    height:20px;

    background:var(--rosa);

    border-radius:50%;

    box-shadow:
    0 0 0 12px rgba(255,92,154,.12);

    z-index:10;
}

.timeline-block{

    position:relative;

    width:100%;

    display:flex;
    align-items:center;

    margin-bottom:110px;
}

.marker{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    width:62px;
    height:62px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--rosa),
        var(--rosa-dark)
    );

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;

    border:5px solid white;

    box-shadow:
    0 15px 30px rgba(255,92,154,.25);

    z-index:5;
}

.timeline-content{

    width:44%;

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 18px 45px rgba(0,0,0,.06);

    transition:.4s ease;
}

.timeline-content:hover{

    transform:translateY(-10px);

    box-shadow:
    0 28px 60px rgba(0,0,0,.12);
}

.item-right .timeline-content{

    margin-left:56%;
}

.item-left .timeline-content{

    margin-right:56%;
}

.timeline-img{

    width:100%;
    height:260px;

    overflow:hidden;
}

.timeline-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;
}

.timeline-content:hover .timeline-img img{

    transform:scale(1.08);
}

.timeline-text{

    padding:35px;
}

.date{

    color:var(--rosa-dark);

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;
}

.timeline-text h3{

    font-family:'Playfair Display',serif;

    color:var(--azul);

    font-size:34px;

    margin:12px 0 18px;
}

.timeline-text p{

    color:#666;

    font-size:15px;
}

/* ==================================================
   FOOTER
================================================== */

.main-footer{

    background:#111;

    color:white;

    padding:100px 6% 40px;

    position:relative;

    overflow:hidden;
}

.main-footer::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-200px;
    top:-200px;

    background:
    radial-gradient(circle,
    rgba(255,92,154,.08),
    transparent 70%);
}

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:60px;
}

.footer-col h4{

    color:var(--rosa);

    font-size:13px;

    letter-spacing:3px;

    margin-bottom:25px;
}

.footer-col p{

    color:#bbb;

    line-height:2;
}

.footer-bottom{

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid #222;

    text-align:center;

    color:#666;

    font-size:12px;
}

/* ==================================================
   WHATSAPP
================================================== */

.ws-circular{

    position:fixed;

    right:30px;
    bottom:30px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    text-decoration:none;

    z-index:999;

    box-shadow:
    0 15px 30px rgba(37,211,102,.3);

    transition:.4s ease;
}

.ws-circular:hover{

    transform:
    translateY(-8px)
    scale(1.08);

    box-shadow:
    0 25px 40px rgba(37,211,102,.35);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:900px){

    .hero-content h1{
        font-size:55px;
    }

    .nav-menu{
        gap:4px;
    }

    .nav-menu li a{
        font-size:10px;
        padding:8px;
    }

    .btn-comprar{
        display:none;
    }

    .main-line{
        left:30px;
    }

    .marker{
        left:30px;
    }

    .timeline-content{
        width:82% !important;
        margin-left:80px !important;
        margin-right:0 !important;
    }
}

@media(max-width:600px){

    .hero{
        background-attachment:scroll;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:14px;
        padding:0 20px;
    }

    .logo-text{
        display:none;
    }

    .navbar{
        padding:18px 4%;
    }

    .nav-menu li a{
        font-size:9px;
        letter-spacing:1px;
    }
}