*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* AAAAAAAAAAAAAAAAA */

:root {
    /* Gradientes para Hero-Section */
    --gradient-top: linear-gradient(
        0deg, 
        rgba(199, 206, 201, 0) 0%,          /* #C7CEC9 transparente */
        rgba(199, 206, 201, 0.3) 50%,       /* Transición media */
        #c7cec9e6 100%       /* #C7CEC9 sólido */
    );

    --gradient-bottom: linear-gradient(
        180deg, 
        rgba(219, 226, 221, 0) 0%,          /* #DBE2DD transparente */
        rgba(219, 226, 221, 0.4) 40%,       /* Transición media */
        #C7CEC9 100%         /* #DBE2DD sólido */
    );

    /* Gradientes para Book-Section (invertidos) */
    --gradient-top-book: linear-gradient(
        180deg, 
        rgba(199, 206, 201, 1) 0%,          /* #C7CEC9 sólido */
        rgba(199, 206, 201, 0.6) 50%,       /* Transición media */
        rgba(219, 226, 221, 0) 100%         /* #DBE2DD transparente */
    );

    --gradient-bottom-book: linear-gradient(
        0deg, 
        rgba(219, 226, 221, 1) 0%,          /* #DBE2DD sólido */
        rgba(219, 226, 221, 0.5) 60%,       /* Transición media */
        rgba(199, 206, 201, 0) 100%         /* #C7CEC9 transparente */
    );

    /* Tamaños de fuente responsivos */
    --title-size-4k: 5rem;
    --title-size-1440: 4rem;
    --title-size-1024: 3.5rem;
    --title-size-768: 3rem;
    --title-size-mobile: 2.5rem;
    
    --paragraph-size: clamp(1.1rem, 1.8vw, 1.3rem); /* Aumentado aprox. 20% */
    --subtitle-size: clamp(1.2rem, 2vw, 1.6rem); /* Ajustado para mantener proporción */
    --nav-font-size: clamp(0.9rem, 1.2vw, 1.1rem); /* Ligero aumento para coincidir */
    
    /* Espaciados responsivos */
    --section-padding: clamp(3rem, 8vw, 6rem);
    --card-gap: clamp(1rem, 2vw, 1.5rem);
}


html{
    scroll-behavior: smooth;
    font-size: 100%;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #C7CEC9;
    color: #333;
    overflow-x: hidden;
    /*POST NAVBAR UPDATE-->*/
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    line-height: 1.6;
}

/* HEADER SECTION*/

.header {
    position: fixed;
    width: 100%;
    background-color: rgba(19, 22, 26, 0.7);
    top: 0;
    left: 0;
    z-index: 9;
    /*height: 15vh;
    padding: 20px 10vw;*/
    padding: 1rem 5vw;
    transition: all 0.3 ease;
  }

.header__content {
    min-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*max-width: 1200px;*/
    max-width: 1800px;
    /*padding: 0 30px;*/
    padding: 0 1.5rem;
    margin: 0 auto;
  }  

  .logo__img {
    /*display: block;
    height: 40px;*/
    height: clamp(50px, 4vw, 50px);
    transition: all 0.3 ease;
  }

  .nav {

  }
  
  .nav__list {
    display: flex;
    /*align-items: baseline;
    column-gap: 20px;*/
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
  }
  
  .nav__item {
  
  }
  
  .nav__link {
    color: rgba(255, 255, 255, 0.75);
    /*font-size: 15px;  */
    /*font-size: 0.9rem;*/
    font-size: var(--nav-font-size);
    position: relative;
    /*padding: 7px 14px;*/
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
  }
  
  .nav__link:hover,
  .nav__link:focus,
  .dropdown:hover .nav__link {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
  }


.navbar{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100px;
    padding: 20px 10vw;
    background: rgba(224, 224, 224, 0);
}

.navbar.bg{
    background: #0e0e0e4f;
}

.links-container{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: auto;
}

.links-container a {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-size: clamp(10px, 2vw, 18px); /* Ajusta el tamaño entre 14px y 18px según el ancho de la pantalla */
    white-space: wrap; /* Evita que las palabras se dividan en dos líneas */
    /*font-size: 18px;*/
    
}

.logo{
    height: 50px;
    margin-top: 10px;
}



.link-item{
    margin: 0 20px;
    transition: .5s;
}

.link-item a{
    color: #fff;
    text-decoration: none;
    padding: 20px;
}

.link-item:hover{
    transform: scale(1.2);
}

/* hero */

.hero-section{
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
}

.background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.background::before, .background::after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
}

.background::before{
    top: 0;
    /*left: 0;*/
    background: var(--gradient-top);
}

.background::after{
    bottom: 0;
    background: var(--gradient-bottom);
}

