@import url("https://fonts.googleapis.com/css2?family=Aubrey&family=Poppins:ital,wght@0,400;0,500;0,700;0,800;1,400;1,700;1,800&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-blue: #3e3ea3;
  --color-black: #2d3134;
  --color-orange: #F29222;
  --color-secundario: #9696b5;
  --color-bg-opacity: rgba(249, 115, 22, 0.3);
  --color-green: #9696b5;
  --color-blueMarine: #132742;
  --margin-sections: 50px;
   --card-w: 310px;
  --card-radius: 18px;
  --shadow: 0 10px 24px rgba(0,0,0,.14);
  --accent: #15c1b3;
  --muted: #6b7280;
  --title: #111827;

  --circle: 350px;          /* diámetro del círculo */
  --lift: 120px;            /* cuánto sobresale por arriba (valor positivo) */
  --headroom: 180px; 
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  /* background: rgb(250, 250, 250); */
}

html {
  font-size: 12px;
  font-family: "Aubrey", cursive;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-weight: 800;
  color: var(--color-black);
}

.navbar-light {
  background: transparent;
}

#navbarSupportedContent .nav-link {
  font-size: 16px;
  font-weight: 400;
  margin: 10px;
}

#navbarSupportedContent .nav-link.active {
  border-bottom: 1px solid var(--color-orange);
}

.book-now {
  background-color: var(--color-blue);
  outline: none;
  border: none;
  color: #fff !important;
  font-size: 16px;
  border-radius: 9px;
}

.book-now:hover {
  background-color: var(--color-blue);
  color: #fff;
}

.book-now:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.book-now i {
  margin: 10px;
}

.home-container{
  /* Tu fondo ya viene por inline style */
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;                 /* ajusta a gusto */
  display: flex;
  align-items: center;              /* centra verticalmente el bloque */
  color: #fff;
}
/* .footer_section{
   position: relative;
  z-index: 1;
  display: flex;
  height: 800px;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */
.wave{
  position: relative;        /* para que z-index funcione */
  z-index: 3;
  --wave-h: clamp(110px, 14vw, 270px);  /* altura de la ola */
  height: var(--wave-h);

  /* el truco: súbela exactamente su propia altura */
  margin-top: calc(-1 * var(--wave-h));
background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__content{
  position: relative;               /* por si usas el overlay opcional */
  padding: clamp(16px, 4vw, 48px) 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.25); /* mejora lectura sobre foto */
  max-width: 1100px;
  padding-top: 226px;
}

/* Eyebrow */
.eyebrow{
  margin: 0 0 .25rem 0;
  font-size: 72px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: .08em;
  opacity: .95;
}

/* ====== H1 en dos líneas: izquierda / derecha ====== */
.home-container .hero-h1{
  color: #fff;
  display: grid !important;         /* fuerza grid por si algo lo sobreescribe */
  grid-auto-rows: auto;
  width: 62%;
  margin: 0;
  font-weight: 800;
  font-size: clamp(56px, 9vw, 120px)!important;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.02;
}

.home-container .hero-h1 span{
  display: block;                   /* cada span en su renglón */
  white-space: normal !important;   /* anula nowrap heredado si lo hubiera */
}

.home-container .hero-h1 span:first-child{ justify-self: start; font-size: inherit !important;} /* izquierda */
.home-container .hero-h1 span:last-child { justify-self: end;  font-size: inherit !important; } /* derecha  */

/* Subtítulo opcional */
.hero-subtitle{
  margin-top: .5rem;
  font-size: clamp(14px, 2.2vw, 20px);
  max-width: 60ch;
  opacity: .95;
}
.social-round{
      width: 44px; height: 44px;
      display: inline-flex; align-items:center; justify-content:center;
      border-radius: 50%;
      background: #fff; color: #111; text-decoration: none;
    }
    .social-round:hover{ opacity:.85; }
