   body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

:root{
	--richardlg:#015656;
}

.crlg{
	color:var(--richardlg) !important;
}

.brlg{
	background:var(--richardlg) !important;
	color:#fff !important;
	border:none !important;
}

.card-img-top {
  width: 100%;
  height: auto;
  aspect-ratio: 10/9; /* Proporción 16:9, puedes usar 4/3 o 3/2 */
  object-fit: cover; /* recorta para que todas queden iguales */
}




.hero-swiper {
  width: 1200px;
  height: 800px;
  margin: 0 auto;
  overflow: hidden;
  background: #000; /* relleno negro */
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* muestra la foto completa */
  object-position: center;
  transform: scale(1); /* "aleja" un poco la imagen */
  transition: transform 0.3s ease;
}






/* Cambiar color y tamaño de las flechas Swiper */
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;         /* Color blanco */
  font-size: 25px !important;     /* Tamaño de la flecha */
}
.swiper-button-prev {
  left: 20px;   /* separa del borde izquierdo */
}
.swiper-button-next {
  right: 20px;  /* separa del borde derecho */
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
  color: #f8f9fa; /* un blanco más suave al pasar el mouse */
}




/* Estilo base de cada opcion */
.card-disponibilidad {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover opcional */
.card-disponibilidad:hover {
  border-color: #ddd;
}

/* Estilo cuando estÃ¡ seleccionada */
.card-disponibilidad.seleccionada {
  border-color: #006aff; /* azul como en la captura */
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 106, 255, 0.2);
}

