/* =========================================================
   VARIABLES GLOBALES
========================================================= */
*{
    font-family: 'Montserrat', sans-serif;
}
:root{
    --primary-color:#0d2d60;
    --secondary-color:#e8913a;
    --background-color:#ffffff;
    --text-color:#111111;

}

/* =========================================================
   RESET
========================================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    body{
    font-family:'Montserrat', sans-serif;
}
    background:var(--background-color);
    color:var(--text-color);
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* =========================================================
   NAVBAR
========================================================= */
.menu_bar{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;

    background:var(--primary-color);

    border-bottom:1px solid rgba(255,255,255,0.08);

    z-index:9999;
}

.logo img{
    width:240px;
}

/* =========================================================
   MENU DESKTOP
========================================================= */
#menu{
    display:flex;
    align-items:center;
    gap:10px;
}

#menu > li{
    position:relative;
}

#menu > li > a{
    display:flex;
    align-items:center;
    gap:8px;

    padding:12px 18px;

    font-size:15px;
    font-weight:500;

    color:white;

    border-radius:12px;

    transition:0.3s ease;
}

#menu > li > a:hover{
    background:rgba(255,255,255,0.08);
    color:var(--secondary-color);
}

/* =========================================================
   ELEGANT MEGA MENU
========================================================= */

@media(min-width:951px){
    .highlight{
    color:#e8913a;
}
    /* NAVBAR */
    .menu_bar{
        position:relative;

        display:flex;

        align-items:center;

        justify-content:space-between;

        padding:0 50px;

        z-index:1000;
    }

    /* MENU PRINCIPAL */
    #menu{
        display:flex;

        align-items:center;

        gap:10px;
    }

    #menu li{
        position:static;

        list-style:none;
    }

    /* LINKS DEL NAV */
    #menu > li > a{
        display:flex;

        align-items:center;

        gap:8px;

        padding:30px 18px;

        font-size:14px;

        font-weight:600;

        color:white;

        text-decoration:none;

        transition:0.3s ease;

        position:relative;
    }

    /* LINEA ELEGANTE */
    #menu > li > a::after{
        content:"";

        position:absolute;

        bottom:18px;

        left:18px;

        width:0;

        height:2px;

        background:#e8913a;

        transition:0.35s ease;
    }

    #menu > li:hover > a::after{
        width:calc(100% - 36px);
    }

    #menu > li:hover > a{
        color:#e8913a;
    }

    /* =========================================================
       MEGA MENU
    ========================================================= */
    .dropdown_menu{
        position:absolute;

        top:100%;

        left:50%;

        transform:translateX(-50%) translateY(20px);

        width:92%;

        max-width:1400px;

        background:#0d2d60;

        border-radius:24px;

        padding:45px 50px;

        box-sizing:border-box;

        display:flex;

        justify-content:space-between;

        align-items:flex-start;

        gap:50px;

        opacity:0;

        visibility:hidden;

        transition:0.35s ease;

        box-shadow:
        0 25px 60px rgba(254, 254, 254, 0.18);

        z-index:999;
    }

    /* MOSTRAR MENU */
    .has-dropdown:hover .dropdown_menu{
        opacity:1;

        visibility:visible;

        transform:translateX(-50%) translateY(0);
    }

    /* COLUMNAS */
    .mega-column{
        flex:1;

        min-width:220px;
    }

    /* TITULOS */
    .mega-column h4{
        color:#e8913a;

        font-size:16px;

        letter-spacing:1px;

        margin-bottom:22px;

        font-weight:700;

        text-transform:uppercase;
    }

    /* LINKS */
    .mega-column a{
        display:block;

        padding:13px 0;

        color:white;

        font-size:14px;

        line-height:1.6;

        text-decoration:none;

        border-bottom:1px solid rgba(232,145,58,0.18);

        transition:0.3s ease;
    }

    .mega-column a:hover{
        color:#e8913a;

        padding-left:10px;
    }

    /* ICONO */
    #menu i{
        font-size:12px;

        transition:0.3s ease;
    }

    .has-dropdown:hover i{
        transform:rotate(180deg);
    }

    /* BOTONES IDIOMA */
    .language-switch{
        display:flex;

        gap:10px;
    }

    .lang-btn{
        border:none;

        background:transparent;

        cursor:pointer;

        transition:0.3s ease;
    }

    .lang-btn:hover{
        transform:scale(1.08);
    }

    .lang-btn img{
        width:24px;

        height:24px;

        border-radius:50%;
    }
}