.grid-slider{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.grid-item{
    width: 100%;
    height: 100%;
    background: #C7CEC9;
    opacity: 1;
    transition: 1s;
}

.grid-item.hide{
    opacity: 0;
}

.hero-section-title{
    font-family: 'Jacques Francois', serif;
    font-weight: 300;
    font-size: clamp(60px, 2vw, 80px);;
    /*font-size: 80px;*/
    text-align: center;
    text-transform: capitalize; 
    color: #222;
}

.hero-section-sub-heading{
    text-align: center;
    text-transform: capitalize;
    margin: 20px 0;
    font-size: 20px;
    color: #444;
}

/*.hero-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 20px;
}*/

.hero-section-content {
    width: 100%;
    /*max-width: 1200px;  Límite máximo para pantallas grandes */
    max-width: 1600px;
    margin: 0 auto; /* Centrado horizontal */
    /*padding: 20px;*/
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*min-height: 60vh;  Altura mínima proporcional a la pantalla */
}

/*.hero-section-image {
    max-width: 35%;
    height: auto;
    object-fit: contain;
}*/

.hero-section-image {
    width: clamp(500px, 35vw, 750px); /* Escala entre 250px y 500px */
    height: auto;
    margin: 20px 0;
}

.scroll-down-icon{
    position: absolute;
    bottom: 5%; /*10%*/
    left: 50%;
    transform: translateX(-50%);
    width: 20px; /*20px*/
    height: 30px;
    animation: down ease 1s infinite;
}

@keyframes down{
    from { bottom: 10% }
    to { bottom: 8% }
}

/* explore section */

.explore-section{
    position: relative;
    width: 100%;
    /*padding: 80px 10vw;*/
    padding: var(--section-padding) 5vw;
    color: #DBE2DD;
    background-color: #C7CEC9;
}

.section-title{
    font-size: var(--title-size-1440);
    /*font-size: 70px;*/
    /*font-weight: 400;*/
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.2;
    line-height: 70px;
    color:#485342;
    font-family: 'Jacques Francois', sans-serif;
    margin-bottom: 1.5rem;
}

.section-para{
    /*width: 50%;*/
    width: 80%;
    min-width: 300px;
    display: block;
    /*margin: 30px auto;*/
    margin: 0 auto 2rem;
    margin-bottom: 2.2rem;
    text-align: center;
    /*line-height: 25px;*/
    line-height: 1.7;
    opacity: 0.8;
    /*opacity: 0.6;*/
    /*font-size: 20px;*/
    font-size: var(--paragraph-size);
    color:#505A4A;
    max-width: 1200px;
}

.tours-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    grid-auto-rows: minmax(300px, 1fr);
    gap: var(--card-gap, 20px);
}

/*.tour-card{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    box-shadow: 0;
    overflow: hidden;
    padding: 10px;
    display: flex;
    align-items: end;
}*/
.tour-card {
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.tour-card:nth-child(2){
    grid-row: span 2;
}

.tour-card:last-child{
    grid-column: span 2;
}

.tour-slider-img {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}
.tour-slider-img.fade-out {
    opacity: 0;
}

.tour-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease; /*.5s*/
    z-index: -1;
}

.tour-card:hover .tour-img{
    opacity: 0.8;
    transform: scale(1.05); /*1.1*/
}

.tour-name{
    font-weight: 300;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra negra más pronunciada */
}

.tour-action{
    margin-left: 1.5rem; /*20ox*/
    font-size: 14px;
    position: relative;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra negra más pronunciada */
}

.tour-action::before{
    content: '';
    position: absolute;
    left: -20px;
    top: 2px;
    background: url('/img/pin.png');
    width: 17px;
    height: 17px;
    background-size: contain;
}

.tour-card:nth-child(1) .tour-action::before {
    background: url('/img/binoculars.png') no-repeat center;
    background-size: contain;
}

.tour-card:nth-child(2) .tour-action::before {
    background: url('/img/heart.png') no-repeat center;
    background-size: contain;
}

.tour-card:nth-child(3) .tour-action::before {
    background: url('/img/sail.png') no-repeat center;
    background-size: contain;
}
.tour-card:nth-child(4) .tour-action::before {
    background: url('/img/swim.png') no-repeat center;
    background-size: contain;
}

.tour-card:nth-child(5) .tour-action::before {
    background: url('/img/binoculars.png') no-repeat center;
    background-size: contain;
}

.tour-card:nth-child(6) .tour-action::before {
    background: url('/img/paw.png') no-repeat center;
    background-size: contain;
}

/* services section */

.services-section{
    position: relative;
    width: 100%;
    color: #C7CEC9;
    /*padding: 80px 10vw;*/
    padding: var(--section-padding) 5vw;
    background-color: #DBE2DD;
}