/* CONTENEDOR */
    .search-wrap {
      max-width: 720px;
      margin: 3rem auto;
    }

    /* FORM BARRA */
    .search-bar {
      display: flex;
      align-items: stretch;
      background: #ffffff;
      border-radius: 14px;
      overflow: hidden;          /* redondeo limpio */
      box-shadow: 0 6px 18px rgba(0,0,0,.12);
    }

    /* CAMPOS */
    .search-field {
      flex: 1;
      position: relative;        /* para el divisor */
    }
    .search-field input.form-control {
      height: 54px;
      border: 0 !important;      /* sin bordes */
      box-shadow: none !important;
      padding: 0 18px;
      background: #fff;
    }
    /* DIVISOR entre campos (siempre visible) */
    .search-field + .search-field::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 60%;
      background: #d0d5dd;       /* gris medio para que se note */
      pointer-events: none;
    }

    /* BOTÓN */
    .search-btn {
      min-width: 72px;
      border: 0;
      background: #10b3a6;       /* turquesa */
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
    }
    .search-btn:hover { background: #0e9e92; }
    .search-btn svg { width: 22px; height: 22px; fill: #fff; }

    /* PLACEHOLDER más tenue (opcional) */
    ::placeholder { color: #7b8a97; opacity: 1; }
    .hero-turtle {
  position: absolute;
 
  width: 50%;
  z-index: 2;                   /* el form arriba (z-index:3), tortuga debajo */
  pointer-events: none;         /* que no bloquee clics del form */
  margin-top:-138px;
}

.section__img__home {
  position: relative;
}

.section__img__home img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 3px solid rgba(104, 104, 104, 0.541);
}

.icons__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100%;
}

.icons {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icons i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--color-orange);
  padding: 10px;
  margin-right: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 11px 16px -1px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 11px 16px -1px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 11px 16px -1px rgba(0, 0, 0, 0.07);
}

.icons__text {
  display: flex;
  flex-direction: column;
}

.icons__text h4 {
  font-size: 25px;
  font-weight: 800;
  color: var(--color-black);
  padding-top: 10px;
}

.icons__text span {
  font-size: 10px;
  font-weight: 500;
  color: #a5a3a3;
}

/*Search Form Section*/
.form__search__travel {
  background: white;
  display: flex;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group span {
  margin-bottom: 5px;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
}

.form__search__travel .form-group select {
  margin-top: 5px;
  border: none;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.3);
}

.form__search__travel .form-group select:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.btnsearch__content {
  display: flex;
  align-items: center;
  align-content: center;
}

.btn__search__tour {
  background: var(--color-blueMarine);
  color: #fff;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  width: 80%;
}

.btn__search__tour:hover {
  color: #fff;
}

.btn__search__tour:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.container__form__search {
  padding: 30px;
  /* -webkit-box-shadow: 0px 11px 16px -1px rgba(24, 24, 24, 0.07);
  -moz-box-shadow: 0px 11px 16px -1px rgba(44, 44, 44, 0.07);
  box-shadow: 0px 11px 16px -1px rgba(44, 44, 44, 0.123); */
}


#carousel__tours1 {
  position: relative;
}
.carousel__tours1 h2{
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 60px;
  font-weight: 800;
  color: #0EB0A4;
}
/* ====== Owl window (muestra 3) ====== */
#carousel__tours1 .owl-stage-outer{
  overflow: hidden;           /* mantiene solo los visibles */
  padding-top: var(--headroom);
}
#carousel__tours1 .owl-stage{ display:block; }     /* no uses flex */
#carousel__tours1 .owl-item{ padding: 0 18px; overflow: visible; }

/* ====== Card ====== */
.carousel__tours1 .card{
  position: relative;
  width: var(--card-w);
  margin: 0 auto 28px;
  border: none;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  background: #fff;
  overflow: visible;

  /* espacio interno: alto para imagen arriba + botón abajo */
  padding: calc((var(--circle) - var(--lift)) + 20px) 20px 70px;
  /* (circle - lift) deja la mitad debajo del borde + margen extra */
}

/* ====== Imagen circular ====== */
.carousel__tours1 .card .card-img-top{
  position: absolute;
  top: calc(-1 * var(--lift));      /* sobresale hacia arriba */
  left: 50%;
  transform: translateX(-50%);
  width: var(--circle);
  height: var(--circle);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  z-index: 2;
}

/* ====== Título ====== */
.carousel__tours1 .card .card-title{
  margin-top: 24px;   /* ya calculamos el espacio con el padding de .card */
  margin-bottom: 8px;
}
.carousel__tours1 .card .card-title h3{
  font-size: 20px;
  font-weight: 800;
  color: var(--title);
  margin: 0;
  text-align: center;
}