/*************** SIngle ******************/
    .section { border-bottom: 1px solid #ddd; }
    .header {
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      background: #ffffff;
    }
    .header h3 {
      margin: 0;
      font-size: 1.1rem;
    }
    .chev {
      transition: transform .2s ease;
    }
    .chev.rotate {
      transform: rotate(90deg);
    }
    .content {
      padding: 1rem;
    }

    /* Mobile por defecto cerrado */
    @media (max-width: 991px) {
      .content { display: none; }
    }

    /* Desktop siempre abierto y sin iconos */
    @media (min-width: 992px) {
      .content { display: block !important; }
      .chev { display: none; }
      .header { cursor: default; }
    }
 
/*************** SIngle ******************/


.overview {
    overflow: hidden;
    transition: all 300ms;
}

/* Aplica a cada li dentro de la clase lista-check */
.lista-check li {
    position: relative;
    padding-left: 1.5rem; /* espacio para el icono */
}
.lista-check ul {
       padding-left: 0;
    list-style: none;
}
.lista-check li::before {
    content: "\f26e"; /* CÃƒÆ’Ã‚Â³digo unicode del icono check-circle-fill */
    font-family: "bootstrap-icons";
    color: #198754; /* verde Bootstrap */
    position: absolute;
    left: 0;
    top: 0;
}



/* Aplica a cada li dentro de la clase lista-check */
.lista-xx li {
    position: relative;
    padding-left: 1.5rem; /* espacio para el icono */
}
.lista-xx ul {
       padding-left: 0;
    list-style: none;
}
.lista-xx li::before {
     content: "\f62a"; /* CÃƒÆ’Ã‚Â³digo unicode del icono x-lg */
    font-family: "bootstrap-icons";
    color: #dc3545; /* rojo Bootstrap */
    position: absolute;
    left: 0;
    top: 0;
}

    .navbar-custom {
      background-color: #fff;
      /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
      padding: 0.75rem 1.5rem;
    }

    .logo-text {
      font-weight: 800;
      color: #ff4b00;
      line-height: 1;
      font-size: 1rem;
      text-transform: uppercase;
    }

    .search-box {
      border: 2px solid #ccc;
      border-radius: 30px;
      display: flex;
      align-items: center;
      overflow: hidden;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    .search-box input {
      border: none;
      outline: none;
      padding: 0.6rem 1rem;
      flex: 1;
    }

    .search-box button {
      background-color: var(--richardlg);
      color: white;
      border: none;
      padding: 0.6rem 1.5rem;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .search-box button:hover {
      background-color: #005fd1;
    }

    .nav-icons a {
      color: #63687a;
      margin-left: 1.2rem;
      text-decoration: none;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
    }

    .nav-icons a i {
      margin-right: 5px;
      font-size: 1.1rem;
    }

    .badge-notify {
      background-color: #dc3545;
      color: white;
      font-size: 0.7rem;
      padding: 2px 6px;
      border-radius: 10px;
      margin-left: 4px;
    }

    @media (max-width: 991px) {
      .search-box {
        margin-top: 1rem;
      }
      .nav-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 1rem;
      }
    }







       .topbar {
      border-bottom: 1px solid #e5e7eb;
      background-color: #fff;
      padding: 10px 30px;
    }

    .top-menu {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .top-menu a {
      text-decoration: none;
      color: #1e293b;
      font-weight: 500;
      position: relative;
      font-size: 16px;
      padding-bottom: 5px;
    }

    .top-menu a i {
      margin-left: 6px;
      font-size: 13px;
    }

    .top-menu a.active {
      color: #f43f5e;
    }

    .top-menu a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 100%;
      background-color: #f43f5e;
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .top-menu {
        gap: 20px;
        font-size: 14px;
        justify-content: space-around;
      }
    }





   /*************************************/

  /* Top navbar */
    .navbar {
      background-color: #fff;
      /* border-bottom: 1px solid #e5e7eb; */
      padding: 12px 30px;
      position: relative;
    }

    .navbar nav {
      display: flex;
      gap: 20px;
      position: relative;
    }

    .navbar-item {
      position: relative;
    }

    .navbar a {
      color: #63687a !important;
      text-decoration: none;
      font-weight: 600;
      padding-bottom: 6px;
      display: inline-block;
    }

    .navbar a i {
      margin-left: 6px;
      font-size: 18px;
    }

    .navbar a.active {
      color: #f43f5e;
    }

    .navbar a.active::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background-color: #f43f5e;
    }

    /* Mega Menu */
    .mega-menu {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      width: 90vw;
      background-color: #fff;
      padding: 30px;
      border-top: 1px solid #e5e7eb;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      z-index: 1000;
      flex-direction: row;
      gap: 40px;
    }

    .navbar-item:hover .mega-menu {
      display: flex;
    }

    .mega-menu .left,
    .mega-menu .right {
      flex: 1;
    }

    .left ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .left ul li {
      padding: 8px 0;
      font-weight: bold;
      color: #334155;
      cursor: pointer;
    }

    .left ul li:first-child {
      color: #f43f5e;
      display: flex;
      align-items: center;
    }

    .left ul li:first-child::before {
      content: "ÃƒÂ¢Ã¢â‚¬â€Ã‚Â";
      font-size: 10px;
      color: #f43f5e;
      margin-right: 8px;
    }

    .right {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .attraction {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .attraction img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .attraction-details {
      font-size: 14px;
    }

    .attraction-details b {
      display: block;
      color: #1e293b;
    }

    .attraction-details small {
      color: #6b7280;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .mega-menu {
        flex-direction: column;
      }

      .right {
        grid-template-columns: repeat(2, 1fr);
      }
    }





    /***********************   Home Slider ***********************/


     .hero {
      position: relative;
      background-image: url('/wp-content/themes/richardlg/imagenes/Homepage-Desktop.jpeg'); /* Reemplaza por tu imagen */
      background-size: cover;
      background-position: center;
      height: 100vh;
      color: white;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .category-icons {
      background: #fff;
      border-radius: 1rem;
      padding: 1rem 2rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      z-index: 3;
    }

    .category-icons div {
      text-align: center;
      color: #000;
      font-weight: 600;
      font-size: 15px;
    }

    .category-icons i {
      font-size: 20px;
      display: block;
      margin-bottom: 4px;
    }

    @media (max-width: 768px) {
      .category-icons {
        flex-wrap: wrap;
        padding: 1rem;
      }
    }


    /***********Home Tours *********************/

     .tour-card {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .tour-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .tour-img {
      height: 180px;
      object-fit: cover;
      width: 100%;
    }
    .label-discount {
      font-size: 0.875rem;
      color: #d80000;
      font-weight: bold;
    }
    .originals-badge {
      background-color: #f03c2e;
      color: white;
      font-size: 0.75rem;
      font-weight: bold;
      padding: 2px 6px;
      position: absolute;
      top: 10px;
      left: 10px;
      border-radius: 4px;
    }
    .save-badge {
      background-color: #d80000;
      color: white;
      font-size: 0.75rem;
      padding: 2px 6px;
      border-radius: 4px;
    }


    /***************************** gallery +++++**********+******************/



     .gallery-img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    .gallery-container {
      height: 300px;
      overflow: hidden;
    }
    .small-img-container {
      height: 145px;
      overflow: hidden;
    }
    .overlay-text {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 4px 10px;
      font-weight: bold;
      border-radius: 4px;
    }




    /***************************/


     .info-icon {
      font-size: 1.2rem;
      color: #1a2b49;
      margin-right: 10px;
    }



    /******************** itinerio *************************/
.timeline {
  list-style: none;
  padding-left: 20px;
  border-left: 3px solid #d33;
}
.timeline-item {
  margin-bottom: 20px;
  position: relative;
}
.timeline-icon {
  position: absolute;
  left: -30px;
  top: 0;
  background: #fff;
  border: 2px solid #d33;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  color: #d33;
}
.timeline-content {
  padding-left: 10px;
}




/*************************Booking*******************************/
.card-disponibilidad {
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
}

.card-disponibilidad.active {
  border-color: #007bff; /* Azul Bootstrap */
  box-shadow: 0 0 10px rgba(0,123,255,0.5);
}



.card-disponibilidad {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.card-disponibilidad h5 {
  font-weight: bold;
  font-size: 18px;
}

.card-disponibilidad p {
  font-size: 14px;
  margin-bottom: 8px;
}

.text-blue {
  color: #006ce4;
}

.btn-hora {
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 4px;
}

.btn-hora.active {
  background: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.separator {
  border-top: 1px solid #e5e7eb;
  margin: 15px 0;
}

.precio {
  font-weight: bold;
  font-size: 20px;
}

.precio-detalle {
  font-size: 13px;
  color: #4b5563;
}

.btn-reservar {
  background: #fff;
  border: 1px solid #006ce4;
  color: #006ce4;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: bold;
}

.btn-carrito {
  background: #006ce4;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: bold;
}