/* EVITA SCROLL HORIZONTAL */
body{
    overflow-x:hidden;
    color: #e7e7e7; 
}
/* =========================================================
   HAMBURGUESA
========================================================= */
.menu-toggle{
    width:34px;
    height:24px;

    display:none;

    position:relative;

    cursor:pointer;

    z-index:10001;
    
}
@media(max-width:950px){

    .mega-column h4{
        color:#e8913a;
    }

}
#menu > li > a{
        color:white;
    }
.menu-toggle span{
    position:absolute;
    left:0;

    width:100%;
    height:3px;

    background:white;

    border-radius:20px;

    transition:0.3s ease;
}

.menu-toggle span:nth-child(1){
    top:0;
}

.menu-toggle span:nth-child(2){
    top:10px;
}

.menu-toggle span:nth-child(3){
    top:20px;
}

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
}
/* =========================================================
   BOTONES
========================================================= */
.btn,
.about-btn,
.tour-btn,
.footer-btn{
    transition:0.3s ease;
}

.btn{
    display:inline-block;

    padding:4px 10px;

    background:var(--secondary-color);

    color:white;

    border-radius:40px;

    font-weight:600;
}

.btn:hover{
    transform:translateY(-3px);
    background:#cf7b28;
}

/* =========================================================
   ABOUT
========================================================= */
.about{
    background:#ffffff;
    padding:20px 20px;
}

.about-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.section-subtitle{
    display:block;

    color:var(--secondary-color);

    font-size:15px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:18px;
}

.about h2{
    font-size:45px;
    line-height:1.3;

    color:var(--primary-color);

    margin-bottom:25px;
}

.about p{
    font-size:17px;
    color:#555;
}

.about-btn{
    display:inline-block;

    margin-top:35px;

    padding:14px 28px;

    background:var(--secondary-color);

    color:white;

    border-radius:40px;
}

/* =========================================================
   FOOTER MEJORADO
========================================================= */

.footer{
    background: var(--primary-color);
    padding-top: 80px;
    color: #fff;
}

/* CONTENEDOR */
.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 30px 60px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

/* TITULOS */
.footer-column h3{
    font-size:18px;
    color:#fff;
    margin-bottom:25px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    background: var(--secondary-color);
    border-radius:10px;
}

/* LOGO */
.footer-brand img{
    width:160px;
    margin-bottom:25px;
}

/* CONTACTO */
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
}

.footer-contact i{
    color: var(--secondary-color);
}

/* LISTAS */
.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#fff;
    opacity:0.85;
    transition:0.3s ease;
    font-size:14px;
}

.footer-column ul li a:hover{
    opacity:1;
    color: var(--secondary-color);
    padding-left:6px;
}

/* BOTON */
.footer-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;
    margin-top:15px;

    background: var(--secondary-color);
    color:#fff;

    border-radius:10px;
    font-weight:600;

    transition:0.3s ease;
}

.footer-btn:hover{
    transform:translateY(-3px);
}

/* ================= BOTTOM ================= */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:25px 30px;

    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-bottom-logo img{
    width:100px;
}

.footer-bottom-logo p{
    color:rgba(255,255,255,0.75);
    font-size:13px;
}

/* REDES */
.footer-socials{
    display:flex;
    gap:12px;
}

.footer-socials a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);

    color:#fff;

    transition:0.3s ease;
}