/* ====== Body ====== */
.carousel__tours1 .card .card-body{ padding: 0; }
.carousel__tours1 .price__tours__off{ color: var(--muted); font-size: 13px; }
.carousel__tours1 .price__tours{ font-size: 22px; font-weight: 800; color: #111; }

.carousel__tours1 .btn__book__now{
  position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
  display:inline-flex;                 /* centra vertical y horizontal */
  align-items:center; justify-content:center;
  width:120px; height:44px;            /* alto fijo */
  padding:0;                           /* sin padding vertical */
  line-height:1;                       /* evita descentrado por herencia */
  border-radius:999px; border:none;
  background:#15c1b3; color:#fff; font-weight:700;
  box-shadow:0 12px 26px rgba(21,193,179,.35);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

/* Solo flecha: ocultamos texto y dibujamos › */
.carousel__tours1 .btn__book__now{ font-size:0; }         /* oculta texto visual */
.carousel__tours1 .btn__book__now::after{
  content:"›";                      /* o usa "\203A" */
  font-size:28px; font-weight:800; line-height:1;
}

/* Accesibilidad al pasar mouse */
.carousel__tours1 .btn__book__now:hover{
  transform:translateX(-50%) translateY(-2px);
  filter:brightness(1.05);
}

/* ====== Efecto item central ====== */
#carousel__tours1 .owl-item .card{
  transform: scale(.92);
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
  opacity: .9;
}
#carousel__tours1 .owl-item.center .card{
  transform: scale(1.04);    /* ojo: por esto sube más; el headroom lo cubre */
  opacity: 1;
}
/* Botones de navegación */
#carousel__tours1 .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* para que no tape el contenido */
}

#carousel__tours1 .owl-nav button {
  background: #fff;
  color: #15c1b3 !important;
  font-size: 32px !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  pointer-events: all; /* vuelve clickeables los botones */
  transition: 0.2s ease;
}

 .owl-item .item {
                transform: translate3d(0, 0, 0);
              
            }

            #carousel__tours1 .owl-item .item .card {
                -webkit-transition: 0.3s;
                -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
                box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
                -o-transition: 0.3s;
                transition: 0.3s;
                -webkit-transform: scale(0.80);
                -ms-transform: scale(0.80);
                transform: scale(0.80);
            }

            #carousel__tours1 .owl-item.center .item .card {
                -webkit-transform: scale(1.15);
                -ms-transform: scale(1.15);
                transform: scale(1.15);
            }

            #carousel__tours1 .owl-nav {
                text-align: center;
                
            }

            #carousel__tours1 .owl-nav button {
                font-size: 24px !important;
                margin: 10px;
                color: #033aff !important;
            }

.top__destinations {
  margin-top: var(--margin-sections);
}

.text-orange-experience {
  display: flex;
  text-align: center;
  justify-content: flex-start;
  background-color: #F29222;
  height: 761px;
  padding-top: 40px;
  color: #fff;
}

.ruins-experiences picture img {
  position: absolute;
  width: 100%;
  margin-top: -650px;
  margin-bottom: 750px;

}