.serives-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.service-card{
    margin-top: 100px;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    border: 1px solid #2D2D2D;
    background: #161813;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.card-icon{
    text-align: center;
    font-size: 60px;
    z-index: 1;
}

.service-text{
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.circle{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 100% 100%);
    transition: .5s;
}

.service-card:nth-child(1) .circle{
    background: url(/img/img5.JPG);
    background-size: cover;
}

.service-card:nth-child(2) .circle{
    background: url(/img/img2.jpg);
    background-size: cover;
}

.service-card:nth-child(3) .circle{
    background: url(/img/img6.jpeg);
    background-size: cover;
}

.service-card:nth-child(4) .circle{
    background: url(/img/img4.jpeg);
    background-size: cover;
}

.service-card:hover .circle{
    clip-path: circle(141.4% at 100% 100%);
}

.travel-grid{
    width: 100%;
    columns: 3;
    column-gap: 20px;
    margin-top: 100px;
}

.travel-grid img{
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

.bg-circle{
    z-index: -1;
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--sphere-gradient-one);
    right: -250px;
}

/* book now section */

.book-section{
    position: relative;
    display: flex;
    padding: 80px 10vw;
    align-items: center;
    width: 100%;
    height: 70vh;
    gap: 30px;
}

.book-now-img{
    position: absolute;
    height: auto;
    object-fit: contain;
    max-width: 30%;
    right: 0;
}

.book-content{
    width: 50%;
    color: #000000;
}

.book-now-title{
    /*font-size: 60px;*/
    font-size: clamp(40px, 4vw, 60px);
    /*font-weight: 300;*/
    font-weight: bold;
    width: 300px;
    line-height: 70px;
    font-family: 'Jacques Francois', sans-serif;
    color: #485342;
}

.book-now-text{
    /*width: 300px;*/
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.8;
    line-height: 25px;
    margin: 30px 0;
    font-size: 20px;
    color: #485342;
}

.book-now {
    position: relative;
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    outline: none;
    border: none;
    background: #485342;
    text-transform: capitalize;
    color: #fff;
    border-radius: 50px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: #3a4635;
    border-color: rgba(255, 255, 255, 0.3);
}

.book-now:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.book-now:hover::before {
    left: 100%;
}

