/*=========================================
NAVBAR
=========================================*/

.navbar{

    padding:22px 0;

    background:rgba(248,244,239,.85);

    backdrop-filter:blur(12px);

    transition:.4s;

}

.navbar.scrolled{

    padding:14px 0;

    box-shadow:var(--shadow-sm);

}

.navbar-brand{

    font-family:'Playfair Display',serif;

    font-size:1.7rem;

    color:var(--color-title);

    letter-spacing:2px;

}

.nav-link{

    color:var(--color-text);

    margin-left:25px;

    font-weight:500;

    transition:var(--transition);

}

.nav-link:hover{

    color:var(--color-primary);

}

/*=========================================
HERO
=========================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:130px;

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(184,137,104,.08);

    top:-150px;

    right:-180px;

    z-index:-1;

}

.hero-subtitle{

    display:inline-block;

    color:var(--color-primary);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.9rem;

    margin-bottom:20px;

}

.hero h1{

    margin-bottom:25px;

    max-width:650px;

}

.hero p{

    max-width:540px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-image{

    position:relative;

    padding:20px;

}

.hero-image img{

    border-radius:40px;

    box-shadow:var(--shadow-lg);

    object-fit:cover;

}

/*=========================================
DROPDOWN
=========================================*/

.dropdown-menu{

    border:none;

    border-radius:20px;

    padding:12px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    box-shadow:var(--shadow-md);

    min-width:220px;

}

.dropdown-item{

    border-radius:12px;

    padding:12px 18px;

    color:var(--color-text);

    transition:var(--transition);

    font-weight:500;

}

.dropdown-item:hover{

    background:var(--color-section);

    color:var(--color-primary);

}

.cta-content{

    max-width:700px;

    margin:auto;

}

.whatsapp-button{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    font-size:30px;

    z-index:999;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    transition:.35s;

}

.whatsapp-button:hover{

    transform:scale(1.1);

    color:#fff;

}

.page-hero{

    min-height:55vh;

    display:flex;

    align-items:center;

}

/*==================================
PACKAGE
==================================*/

.package-card{

    background:#fff;

    padding:45px;

    border-radius:32px;

    text-align:center;

    box-shadow:var(--shadow-md);

    height:100%;

    transition:.35s;

}

.package-card:hover{

    transform:translateY(-8px);

}

.package-card.featured{

    background:var(--color-primary);

    color:#fff;

}

.package-number{

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.8rem;

    color:inherit;

}

.package-card h3{

    margin:20px 0;

}

.package-note{

    margin-top:30px;

    text-align:center;

    opacity:.7;

    font-size:.9rem;

}

/*==================================
PROCEDURE CARD
==================================*/

.procedure-card{

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    box-shadow:var(--shadow-md);

    transition:.35s;

    height:100%;

}

.procedure-card:hover{

    transform:translateY(-10px);

}

.procedure-image img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.procedure-body{

    padding:35px;

}

.procedure-body h3{

    margin:15px 0;

}

.procedure-price{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:30px 0;

    padding:18px 0;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;

}

.procedure-price strong{

    color:var(--color-primary);

    font-size:1.4rem;

}

/*==================================
SMALL CARD
==================================*/

.small-procedure-card{

    background:#fff;

    padding:35px;

    border-radius:28px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

}

.small-procedure-card:hover{

    transform:translateY(-6px);

}

.small-price{

    margin-top:25px;

    color:var(--color-primary);

    font-size:2rem;

    font-family:'Playfair Display', serif;

}