.top__destinations h2 {
  font-size: 30px;
  font-weight: 800;
}
 /* Sección a ancho completo del viewport (full-bleed) */
            .destinos {
                position: relative;
            }

            .destinos--full {
                width: 100vw;
                margin-left: calc(50% - 50vw);
                margin-right: calc(50% - 50vw);
                overflow-x: clip;
                /* o hidden si prefieres compat. amplia */
            }

            /* Fondo: imagen completa, sin recortes ni sombras */
            .destinos__bg {
                display: block;
                width: 100%;
                height: auto;
                /* respeta la altura del PNG (olas arriba/abajo) */
                pointer-events: none;
                user-select: none;
            }

            /* Contenido encima del PNG */
            .destinos__content {
                position: absolute;
                inset: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding-top: clamp(28px, 6vw, 80px);
                /* separa el título de la ola superior */
            }
            .cta-content{
                 position: absolute;
                inset: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .cta-content h2{
                font-size: 80px;
                font-weight: 800;
                font-style: italic;
                margin-bottom: 60px;
            }
            .cta-content .btn{
                padding: 20px;
                width: 30%;
                border-radius: 50px;
                border:none;
                background-color: #0EB0A4;
                font-size: 25px;
                font-weight: 600;
            }

            /* Título blanco centrado */
            .destinos__title {
                margin: 0;
                color: #fff;
                font-weight: 800;
                text-align: center;
                font-size: clamp(22px, 3.2vw, 36px);
                margin-top: 208px;
            }

            .map-container {
                position: relative;
                display: inline-block;
                margin-top: 90px;
            }

            .maps {
                max-width: 85%;
                display: block;
            }

            /* Destinos (coordenadas relativas al mapa) */
            .destino {
                position: absolute;
                transform: translate(-50%, -100%);
                /* la PUNTA del pin cae en la coordenada */
                font-weight: 700;
                color: #fff;
                font-size: clamp(22px, 1.6vw, 16px);
                white-space: nowrap;
                padding-top: clamp(18px, 2.2vw, 24px);
                /* espacio para que no tape el pin */
                text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
            }

            /* El pin */
            .destino::before {
                content: "";
                position: absolute;
                left: -32%;
                top: 152%;
                transform: translate(-50%, -100%);
                width: clamp(14px, 3vw, 80px);
                height: clamp(22px, 4vw, 90px);
                background-repeat: no-repeat;
                background-size: contain;
                /* SVG embebido (pin blanco con borde y círculo) */
                background-image: url("/Assets/Img/Portadas/pin.png");
                filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
            }

            /* Coordenadas de cada destino sobre el mapa */
            .holbox {
                top: -1%;
                left: 87%;
            }

            .merida {
                top: 14%;
                left: 47%;
            }

            .isla {
                top: 12%;
                left: 106%;
            }

            .cancun {
                top: 19%;
                left: 89%;
            }

            .cozumel {
                top: 33%;
                left: 90%;
            }

            .bacalar {
                top: 68%;
                left: 49%;
            }

            .tulum {
                top: 50%;
                left: 51%;
            }

            .why-choose-us {
                --accent: #01b7a8;
                --mint: #A3F5EF;
                --ocean: #A4EBFF;
                --sky: #C0E2FF;
                --text: #0b2239;
                min-height: 50vh;
            }

            .why-choose-us .section-title {
                color: var(--accent);
                font-weight: 800;
                letter-spacing: .3px;
                font-size: 45px;
            }

            .why-choose-us .feature-card {
                border: 0;
                border-radius: 2.25rem;
                padding: 1.25rem 1.5rem;
                box-shadow: 0 8px 24px rgba(2, 28, 45, .08);
                display: flex;
                align-items: center;
                gap: 1rem;
                height: 100%;
                transition: transform .2s ease, box-shadow .2s ease;
                height: 200px;
                margin-left: 1.25rem;
            }

            .why-choose-us .feature-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 28px rgba(2, 28, 45, .12);
            }

            .why-choose-us .feature-card.mint {
                background: var(--mint);
            }

            .why-choose-us .feature-card.ocean {
                background: var(--ocean);
            }

            .why-choose-us .feature-card.sky {
                background: var(--sky);
            }

            .why-choose-us .icon-badge {
                width: 56px;
                height: 56px;
                min-width: 56px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--accent);
                color: #fff;
                box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .55);
            }

            .why-choose-us .feature-title {
                margin: 0 0 .25rem 0;
                font-weight: 700;
                color: var(--text);
            }

            .why-choose-us .feature-text {
                margin: 0;
                color: #4b5b6b;
                font-size: .95rem;
                line-height: 1.35;
            }
.cta{
  position: relative;
}
            

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 5vw);
  grid-gap: 15px;
}

figure {
  margin: 0;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
}

.gallery__item--2 {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 4;
  grid-row-end: 7;
}

.gallery__item--3 {
  grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 7;
}

.gallery__item--4 {
  grid-column-start: 7;
  grid-column-end: 13;
  grid-row-start: 1;
  grid-row-end: 4;
}

.gallery__item--5 {
  grid-column-start: 7;
  grid-column-end: 9;
  grid-row-start: 4;
  grid-row-end: 7;
}

.gallery__item--6 {
  grid-column-start: 9;
  grid-column-end: 13;
  grid-row-start: 4;
  grid-row-end: 7;
}