.footer-socials a:hover{
    background: var(--secondary-color);
    transform:translateY(-3px);
}
.footer-btn{
    margin-top:25px; /* antes estaba más arriba, ahora baja un poco */
}
.footer-contact-box small{
    display:block;
    margin-top:6px;
    opacity:0.8;
    font-size:12px;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:950px){
    
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact{
        align-items:center;
    }

    .footer-contact p{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-logo{
        flex-direction:column;
    }

    .footer-socials{
        justify-content:center;
        flex-wrap:wrap;
    }
    .footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-brand img{
    margin:0 auto;
}
.footer-brand{
    align-items:center;
    justify-content:center;
}
}

/* =========================================================
   WHATSAPP
========================================================= */
.whatsapp-float{
    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25d366;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    color:white;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,0.25);

    transition:0.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:950px){

    .menu-toggle{
        display:block;
    }

    #menu{
        position:fixed;

        top:80px;
        left:-100%;

        width:100%;
        height:calc(100vh - 80px);

        background:var(--primary-color);

        flex-direction:column;
        align-items:stretch;

        gap:12px;

        padding:20px;

        overflow-y:auto;

        transition:left 0.4s ease;
    }

    #menu.active{
        left:0;
    }

    #menu > li{
        width:100%;

        display:flex;
        flex-direction:column;
    }

    #menu > li > a{
        width:100%;

        justify-content:space-between;

        padding:18px 20px;

        background:rgba(255,255,255,0.05);

        border-radius:14px;

        font-size:16px;
    }

    .dropdown_menu{
        position:relative;

        display:none;

        width:100%;

        margin-top:8px;

        background:rgba(255,255,255,0.05);

        border-radius:14px;

        overflow:hidden;
    }

    .has-dropdown.active .dropdown_menu{
        display:block;
    }

    .dropdown_menu ul{
        display:flex;
        flex-direction:column;
    }

    .dropdown_menu a{
        display:block;

        width:100%;

        padding:15px 20px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .about,
    .destinations,
    .tours{
        padding:20px 20px;
    }

    .about h2,
    .destinations h2{
        font-size:32px;
    }

    .tour-content h3{
        font-size:24px;
    }

    .tour-info{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-container{
        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact{
        align-items:center;
    }

    .footer-contact p{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-logo{
        flex-direction:column;
    }

    .footer-socials{
        justify-content:center;
        flex-wrap:wrap;
    }
}
.tours-intro{
    background:#ffffff;
    padding:70px 10px 10px;
}

.tours-intro-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.tours-intro h2{
    font-size:42px;
    color:var(--primary-color);
    margin-bottom:20px;
    line-height:1.2;
}

.tours-intro p{
    font-size:17px;
    color:#555;
    max-width:850px;
    margin:auto;
    line-height:1.7;
}
.features{
    background:#ffffff;
    padding:20px 20px;
}

.features-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

/* CARD */
.feature-card{
    background:white;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    border:1px solid rgba(0,0,0,0.05);

    transition:0.3s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
}

/* ICONO */
.feature-card i{
    font-size:40px;
    color:var(--secondary-color);
    margin-bottom:15px;
}

/* TITULO */
.feature-card h3{
    font-size:20px;
    color:var(--primary-color);
    margin-bottom:10px;
}

/* TEXTO */
.feature-card p{
    font-size:14px;
    color:#666;
}

/* RESPONSIVE */
@media(max-width:768px){

    .feature-card{
        padding:30px 20px;
    }

    .feature-card h3{
        font-size:18px;
    }
}
.language-switch{

    display:flex;
    align-items:center;

    gap:12px;

    margin-left:25px;
}

.lang-btn{

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    overflow:hidden;

    cursor:pointer;

    padding:0;

    background:none;

    transition:0.3s ease;

    border:2px solid transparent;
}

.lang-btn img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;
}

/* ACTIVO */

.lang-btn.active{

    border-color:var(--secondary-color);

    box-shadow:0 0 15px rgba(232,145,58,0.4);

    transform:scale(1.08);
}

/* HOVER */

.lang-btn:hover{

    transform:translateY(-2px) scale(1.08);
}
/* =========================
   HERO MACHU PICCHU
========================== */

.machu-hero{
    position: relative;
    width: 100%;
    min-height: 100vh;

    background-image: url("assets/IcaParacasHuacachina.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-start; /* TEXTO MÁS ARRIBA */
    justify-content: flex-start;

    padding: 140px 8% 80px;
    overflow: hidden;
}

/* OVERLAY OSCURO */

.hero-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    );
}

/* CONTENIDO */

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
}

/* SUBTITLE */