.background-book{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image-book{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.background-book::before, .background::after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
}

.background-book::before{
    top: 0;
    background: var(--gradient-top-book);
}

.background-book::after{
    bottom: 0;
    background: var(--gradient-bottom-book);
}

.book-section-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/*.bg-circle-2{
    z-index: -1;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background:  var(--sphere-gradient-two);
    left: -125px;
    bottom: -100px;
}*/

/*.footer{
    width: 100%;
    padding: 100px 10vw;
    background: #000;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.footer-logo{
    width: 100px;
    opacity: 0.3;
}

.footer-text{
    color: #fff;
    opacity: 0.5;
    font-size: 20px;
}

.footer-text p{
    margin: 20px 0;
}*/

/*.footer {
    padding: 30px 10vw;
    background: #485342;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}*/
.footer{
    /*padding: var(--section-padding) 5vw;*/
    padding: 30px 10vw;
    background: #485342;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.footer-column {
    color: #fff;
    opacity: 0.8;
    font-size: var(--paragraph-size);
}

/*.footer-column h3 {
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}*/
.footer-column h3{
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

/*.contact-info p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}*/
.contact-info p{
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.index-links ul {
    list-style: none;
}

.index-links li {
    /*margin: 15px 0;*/
    margin: 1rem 0;
}

.index-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.index-links a:hover {
    opacity: 0.6;
}

.social-icons {
    display: flex;
    /*gap: 20px;*/
    gap: 1rem;
    /*margin-top: 20px;*/
    margin-top: 1.5rem;
}

.social-icons a {
    color: #fff;
    /*font-size: 24px;*/
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.6;
}

.copyright-line {
    grid-column: 1 / -1;
    text-align: center;
    /*padding: 40px 0 0;*/
    padding: 2rem 0 0;
    /*margin-top: 20px;*/
    margin-top: 2rem;
    border-top: 1px solid #ffffff1a;
    color:#fff;
}

/*.copyright-line{
    width: 100%;
    background: #000;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 0;
}*/

/* team section section */

.team-section{
    position: relative;
    width: 100%;
    padding: var(--section-padding) 5vw;
    /*padding: 80px 10vw;*/
    color: #DBE2DD;
    background-color: #C7CEC9;
}

.wrapper .card_Container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 80px 0;
}

.card_Container .card{
    position: relative;
    width: 300px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
                inset 0 0 0 1000px #78d5d5;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .imbBx, .imbBx img{
    width: 100%;
    height: 100%;
}

.card .content{
    position: absolute;
    bottom: -160px;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.65s;
}

.card:hover .content{
    bottom: 0;
    transition-delay: 0s;
}

.content .contentBx h3{
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
}

.card:hover .content .contentBx h3{
    opacity: 1;
    transform: translateY(0);
}

.content .contentBx h3 span{
    font-size: 12px;
    font-weight: 300;
    text-transform: initial;
}

.content .sci{
    position: relative;
    bottom: 10px;
    display: flex;
}

.content .sci li{
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.2s * var(--i));
}

.card:hover .content .sci li{
    transform: translateY(0);
    opacity: 1;
}

.content .sci li a{
    color: #fff;
    font-size: 24px;
}

  /* MEDIA QUERIES */

  /* 4K (3840px) */
  @media screen and (min-width: 2560px) {
    :root {
        --title-size-1440: var(--title-size-4k);
    }
    .section-para {
        width: 80%;
    }
    
    .header__content {
        padding: 0 4rem;
    }
    
    .hero-section-content {
        padding: 4rem;
    }
    .hero-section-image {
        width: 80%;
    }
  }
  /* 1440p */
@media screen and (max-width: 1440px) {
    :root {
        --title-size-1440: 3.5rem;
    }
    
    .travel-grid {
        columns: 3;
    }
    .hero-section-image {
        width: 80%;
    }
}

/* 1024p (Tablets landscape) */
@media screen and (max-width: 1024px) {
    :root {
        --title-size-1440: 3rem;
    }
    
    /*.header__content {
        flex-direction: column;
        row-gap: 1rem;
        padding: 1.5rem 2rem;
    }*/
    
    .travel-grid {
        columns: 3;
    }
    
    .card_Container {
        grid-template-columns: repeat(2, 1fr);
    }
    .tours-container {
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    }
    
    .tour-card:nth-child(2) {
        grid-row: span 1;
    }
    
    .tour-card:last-child {
        grid-column: span 1;
    }
}

/* 768p (Tablets portrait) */
@media screen and (max-width: 768px) {
    :root {
        --title-size-1440: 2.5rem;
        --section-padding: 4rem;
    }
    
    .section-para {
        width: 90%;
    }

    .hero-section-image {
        width: 75%;
    }
    
    /*.tours-container {
        grid-template-columns: 1fr 1fr;
    }*/
    
    .footer {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
    }
    .tours-container {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(250px, auto);
    }
    
    .tour-card {
        min-height: 250px;
    }
    
    /* Eliminamos todos los spans específicos en móvil */
    .tour-card:nth-child(n) {
        grid-row: auto;
        grid-column: auto;
    }
}

/* 425p (Mobile large) */
@media screen and (max-width: 425px) {
    :root {
        --title-size-1440: 2rem;
        --section-padding: 3rem;
    }
    
    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav__link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero-section-image {
        width: 100%;
    }
    
    .tours-container,
    .travel-grid,
    .card_Container {
        grid-template-columns: 1fr;
    }
    
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* 375p (Mobile medium) */
@media screen and (max-width: 375px) {
    :root {
        --title-size-1440: 1.8rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .hero-section-image {
        width: 95%;
    }
}

/* 320p (Mobile small) */
@media screen and (max-width: 320px) {
    :root {
        --title-size-1440: 1.6rem;
        --section-padding: 2.5rem;
    }
    
    .header__content {
        padding: 1rem;
    }
    
    .nav__link {
        padding: 0.3rem 0.6rem;
    }
    
    .tour-card {
        min-height: 250px;
    }
}

/* ANIMATIONS */
@keyframes down {
    from { bottom: 5% }
    to { bottom: 3% }
}

/* UTILITY CLASSES */
.hide {
    opacity: 0;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}


/* Agregar en la sección del header */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 8px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    animation: underline-grow 0.3s ease;
}

@keyframes underline-grow {
    from { width: 0 }
    to { width: 100% }
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 10px;
    }
    
    .lang-btn {
        font-size: 0.85rem;
        padding: 4px 6px;
    }
}


/* Hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    z-index: 10;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.language-selector-desktop {
  display: block;
}

/* Selector de idioma móvil */
.language-selector-mobile {
    display: none;
}

/* Menú móvil */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .language-selector-mobile {
        display: flex;
        margin-left: auto;
    }
    
    .language-selector-desktop {
        display: none;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0e0e0eb6;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        z-index: 9;
    }
    
    .nav.active {
        max-height: 300px;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        width: 100%;
    }

    .nav__item {
        width: 100%;
        text-align: center;
    }

    .nav__link {
        display: block;
        padding: 0.8rem;
    }
      /* Ajustar posición del hamburguesa */
    .hamburger {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Animación de hamburguesa a X */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Agregar al final del archivo */
.lang-btn.active {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    animation: underline-grow 0.3s ease;
}

@keyframes underline-grow {
    from { width: 0 }
    to { width: 100% }
}