.gallery__item {
  position: relative;
}

.gallery__item img {
  filter: hue-rotate(10deg) saturate(120%);
}

.gallery__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.062);
}

/* .caption{
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px;
} */
.title__destination__grid {
  font-size: 18px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
  font-weight: 800;
}

.rating {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 5px;
  border-radius: 10px;
  width: 40px;
  text-align: center;
}

.rating__box {
  display: inline-block;
}

.rating__box span {
  color: var(--color-orange);
  font-weight: bold;
}

.text__more {
  margin-top: 500px
}

.text__more .img__text__more {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.col__text__more {
  padding: 40px;
}

.title__text__more {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-black);
}

.col__text__more .description__text__more {
  font-size: 18px;
  font-style: italic;
  color: #a5a3a3;
}

.testimonial {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.testimonial__name {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 700;
}

.testimonial__position {
  font-size: 14px;
  color: #a5a3a3;
}

.testimonial__rating i {
  font-size: 12px;
  color: var(--color-orange);
}

.newsletter__section {
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secundario);
  padding: 80px;
  text-align: center;
  border-radius: 20px;
  width: 90%;
  height: 300px;
  display: flex;
  flex-direction: column;
  margin-top: var(--margin-sections);
}

.triangule {
  position: absolute;
  top: -30px;
  left: 111px;
  width: 0;
  height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-bottom: 55px solid var(--color-blue);
  transform: rotate(350deg);
}

.circle {
  position: absolute;
  top: 76%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: var(--color-blue);
  border-radius: 50%;
  overflow: hidden;
}

.circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--color-blue);
}

.newsletter__section .title__newsletter {
  color: white;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.txt__newsletter {
  color: white;
  font-size: 14px;
  text-align: center;
}

.newsletter__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter__form .input__newsletter {
  padding: 15px;
  border-radius: 10px;
  border: none;
  margin-right: 5px;
  width: 500px;
}

.newsletter__form .btn__newsletter {
  background-color: var(--color-orange);
  border: none;
  cursor: pointer;
  margin-left: -55px;
  padding: 4px;
  border-radius: 10px;

}

.newsletter__content button i {
  color: white;
  font-size: 12px;
  margin: 10px;
}

.newsletter__form {
  display: flex;
  align-items: center;
}

.newsletter__form input[type="email"] {
  margin-right: 5px;
}

/*footer template*/
.footer__section {
  margin: var(--margin-sections);
}

.footer__section ul {
  padding: 20px 0;
}

.list-group-item {
  border: none;
  padding: 0 0 10px;
  background-color: transparent;
}

.list-group-item a {
  color: #a5a3a3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.title__footer {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
}

.description__footer {
  color: #a5a3a3;
  font-size: 14px;
  padding: 20px 0;
}

.email__footer a {
  color: var(--color-orange);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.footer__row__recerved {
  border-top: 1px solid #d8d7d7;
  padding-top: 10px;
}

.footer__row__recerved span {
  color: #a5a3a3;
}

.footer__row__recerved a {
  text-decoration: none;
  color: #a5a3a3;
}

.footer__row__recerved a:hover {
  color: var(--color-orange);
}

.logo__footer {
  width: 50px;
  height: 50px;
}

.social__icons {
  display: flex;
  justify-content: center;
}

.social__icons i {
  font-size: 16px;
  margin: 0 10px;
  filter: grayscale(100%);
}

/*about*/
.bg-light-blue {
  background-color: #eaf9f7;
}

.bg-div-about {
  background-color: var(--color-bg-opacity);
}

.bg-icon-about {
  color: white;
}

.bg-green {
  background-color: var(--color-green);
  /* Usa el color exacto de fondo de tu diseño */
}

.text-pink {
  color: var(--color-blue);
}

/*media queries*/
@media screen and (min-width:1024px) {
  .circle {
    left: 90%;
  }
}

@media screen and (min-width:767px) and (max-width:1023px) {
  .section__title h1 {
    padding: 0;
    font-size: 40px;
  }

  .btn__search__tour {
    margin-top: 30px;
    width: 40%;
  }

  .circle {
    display: none;
  }
}

@media screen and (max-width:767px) {
  .container {
    max-width: 700px !important;
    padding: 0 20px;
  }

  .section__title h1 {
    font-size: 40px;
    padding: 0;
  }

  .icons__info {
    margin-top: 5%;
    flex-direction: inherit;
    justify-content: center;
  }

  .icons {
    margin-right: 30px;
  }

  .btn__search__tour {
    margin-top: 30px;
    width: 40%;
  }

  #carousel__tours .owl-nav {
    position: relative;
    top: 0;
    right: 0;
  }

  .col__text__more {
    padding: 0 10px;
  }

  .title__text__more {
    font-size: 25px;
  }

  .col__text__more .description__text__more {
    font-size: 13px;
  }

  .circle {
    display: none;
  }

  .gallery {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 5vw);
    grid-gap: 4px;
  }

  .gallery__item--1 {
    grid-column-start: 6;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 5;
  }

  .gallery__item--2 {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 9;
    grid-row-end: 13;
  }

  .gallery__item--3 {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 9;
  }

  .gallery__item--4 {
    grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 5;
    grid-row-end: 9;
  }

  .gallery__item--5 {
    grid-column-start: 6;
    grid-column-end: 9;
    grid-row-start: 9;
    grid-row-end: 13;
  }

  .gallery__item--6 {
    grid-column-start: 9;
    grid-column-end: 13;
    grid-row-start: 5;
    grid-row-end: 13;
  }

  .rating {
    top: 10px;
    left: 10px;
  }

  .title__destination__grid {
    padding: 9px 20px;
  }
}