.hero-subtitle{
    display: inline-block;
    color: #e8913a;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* TITULO */

.hero-content h1{
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
}

/* TEXTO */

.hero-content p{
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.8;
    max-width: 620px;
    opacity: .95;
    margin-bottom: 40px;
}

/* BOTONES */

.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn{
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
    font-size: 15px;
}

/* BOTÓN PRINCIPAL */

.hero-btn.primary{
    background: #e8913a;
    color: white;
}

.hero-btn.primary:hover{
    background: white;
    color: #0d2d60;
    transform: translateY(-3px);
}

/* BOTÓN SECUNDARIO */

.hero-btn.secondary{
    border: 2px solid rgba(255,255,255,.4);
    color: white;
    backdrop-filter: blur(8px);
}

.hero-btn.secondary:hover{
    background: white;
    color: #0d2d60;
}

/* =========================
   TABLET
========================== */

@media(max-width:992px){

    .machu-hero{
        padding: 120px 7% 70px;
    }

    .hero-content{
        max-width: 90%;
    }

}

/* =========================
   MOBILE
========================== */

@media(max-width:768px){

    .machu-hero{
        min-height: 85vh;

        padding:
        110px
        6%
        60px;

        align-items: flex-start;
    }

    .hero-content{
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1{
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-content p{
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .hero-buttons{
        flex-direction: column;
        width: 100%;
    }

    .hero-btn{
        width: 100%;
        text-align: center;
    }

}

/* =========================
   CELULARES PEQUEÑOS
========================== */

@media(max-width:480px){

    .machu-hero{
        padding-top: 95px;
    }

    .hero-subtitle{
        font-size: 12px;
        letter-spacing: 2px;
    }

}
/* =========================
   TOUR DETAILS
========================== */

.tour-details{
    width: 100%;
    padding: 100px 8%;
    background:
    linear-gradient(
        180deg,
        #07172f 0%,
        #0d2d60 100%
    );
    color: white;
}

.tour-container{
    max-width: 1400px;
    margin: auto;
}

/* TITULOS */

.tour-tag{
    display: inline-block;
    color: #e8913a;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tour-main h2{
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 30px;
}

.tour-intro{
    font-size: 20px;
    line-height: 1.9;
    opacity: .95;
    margin-bottom: 25px;
}

.tour-main p{
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,.85);
}

/* BLOQUES */

.tour-block{
    margin-top: 80px;
}

.tour-block h3{
    font-size: 34px;
    margin-bottom: 40px;
}

/* TIMELINE */

.timeline{
    position: relative;
    padding-left: 40px;
    border-left: 2px solid rgba(255,255,255,.1);
}

.timeline-item{
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot{
    position: absolute;
    left: -51px;
    top: 5px;

    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e8913a;
    border: 4px solid #0d2d60;
}

.timeline-content{
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(10px);

    padding: 35px;
    border-radius: 28px;
}

.timeline-content h4{
    font-size: 25px;
    margin-bottom: 20px;
}

.timeline-content ul{
    margin-top: 20px;
    padding-left: 20px;
}

.timeline-content li{
    margin-bottom: 12px;
    color: rgba(255,255,255,.85);
}

/* CARDS */

.tour-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 80px;
}

.tour-card{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.tour-card h3{
    font-size: 30px;
    margin-bottom: 30px;
}

.tour-card ul{
    list-style: none;
}

.tour-card li{
    margin-bottom: 18px;
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,.88);
}

.tour-card li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;

    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e8913a;
}

/* RECOMENDACIONES */

/* =========================
   RECOMMENDATIONS PREMIUM
========================== */

.recommendations-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

.recommend-card{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    border-radius: 28px;

    padding: 35px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    transition: .4s;
}

.recommend-card:hover{
    transform: translateY(-10px);
    border-color: rgba(232,145,58,.4);

    background:
    rgba(232,145,58,.08);
}

/* ICONOS */

.recommend-card i{
    font-size: 38px;
    color: #e8913a;
    margin-bottom: 20px;
}

/* TEXTO */

.recommend-card span{
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.92);
    line-height: 1.5;
}

/* TABLET */

@media(max-width:992px){

    .recommendations-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:768px){

    .recommendations-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .recommend-card{
        padding: 28px 20px;
    }

    .recommend-card i{
        font-size: 32px;
    }

}

.recommendations span:hover{
    background: #e8913a;
}

/* RESPONSIVE */

@media(max-width:992px){

    .tour-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .tour-details{
        padding: 80px 6%;
    }

    .timeline{
        padding-left: 25px;
    }

    .timeline-dot{
        left: -36px;
    }

    .timeline-content{
        padding: 25px;
    }

    .tour-block h3{
        font-size: 28px;
    }

    .timeline-content h4{
        font-size: 22px;
    }

    .tour-intro{
        font-size: 18px;
    }

}
/* =========================
   FAQ SECTION
========================== */

.faq-section{
    width: 100%;
    padding: 110px 8%;

    background:
    linear-gradient(
        180deg,
        #081b38 0%,
        #07172f 100%
    );

    color: white;
}

.faq-container{
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.faq-header{
    text-align: center;
    margin-bottom: 70px;
}

.faq-header span{
    color: #e8913a;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
}

.faq-header h2{
    font-size: clamp(40px,5vw,68px);
    margin: 20px 0;
}

.faq-header p{
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.8);
}

/* FAQ LIST */

.faq-list{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ITEM */

.faq-item{
    background: rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius: 24px;

    overflow: hidden;

    backdrop-filter: blur(10px);

    transition: .3s;
}

.faq-item.active{
    border-color: rgba(232,145,58,.4);
}

/* QUESTION */

.faq-question{
    width: 100%;

    background: transparent;
    border: none;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    color: white;

    font-size: 20px;
    font-weight: 600;

    text-align: left;
}

/* ICON */

.faq-question i{
    color: #e8913a;
    transition: .3s;
    font-size: 18px;
}

.faq-item.active i{
    transform: rotate(45deg);
}

/* ANSWER */

.faq-answer{
    max-height: 0;
    overflow: hidden;

    transition:
    max-height .4s ease,
    padding .3s ease;
}

.faq-answer p{
    padding:
    0 30px 30px;

    color: rgba(255,255,255,.82);

    line-height: 1.9;

    font-size: 16px;
}

/* ACTIVE */

.faq-item.active .faq-answer{
    max-height: 400px;
}

/* MOBILE */

@media(max-width:768px){

    .faq-section{
        padding: 90px 6%;
    }

    .faq-question{
        font-size: 17px;
        padding: 24px;
    }

    .faq-answer p{
        padding:
        0 24px 24px;
    }

}
/* ================= BOOKING CARD ================= */

.booking-card{
    position:absolute;
    right:8%;
    top:50%;
    transform:translateY(-50%);

    width:340px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.15);

    border-radius:25px;

    padding:25px;

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,0.35);

    z-index:3;
}

