@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Bebas+Neue&family=Cinzel:wght@400..900&family=League+Spartan:wght@100..900&display=swap');


:root {
  --primary-color: #0a0a0a;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  margin-bottom: 25px;
  padding: 5rem 1rem;
}

.section__header  {
  margin-bottom: 5px;
  font-size: 3.5rem;
  font-weight: 850;
  color: var(--text-dark);
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
}

.section__description {
  max-width: 600px;
  font-size: 1.25rem;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: #cc332e;
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo .logo {
  font-size: 3.5em;
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 600;
  font-size: 1.10rem;
  color: var(--white);
  white-space: nowrap;
  font-family: "Archivo Black", sans-serif;
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btns {
  display: none;
  gap: 1rem;
}
.icon-animate {
  animation: iconSwitch 0.4s;
}

@keyframes iconSwitch {
  0% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.3) rotate(20deg); opacity: 0.7; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}


/*header*/

header {
    margin-top: 5rem;
    padding-inline: 1rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    height: 100%;
    object-fit: cover;
    border-radius: 3rem;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 3rem;
    z-index: -1;
}

.header__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.header__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.header__content p {
    margin-bottom: 6.3rem;
    font-size: 1rem;
    font-weight: 600;
    color: whitesmoke;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header__content h1 {
    margin-bottom: 3.75rem;
    font-size: 9.5rem;
    font-weight: 750;
    color: whitesmoke;
    line-height: 5.5rem;
    text-align: center;
    letter-spacing: 0.1rem;
    font-family: "Anton", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.60rem;
    gap: 1rem;
}

.header__btns .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    color: var(--primary-color);
    background-color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header__btns .btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Media Queries para Responsive */
@media screen and (max-width: 1200px) {
    .header__content h1 {
        font-size: 6rem;
        line-height: 4.5rem;
    }
}

@media screen and (max-width: 992px) {
    .header__content h1 {
        font-size: 8rem;
        line-height: 4rem;
        margin-left: 3rem;
        margin-right: 3rem;
        margin-bottom: 3rem;
    }
    
    .header__content {
        padding: 3rem 2rem;
    }
    
    .header__btns {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .header__content h1 {
        font-size: 8rem;
        line-height: 3.5rem;
        margin-left: 2rem;
        margin-right: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .header__content p {
        margin-bottom: 2.5rem;
    }
    
    .header__btns {
        margin-top: 1.5rem;
    }
    
    header {
        min-height: 60vh;
    }
}

@media screen and (max-width: 576px) {
    .header__content h1 {
        font-size: 3rem;
        line-height: 2.8rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 2rem;
    }
    
    .header__content {
        padding: 2rem 1rem;
    }
    
    .header__content p {
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }
    
    .header__btns {
        margin-top: 1.2rem;
    }
    
    .header__btns .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    header {
        min-height: 50vh;
        margin-top: 4rem;
    }
    
    .video-background,
    .overlay {
        width: calc(100% - 1rem);
        border-radius: 2rem;
    }
}

@media screen and (max-width: 400px) {
    .header__content h1 {
        font-size: 2.5rem;
        line-height: 2.3rem;
        letter-spacing: 0.05rem;
        margin-bottom: 1.5rem;
    }
    
    .header__content p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .header__btns {
        margin-top: 1rem;
    }
    
    .header__btns .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    header {
        min-height: 45vh;
    }
}

/*header end*/

.destination__container :is(.section__header, .section__description) {
  text-align: left;
  margin-inline-start: unset;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;
}

.destination__card img {
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.destination__card__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destination__card__details h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  columns: var(--text-dark);
}

.destination__card__details p {
  columns: var(--text-light);
}

.destination__rating {
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__rating {
  background-color: var(--primary-color-dark);
}


/*VALORES*/

.journey__grid {
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
  text-align: center;
}

.journey__card__bg {
  padding: 2rem;
  background-color: var(--extra-light);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

.journey__card__bg span {
  display: inline-block;
  margin-bottom: 5rem;
  font-size: 2.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "archivo black", sans-serif;
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  transition: 0.3s;
}

.journey__card:hover .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 7px 9px;
  font-size: 2rem;
  color: var(--white);
  
}

.journey__card__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.journey__card__content p {
  color: var(--extra-light);
  text-align: center;
}

/*about us*/
.about-us-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 40px; /* Espacio entre la imagen y el texto */
    flex-wrap: wrap; /* Permite que los elementos se apilen en pantallas pequeñas */
}

.image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.image-container img {
    width: 90%;
    height: auto;
    border-radius: 8px;
    display: block;
    mask-image: linear-gradient(white 80%, transparent );
}

.text-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.text-container h4 {
    margin-bottom: 5px;
    font-size: 4.5rem;
    font-weight: 650;
    color: var(--text-dark);
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    
}

.text-container h2 {
    font-size: 2rem;
    margin: 10px 0;
    opacity: 0.6;
}

.text-container p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-btn {
            background-color: #fdbb2d;
            color: #1a2a6c;
            border: none;
            padding: 12px 10px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .about-btn:hover {
            background-color: #ffcc44;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .about-btn i{
          padding-right: 10px;
        }

@media (max-width: 768px) {
    .about-us-section {
        flex-direction: column;
        padding: 20px;
    }

    .image-container img{
      height: 0;
    }

   .text-container h4 {
    color: #0a0a0a;
    font-size: 3.6em;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.text-container h2 {
    font-size: 1.5em;
    margin: 10px 0;
    text-align: center;
}

.text-container p {
    color: #131313;
    line-height: 1.6;
    text-align: justify;
}

}


/*TIMELINE ABOUT US*/
/* Timeline Container (inicialmente oculto) */
        .timeline-container {
            display: none;
            padding: 10px 0;
            background-color: #fff;
            transition: all 0.5s ease;
        }
        
        .timeline-visible {
            display: block;
            animation: fadeIn 0.8s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Estilos del Timeline Horizontal */
        .cd-horizontal-timeline {
            opacity: 0;
            margin: 0.5em auto;
            transition: opacity 0.2s;
        }
        
        .cd-horizontal-timeline::before {
            content: 'mobile';
            display: none;
        }
        
        .cd-horizontal-timeline.loaded {
            opacity: 1;
        }
        
        .cd-horizontal-timeline .timeline {
            position: relative;
            height: 100px;
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cd-horizontal-timeline .events-wrapper {
            position: relative;
            height: 100%;
            margin: 0 40px;
            overflow: hidden;
        }
        
        .cd-horizontal-timeline .events-wrapper::after, 
        .cd-horizontal-timeline .events-wrapper::before {
            content: '';
            position: absolute;
            z-index: 2;
            top: 0;
            height: 100%;
            width: 20px;
        }
        
        .cd-horizontal-timeline .events-wrapper::before {
            left: 0;
            background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
        }
        
        .cd-horizontal-timeline .events-wrapper::after {
            right: 0;
            background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
        }
        
        .cd-horizontal-timeline .events {
            position: absolute;
            z-index: 1;
            left: 0;
            top: 49px;
            height: 2px;
            background: #dfdfdf;
            transition: transform 0.4s;
        }
        
        .cd-horizontal-timeline .filling-line {
            position: absolute;
            z-index: 1;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: #7b9d6f;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.3s;
        }
        
        .cd-horizontal-timeline .events a {
            position: absolute;
            bottom: 0;
            z-index: 2;
            text-align: center;
            font-size: 1.3rem;
            padding-bottom: 15px;
            color: #383838;
            transform: translateZ(0);
        }
        
        .cd-horizontal-timeline .events a::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -5px;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            border: 2px solid #dfdfdf;
            background-color: #f8f8f8;
            transition: background-color 0.3s, border-color 0.3s;
        }
        
        .cd-horizontal-timeline .events a:hover::after {
            background-color: #7b9d6f;
            border-color: #7b9d6f;
        }
        
        .cd-horizontal-timeline .events a.selected {
            pointer-events: none;
        }
        
        .cd-horizontal-timeline .events a.selected::after {
            background-color: #7b9d6f;
            border-color: #7b9d6f;
        }
        
        .cd-horizontal-timeline .events a.older-event::after {
            border-color: #7b9d6f;
        }
        
        .cd-timeline-navigation a {
            position: absolute;
            z-index: 1;
            top: 50%;
            transform: translateY(-50%);
            height: 34px;
            width: 34px;
            border-radius: 50%;
            border: 2px solid #dfdfdf;
            overflow: hidden;
            color: transparent;
            text-indent: 100%;
            white-space: nowrap;
            transition: border-color 0.3s;
        }
        
        .cd-timeline-navigation a::after {
            content: '';
            position: absolute;
            height: 16px;
            width: 16px;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23383838'><path d='M8 0L6.59 1.41L12.17 7H0V9H12.17L6.59 14.59L8 16L16 8L8 0Z'/></svg>") no-repeat 0 0;
        }
        
        .cd-timeline-navigation a.prev {
            left: 0;
            transform: translateY(-50%) rotate(180deg);
        }
        
        .cd-timeline-navigation a.next {
            right: 0;
        }
        
        .cd-timeline-navigation a:hover {
            border-color: #7b9d6f;
        }
        
        .cd-timeline-navigation a.inactive {
            cursor: not-allowed;
        }
        
        .cd-timeline-navigation a.inactive::after {
            background-position: 0 -16px;
        }
        
        .cd-timeline-navigation a.inactive:hover {
            border-color: #dfdfdf;
        }
        
        .cd-horizontal-timeline .events-content {
            position: relative;
            width: 100%;
            margin: 2em 0;
            overflow: hidden;
            transition: height 0.4s;
        }
        
        .cd-horizontal-timeline .events-content li {
            position: absolute;
            z-index: 1;
            width: 100%;
            left: 0;
            top: 0;
            transform: translateX(-100%);
            padding: 0 5%;
            opacity: 0;
            animation-duration: 0.4s;
            animation-timing-function: ease-in-out;
        }
        
        .cd-horizontal-timeline .events-content li.selected {
            position: relative;
            z-index: 2;
            opacity: 1;
            transform: translateX(0);
        }
        
        .cd-horizontal-timeline .events-content li.enter-right, 
        .cd-horizontal-timeline .events-content li.leave-right {
            animation-name: cd-enter-right;
        }
        
        .cd-horizontal-timeline .events-content li.enter-left, 
        .cd-horizontal-timeline .events-content li.leave-left {
            animation-name: cd-enter-left;
        }
        
        .cd-horizontal-timeline .events-content li.leave-right, 
        .cd-horizontal-timeline .events-content li.leave-left {
            animation-direction: reverse;
        }
        
        .cd-horizontal-timeline .events-content li > * {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cd-horizontal-timeline .events-content h2 {
            font-weight: bold;
            font-size: 2.6rem;
            font-family: "Playfair Display", serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-dark);
        }
        
        .cd-horizontal-timeline .events-content em {
            display: block;
            font-style: italic;
            margin: 10px auto;
            color: #b21f1f;
        }
        
        .cd-horizontal-timeline .events-content em::before {
            content: '- ';
        }
        
        .cd-horizontal-timeline .events-content p {
            font-size: 1.4rem;
            color: #666;
            text-align: justify;
        }
        
        .cd-horizontal-timeline .events-content em, 
        .cd-horizontal-timeline .events-content p {
            line-height: 1.6;
        }
        
        @keyframes cd-enter-right {
            0% {
                opacity: 0;
                transform: translateX(100%);
            }
            100% {
                opacity: 1;
                transform: translateX(0%);
            }
        }
        
        @keyframes cd-enter-left {
            0% {
                opacity: 0;
                transform: translateX(-100%);
            }
            100% {
                opacity: 1;
                transform: translateX(0%);
            }
        }
        
        @media only screen and (min-width: 1100px) {
            .cd-horizontal-timeline {
                margin: 6em auto;
            }
            .cd-horizontal-timeline::before {
                content: 'desktop';
            }
        }
        
        @media only screen and (min-width: 768px) {
            .cd-horizontal-timeline .events-content h2 {
                font-size: 3.5rem;
            }
            .cd-horizontal-timeline .events-content em {
                font-size: 1.6rem;
            }
            .cd-horizontal-timeline .events-content p {
                font-size: 1.6rem;
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .about-us-section {
                padding: 50px 0;
                text-align: center;
            }
            
            .text-container h2 {
                font-size: 2rem;
            }
            
            .text-container p {
                font-size: 1rem;
            }
            
            .cd-horizontal-timeline .events-content h2 {
                font-size: 2rem;
            }
            
            .cd-horizontal-timeline .events-content p {
                font-size: 1.2rem;
            }
        }


/*GALERÍA strat*/
.fleet__container {
  padding-block: 5rem;
}

.fleet__container :is(.section__subheader, .section__header) {
  padding-inline: 1rem;
}

.fleet__container .section__description {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 4rem;
  padding-inline: 1rem;
}

.fleet__wrapper-1 {
  margin-bottom: 1rem;
}

.fleet__wrapper-1,
.fleet__wrapper-2 {
  overflow-x: hidden;
}

.fleet__images {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fleet__wrapper-1 .fleet__images {
  animation: scroll-left 45s linear infinite;
}

.fleet__wrapper-2 .fleet__images {
  animation: scroll-right 45s linear infinite;
}

.fleet__images img {
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.fleet__wrapper-1 .fleet__images img {
  max-width: 300px;
}

.fleet__wrapper-2 .fleet__images img {
  max-width: 300px;
}

@keyframes scroll-left {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(calc(-50% - 0.5rem));
  }
}




/*members starr*/
.inspiration {
  padding-block: 0.5rem;
  overflow: hidden;
}

.inspiration :is(.section__header, .section__description) {
  padding-inline: 1rem;
  margin-bottom: 1rem;
}

/* Galería de miembros centrada y efecto hover */
.section__description {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*membersssssssssssssssssssssssssssssssssssssssssssssssssssss*/
/* Estilos del contenedor principal */
/* Estilos del contenedor principal */

.multiavatar-container {
  display: grid;
  /* El número de columnas dependerá de cuántas imágenes tengas.
     Aquí usamos un ejemplo con 3, pero puedes ajustarlo. */
  grid-template-rows: repeat(1, 1fr); 
  gap: 1px; 
  position: relative;
  width: 100%;
  margin: auto;
  background-color: #1a1a1a;
}

/* Capa oscura que se superpone a las imágenes */
.multiavatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1.09;
  z-index: 3;
}

/* Estilos del contador en el centro */
.counter-display {
  position: absolute; /* Es clave para que el contador flote sobre la cuadrícula */
  top: 50%; /* Mueve el contador 50% desde arriba */
  left: 50%; /* Mueve el contador 50% desde la izquierda */
  transform: translate(-50%, -50%); /* Centra el elemento basándose en su propio tamaño */
  z-index: 3;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.counter-number {
  font-size: 10rem;
  font-weight: bold;
}

.counter-text {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #CCCCE5;
}

/* Estilos para las filas de avatares (sin animación) */
.supporter-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8 columnas */
  gap: 1px; /* Espacio entre las imágenes */
  z-index: 1; /* Asegura que esté debajo del contador */
  width: 100%;
}

.supporter-list a {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1px;
  overflow: hidden;
}

.supporter-list a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/*testimonio*/


 h2.title {
            text-align: center;
            font-size: 30px;
            margin: 32px 0;
            text-transform: uppercase;
            font-weight: 900;
            position: relative;
            font-family: "Archivo Black", sans-serif;
        }

        h2.title::after {
            position: absolute;
            content: "";
            width: 80px;
            height: 2px;
            background: #1a1a1a;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonials-container {
            display: flex;
            gap: 32px;
            max-width: 1200px;
            margin-inline: auto;
            height: 500px;
            width: 100%;
            padding: 24px;
            margin-bottom: 100px;
        }

        .column {
            flex: 1;
            height: 100%;
            overflow: hidden;
            mask-image: linear-gradient(
                to bottom,
                transparent 0%,
                black 15%,
                black 85%,
                transparent 100%
            );
        }

        .testimonials {
            display: flex;
            flex-direction: column;
            gap: 34px;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .column:hover .testimonials {
            animation-play-state: paused;
        }

        .card {
            background: #fff;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .card .profile {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .card .profile img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .card .profile .name {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .card .profile .role {
            font-size: 14px;
            color: #666;
        }

        .card .content {
            color: #444;
            line-height: 1.5;
            font-size: 17px;
        }

        .column:nth-child(1) .testimonials {
            animation-name: scrollUp;
            animation-duration: 23s;
        }

        .column:nth-child(2) .testimonials {
            animation-name: scrollDown;
            animation-duration: 50s;
        }

        .column:nth-child(3) .testimonials {
            animation-name: scrollUp;
            animation-duration: 30s;
        }

        @keyframes scrollUp {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(-50%);
            }
        }

        @keyframes scrollDown {
            from {
                transform: translateY(-50%);
            }
            to {
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .testimonials-container {
                gap: 16px;
                padding: 16px;
            }
            .column:nth-child(3) {
                display: none;
            }

            .column:hover .testimonials {
                animation-play-state: running;
            }
        }

        @media (max-width: 640px) {
            .column {
                display: none;
            }

            .column:first-child {
                display: block;
            }
        }

/*contadorrrrrrrrrrrrrrrrrr*/

.counter-section{
  padding: 4em ;
}
.counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  background-color: #04040500;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); /* Sombra más suave */
  margin-top: 20px;
  max-width: 80%;
  margin: auto;
  padding: 4em 1rem;
}

.counter-card {
  text-align: center;
  flex: 1;
}

.counter-card h3 {
  font-size: 14.4rem;
  font-weight: 700;
  color: #f5f3f3;
  font-family: poppins, sans-serif;
  margin: 0;
}

.counter-card p {
  font-size: 1.4rem;
  color: #d6d3d3ef;
  margin: 5px 0 0 0;
}

@media (max-width: 768px){
  .counter-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .counter-card {
    width: 100%;
    padding: 25px 0;
    border-bottom: 1px solid #ecf0f1;
  }

  .counter-card:last-child {
    border-bottom: none;
  }

  .counter-card h3 {
    font-size: 70px;
    font-weight: 700
  }
}
/*counter end*/



.discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

.swiper {
  margin-top: 4rem;
  width: 100%;
}

.swiper-slide {
  min-width: 375px;
}

.client__card {
  padding: 5px;
  background-color: var(--extra-light);
  border-radius: 1rem;
  transition: 0.3s;
}

.client__card:hover {
  background-color: var(--primary-color);
}

.client__content {
  padding: 1rem;
  background-color: var(--white);
  border-radius: calc(1rem - 5px);
}

.client__rating {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.client__content p {
  color: var(--text-dark);
}

.client__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client__details img {
  max-width: 50px;
  border-radius: 100%;
}

.client__details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}

.client__card:hover h4 {
  color: var(--white);
}

.client__details h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  transition: 0.3s;
}

.client__card:hover h5 {
  color: var(--extra-light);
}


/*contacto redes sociales*/
.register__container {
  padding-block: 1rem;
  background-color: var(--primary-color);
  border-radius: 2rem;
  
}
.register__content {
  padding-block: 4rem;
  padding-inline: 3rem;
  align-items: center;
}

.register__content h4 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 6rem;
  color: var(--white);
  font-family: "league spartan", sans-serif;
}
.register__content p {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--extra-light);
}

.register__content .register__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.register__content .register__btn-container i{

  padding-right: 20px;
  
}

.social__cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
  
  /* Propiedades para la animación */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out, opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  transform: translateY(-20px);
}

/* Estado cuando el contenedor es visible */
.social__cards-container.visible {
  padding: 1rem 0.1rem 1rem 0.1rem;
  max-height: 1100px; /* Un valor alto para asegurar que se vean todas las tarjetas */
  opacity: 1;
  transform: translateY(0);
}

/* Estilos de la tarjeta individual */
.social__card {
  width: 250px;
  min-height: 250px;
  padding: 1.5rem;
  background-color: #2c2c2c;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Encabezado de la tarjeta */
.card__header {
  margin-bottom: 1rem;
}

.card__header i {
  font-size: 3rem;
  margin-bottom: 0.7rem;
}

.card__header h3 {
  font-size: 1.5rem;
  font-family: "League Spartan", sans-serif;
  color: #fff;
}

/* Cuerpo de la tarjeta */
.card__body p {
  font-size: 0.9rem;
  color: #f3f3f3;
  line-height: 1.4;
}

/* Botón de la tarjeta */
.card__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  color: #fff;
}
.card__button:hover{
  background-color: var(--white);
  color: var(--primary-color)
  
}

/* Estilos específicos y efectos hover para cada tarjeta */
/* Instagram */
.social__card.instagram:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #fcf9fb;
}

.social__card.instagram .card__header i {
  color: #ffffff;
}

.social__card.instagram:hover i, .social__card.instagram:hover h3, .social__card.instagram:hover p {
  color: #fff;
}

/* TikTok */
.social__card.tiktok:hover {
  transform: scale(1.05);
  background: linear-gradient(35deg, #20201f, #3423cc, #fe2c55);
  border-color: #fff;
}

.social__card.tiktok .card__header i {
  color: #fff;
}

/* WhatsApp */
.social__card.whatsapp:hover {
  transform: scale(1.05);
  background-color: #25d366;
  border-color: #f6f8f7;
}

.social__card.whatsapp .card__header i {
  color: #f1f1f1;
}

/* Discord */
.social__card.discord:hover {
  transform: scale(1.05);
  background-color: #5865f2;
  border-color: #f3f3f5;
}

.social__card.discord .card__header i {
  color: #efeff1;
}

/* Responsive design */
@media (max-width: 768px) {
  .register__container{
    margin: 0 1rem 0 1rem;
  }
  .register__content h4 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

/* Estilos para el botón CTA, si es necesario */
.register__btn-container {
  display: flex;
  justify-content: center;
}




/*CTA end*/













@media (max-width: 540px) {
  .banner__container {
    display: flex;
    flex-direction: column;
    margin: 4rem 4rem 4rem 4rem;
  }

  .banner__container .section__header,
  .banner__container .section__description {
    text-align: left;
    margin-inline-start: unset;
  }
  

  .banner__btn {
    justify-content: flex-start;
  }
}
















footer {
  background-color: var(--extra-light);
}


.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
  
  text-align: left;
}
.footer__col a{
  display: flex;
  align-items: start;
  font-family: "Archivo Black", sans-serif;
}
.footer__col h4{
  text-align: left;
}
.footer__socials {
  display: flex;
  align-items:flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--text-dark);

}

.footer__socials a:hover {
  color: grey;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo {
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: #2430da;
  }

  .nav__links li:last-child {
    display: none;
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .nav__btns button {
    padding: 0.75rem 2rem;
    background-color: var(--text-dark);
  }

  header {
    margin-top: 0;
  }

  .header__container {
    grid-template-columns:
      minmax(0, 1fr)
      repeat(5, minmax(0, calc(var(--max-width) / 5)))
      minmax(0, 1fr);
  }

  .header__content {
    grid-column: 2/4;
    padding-block: 8rem;
  }


  .header__content :is(p, h1) {
    text-align: left;
    line-height: 1.5rem;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .header__image {
    grid-column: 4/8;
    position: relative;
    isolation: isolate;
    height: 100%;
  }

  .header__image img {
    position: absolute;
    top: 2rem;
    left: 0;
    height: 100%;
    width: unset;
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(3, 1fr);
  }
  

  .banner__container {
    grid-template-columns: repeat(3, 1fr);

    gap: 1rem;
  }

  .banner__card{
    display: flex;
    flex-direction: column;
  }

  .discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}

@media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}
@media (width < 768px) {
  header {
    margin-top: 140px; /* Ajusta el valor según la altura de tu nav */
  }
}

/*chatbot*/

#chatbot-toggler {
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #cc332e;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 9999;
}
body.show-chatbot #chatbot-toggler {
  transform: rotate(90deg);
}
#chatbot-toggler span {
  color: #fff;
  position: absolute;
}
#chatbot-toggler span:last-child,
body.show-chatbot #chatbot-toggler span:first-child {
  opacity: 0;
}
body.show-chatbot #chatbot-toggler span:last-child {
  opacity: 1;
}
.chatbot-popup {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 100%;
  max-width: 420px;
  height: 80vh; /* Más alto para mostrar todo el chat */
  border-radius: 15px 0 0 0;
  overflow: hidden;
  background: #fff;
   transform: scale(0.2);
  transform-origin: bottom right;
  opacity: 0;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
body.show-chatbot .chatbot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.chat-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 15px 22px;
  background: #040405;
  justify-content: space-between;
}
.chat-header .header-info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-info .chatbot-logo {
  width: 35px;
  height: 35px;
  padding: 6px;
  fill: #040405;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}
.header-info .logo-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.31rem;
  letter-spacing: 0.02rem;
}
.chat-header #close-chatbot {
  border: none;
  color: #fff;
  height: 40px;
  width: 40px;
  font-size: 1.9rem;
  margin-right: -10px;
  padding-top: 2px;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  transition: 0.2s ease;
}
.chat-header #close-chatbot:hover {
  background: #040405;
}
.chat-body {
  padding: 25px 22px;
  gap: 20px;
  display: flex;
  height: 460px;
  overflow-y: auto;
  margin-bottom: 82px;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #ccccf5 transparent;
}
.chat-body,
.chat-form .message-input:hover {
  scrollbar-color: #ccccf5 transparent;
}
.chat-body .message {
  display: flex;
  gap: 11px;
  align-items: center;
}
.chat-body .message .bot-avatar {
  width: 35px;
  height: 35px;
  padding: 6px;
  fill: #fff;
  flex-shrink: 0;
  margin-bottom: 2px;
  align-self: flex-end;
  border-radius: 50%;
  background: #040405;
}
.chat-body .message .message-text {
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95rem;
}
.chat-body .bot-message.thinking .message-text {
  padding: 2px 16px;
}
.chat-body .bot-message .message-text {
  background: #F2F2FF;
  border-radius: 13px 13px 13px 3px;
}
.chat-body .user-message {
  flex-direction: column;
  align-items: flex-end;
}
.chat-body .user-message .message-text {
  color: #fff;
  background: #5350C4;
  border-radius: 13px 13px 3px 13px;
}
.chat-body .user-message .attachment {
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
}
.chat-body .bot-message .thinking-indicator {
  display: flex;
  gap: 4px;
  padding-block: 15px;
}
.chat-body .bot-message .thinking-indicator .dot {
  height: 7px;
  width: 7px;
  opacity: 0.7;
  border-radius: 50%;
  background: #251cd1;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
  animation-delay: 0.2s;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
  animation-delay: 0.3s;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dotPulse {
  0%,
  44% {
    transform: translateY(0);
  }
  28% {
    opacity: 0.4;
    transform: translateY(-4px);
  }
  44% {
    opacity: 0.2;
  }
}
.chat-footer {
  position: absolute;
  flex-shrink: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 15px 22px 20px;
}
.chat-footer .chat-form {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 32px;
  outline: 1px solid #CCCCE5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
  transition: 0s ease, border-radius 0s;
}
.chat-form:focus-within {
  outline: 2px solid #5350C4;
}
.chat-form .message-input {
  width: 100%;
  height: 47px;
  outline: none;
  resize: none;
  border: none;
  max-height: 180px;
  scrollbar-width: thin;
  border-radius: inherit;
  font-size: 0.95rem;
  padding: 14px 0 12px 18px;
  scrollbar-color: transparent transparent;
}
.chat-form .chat-controls {
  gap: 3px;
  height: 47px;
  display: flex;
  padding-right: 6px;
  align-items: center;
  align-self: flex-end;
}
.chat-form .chat-controls button {
  height: 35px;
  width: 35px;
  border: none;
  cursor: pointer;
  color: #706DB0;
  border-radius: 50%;
  font-size: 1.15rem;
  background: none;
  transition: 0.2s ease;
}
.chat-form .chat-controls button:hover,
body.show-emoji-picker .chat-controls #emoji-picker {
  color: #3d39ac;
  background: #f1f1ff;
}
.chat-form .chat-controls #send-message {
  color: #fff;
  display: none;
  background: #5350C4;
}
.chat-form .chat-controls #send-message:hover {
  background: #3d39ac;
}
.chat-form .message-input:valid~.chat-controls #send-message {
  display: block;
}
.chat-form .file-upload-wrapper {
  position: relative;
  height: 35px;
  width: 35px;
}
.chat-form .file-upload-wrapper :where(button, img) {
  position: absolute;
}
.chat-form .file-upload-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.chat-form .file-upload-wrapper #file-cancel {
  color: #ff0000;
  background: #fff;
}
.chat-form .file-upload-wrapper :where(img, #file-cancel),
.chat-form .file-upload-wrapper.file-uploaded #file-upload {
  display: none;
}
.chat-form .file-upload-wrapper.file-uploaded img,
.chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel {
  display: block;
}
em-emoji-picker {
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 350px;
  visibility: hidden;
  max-height: 330px;
  transform: translateX(-50%);
}
body.show-emoji-picker em-emoji-picker {
  visibility: visible;
}
/* Responsive media query for mobile screens */
@media (max-width: 520px) {
  #chatbot-toggler {
    right: 20px;
    bottom: 20px;
  }
  .chatbot-popup {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
  .chatbot-popup .chat-header {
    padding: 12px 15px;
  }
  .chat-body {
    height: calc(90% - 55px);
    padding: 25px 15px;
  }
  .chat-footer {
    padding: 10px 15px 15px;
  }
  .chat-form .file-upload-wrapper.file-uploaded #file-cancel {
    opacity: 0;
  }
}


/*fin chatbot*/