@media screen and (max-width:600px) {
  .newsletter__section {
    width: 100%;
  }

  .newsletter__content .input__newsletter {
    max-width: 400px;
  }
}

@media screen and (max-width:540px) {
  .text__more .row {
    flex-direction: column-reverse;
  }

  .testimonial {
    display: none;
  }
}

@media screen and (max-width:360px) {
  .hero-turtle{
    width: 100%;
    margin-top: 38px;
    margin-left: -23px;
  }
  .carousel__tours1 .card .card-img-top{
    width: 256px;
    height: 256px;
  }
  #carousel__tours1 .owl-nav button{
    display: none;
  }
  .bg1{
    height: 500px;
  }
  .destinos__title {
    margin-top: 55px;
  }
  .map-container{
    margin-top:40px;
    margin-left: 72px;
  }
  .maps{
    width: 80%;
  }
  .destino{
    transform: translate(-129%, -100%);
  }
  .destino::before {
    left: 43%;
  }
  .merida{
    top: 10%;
    left: 50%;
    font-size: 15px;
  }
  .holbox{
    top: -4%;
    left: 89%;
    font-size: 15px;

  }
   .isla{
    top: 7%;
    left: 107%;
    font-size: 15px;

  }
  .cancun{
    left:84%;
    font-size: 15px;
  }
  .cozumel{
    left: 93%;
    font-size: 15px;
  }
  .bacalar{
    left: 37%;
    font-size: 15px;
  }
  .tulum{
    font-size: 15px;
  }
  .cta{
    margin-bottom: 255px;
  }
  .cta-content h2{
    font-size: 25px;
    margin-bottom: 40px;
  }
  .cta-content .btn{
    padding: 5px 10px;
    font-size: 18px;
    width: 80%;
  }
  .menu:has(.navbar-collapse.show) {
    background: #ffffff; /* rojo */
  }
  .icons__info {
    display: none;
  }

  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(36, 5vw);
    grid-gap: 4px;
  }

  .gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 7;
  }

  .gallery__item--2 {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 7;
    grid-row-end: 13;
  }

  .gallery__item--3 {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 13;
    grid-row-end: 19;
  }

  .gallery__item--4 {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 19;
    grid-row-end: 25;
  }

  .gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 25;
    grid-row-end: 31;
  }

  .gallery__item--6 {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 31;
    grid-row-end: 37;
  }

  .triangule {
    display: none;
  }

  .newsletter__section {
    padding: 0;
    height: 150px;
  }

  .newsletter__section .title__newsletter {
    font-size: 26px;
  }

  .txt__newsletter {
    display: none;
  }

  .newsletter__content {
    padding-bottom: 10px;
  }

  .newsletter__section .input__newsletter {
    width: 250px;
  }

  .footer__row__recerved {
    display: none !important;
  }
}