/* PRICE BOX */
.price-box{
    text-align:center;
    margin-bottom:20px;
}

.price-box .label{
    font-size:25px;          /* 👈 antes 13px */
    letter-spacing:2px;
    color:#e8913a;
    text-transform:uppercase;
    font-weight:600;
}

.price-box h2{
    font-size:52px;          /* 👈 un poco más grande */
    margin:5px 0;
    line-height:1;
}

.price-box small{
    opacity:0.85;
    font-size:14px;
}

/* FORM */
.booking-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.booking-form input,
.booking-form textarea{
    width:100%;
    padding:12px 14px;

    border-radius:12px;
    border:1px solid rgba(255,255,255,0.2);

    background:rgba(0,0,0,0.2);
    color:#fff;

    outline:none;
}

.booking-form textarea{
    min-height:80px;
    resize:none;
}

/* BUTTON */
.booking-form button{
    margin-top:10px;

    padding:14px;

    border:none;
    border-radius:14px;

    background:#e8913a;
    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:0.3s ease;
}

.booking-form button:hover{
    background:#fff;
    color:#0d2d60;
    transform:translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .booking-card{
        position:relative;
        top:auto;
        right:auto;
        transform:none;

        width:100%;
        margin-top:40px;
    }

}
@media(max-width:768px){

    .booking-card{
        display:none;
    }

}