/*
Theme Name: LuzAndina
Theme URI: https://example.com/luzandina
Author: Mundo Andino Expedition
Author URI: https://example.com
Description: Un tema moderno y ligero inspirado en los Andes, creado para proyectos de turismo y viajes.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luzandina
Tags: tourism, travel, modern, responsive, clean
*/

/*
 * Importa las fuentes de Google Fonts
 * Puedes usar un plugin para esto o pegarlo en el <head> de tu tema
 */


body 
    font-family: 'Arial', sans-serif;
    /* Define el color de fondo */
    background-color: #f8f9fa; /* Un gris claro, común en diseños modernos */
    
    /* Define el color de texto por defecto */
    color: #333;
    
    /* Elimina el margen por defecto del navegador */
    margin: 0;
    
    /* Asegura que el contenido ocupe toda la ventana del navegador */
    min-height: 100vh;
}



/* Elimina el subrayado de todos los enlaces del menú */
.main-nav a {
    text-decoration: none; 
    padding-right: 10px;
}

/* Opcional: añade un efecto visual al pasar el mouse por encima */
.main-nav a:hover {
    color: #ff8c00; /* Cambia a un color de tu marca */
}

/* Tipografías */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
p, ul, li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #0d6efd;
}
/* Sticky navbar shadow */
.sticky-top {
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1020; /* mayor que otros elementos */
}

.fondonavbar {
  background-color: #0f3706;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  border-radius: 10px;
}

 #hero-carousel .carousel-item img {
    height: 100vh;
    object-fit: cover;
  }
  #hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }
  .text-shadow {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  }


/*estilos*/
.tour-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-10px);
}
.tour-img img {
  border-radius: 15px;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-img img {
  transform: scale(1.05);
}
.tour-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0e640b;
  color: #fdd01f;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}
.tour-title {
  font-size: 18px;
  font-weight: 600;
}
.tour-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  max-height: 95px;
  overflow: hidden;
}
.tour-price {
  font-size: 16px;
  font-weight: bold;
  color: #2a7a2a;
}


/*estilos 2 */
.tour-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.tour-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.tour-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-8px);
}
.tour-img-box {
  position: relative;
}
.tour-img-box img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  display: block;
}
.tour-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e63946;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: bold;
}
.tour-content {
  padding: 20px;
}
.tour-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1f600d;
  text-transform: uppercase;
  text-align: center;
}
.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
}
.tour-excerpt {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #444;
}
.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tour-price {
  font-size: 16px;
  font-weight: 700;
  color: #2a9d8f;
}
.tour-btn {
  padding: 10px 18px;
  background: #2a9d8f;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.tour-btn:hover {
  background: #21867a;
}




.custom-page-hero {
  position: relative;
  width: 100%;
  height: 70vh; /* Ajusta altura */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-page-overlay {
  background: rgba(0, 0, 0, 0.4); /* Oscurece imagen */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-page-title {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .custom-page-title {
    font-size: 2rem;
    padding: 0 10px;
  }
}

.custom-page-content {
  max-width: auto;
  margin: 2rem auto;
  padding: 0 15px;
}

  

/* Estilos base para el contenido dentro del article */
.article-content {
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
  max-width: auto;
  margin: 0 auto;
  padding: 1rem;
  word-break: break-word;
}

/* Párrafos */
.article-content p {
  margin-bottom: 1.2em;
  text-align: justify; /* opcional */
}

/* Listas ordenadas y no ordenadas */
.article-content ul,
.article-content ol {
  margin: 1em 0 1em 2em;
  padding: 0;
}

.article-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

/* Imágenes alineadas dentro del texto */
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px; /* opcional */
  display: block;
  border-radius: 6px;
}
.article-content figure {
  margin: 1.5em auto;
  text-align: center;
}
.article-content figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5em;
}

/* Alineaciones que WordPress agrega */
.article-content .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

.article-content .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

.article-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.article-content ul,
.article-content ol {
  margin: 1.2em 0 1.2em 2em;
  padding-left: 1em;
}
.article-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

/* Citas */
.article-content blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #555;
  background: #f9f9f9;
  font-style: italic;
  color: #444;
}

/* Títulos dentro del contenido */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin: 1.5em 0 0.8em;
  font-weight: bold;
  line-height: 1.3;
}


/* Estilos para el contenido */
.article-content h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 2em 0 1em;
  line-height: 1.3;
  color: #222;
}

.article-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1.8em 0 1em;
  line-height: 1.3;
  color: #333;
}

.article-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5em 0 0.8em;
  line-height: 1.3;
  color: #444;
}

.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1.2em 0 0.6em;
  line-height: 1.4;
  color: #555;
}

/* Tablas */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.article-content table th,
.article-content table td {
  border: 1px solid #ddd;
  padding: 10px;
}
.article-content table th {
  background: #f3f3f3;
  font-weight: bold;
}




/* Hero de Single Post */
.single-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    color: #fff;
    height: 100vh; /* Ajustado para que ocupe toda la altura de la vista */
    display: flex;
    align-items: flex-end; /* Alinea el contenido al final (parte inferior) */
    padding-bottom: 2rem;
}

.single-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.single-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.single-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Estilos para los nuevos elementos */
.hero-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
}

.hero-price {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    gap: 15px;
    align-items: center;
}
.tour-price1 {
    font-size: 2rem;
    font-weight: 800;
    color: #f7b12d;
    font-family: sans-serif;
}

.tour-duration {
    margin: 0;
    font-weight: bold;
    font-size: 1.1rem;
}
.FuentePT {
	font-family: "Times new roman", sans-serif;
	font-weight: 600;
}
.FuentePT2 {
	font-family: "Arial bold", cursive;
    font-weight: 800;
    color: #d9f99d;
}
.FuentePT3 {
	font-family: "Times new roman", sans-serif;
    font-weight: 500;
    font-size: 1rem;
}
.hero-meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-basis: calc(50% - 10px); /* Dos columnas en móvil */
}

.meta-icon {
    font-size: 1.5rem;
}

.meta-text {
    font-size: 0.95rem;
    line-height: 1.2;
}

/* Media Queries para Responsive Design */
@media (min-width: 768px) {
    .single-hero-title {
        font-size: 2rem;
    }
    
    .hero-details-container {
        justify-content: flex-start;
        gap: 30px;
    }
    
    .hero-meta-items {
        gap: 30px;
    }
    
    .meta-item {
        flex-basis: auto; /* Vuelve a la disposición normal en escritorio */
    }
}

@media (min-width: 992px) {
    .single-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
}



/* Sección principal */
.tour-details-section {
    padding: 20px 0;
}

.tour-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tour-main-content {
    flex: 1; /* Ocupa el espacio disponible */
    min-width: 300px;
}

.tour-booking-sidebar {
    width: auto; /* Ancho fijo para el formulario */
    background-color: #dbeec7;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Título y descripción */
.tour-description-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1b7308;
}

.tour-description-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Menú de navegación (Scrollspy) */
.tour-scrollspy-nav-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tour-scrollspy-btn {
    background-color: #ff8c00;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.tour-scrollspy-btn:hover, .tour-scrollspy-btn.active {
    background-color: #e57e00;
    color: #fff;
}

/* Formulario de reserva */
.booking-price-box {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.booking-price-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #d35e25;
}

.per-person {
    font-size: 0.8rem;
    font-weight: normal;
    color: #666;
}

.lowest-price-guarantee {
    font-size: 1rem;
    color: #095110;
    text-decoration: none;
}

.booking-form-container .form-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.booking-form-container .form-group {
    margin-bottom: 15px;
}

.booking-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.booking-form-container input.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Estilos específicos para el input de número */
/*.input-group {
    display: flex;
}
*/

.input-group input {
    flex: 1;
}

.input-group-append .btn-number {
    background-color: #e9ecef;
    border: 1px solid #ccc;
    border-radius: 0;
    cursor: pointer;
    padding: 5px 10px;
}

.input-group-append .btn-number:first-child {
    border-radius: 0 4px 4px 0;
}

.input-group-append .btn-number:last-child {
    border-radius: 0 4px 4px 0;
}

.subtotal-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subtotal-amount {
    font-size: 1.2rem;
    font-weight: bold;
}

.book-now-btn {
    width: 100%;
    background-color: #ff8c00;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-now-btn:hover {
    background-color: #e57e00;
}

.book-now-btn2 {
    width: 100%;
    background-color: #194211;
    color: #fff;
    border: none;
    margin-top: 10px;
    padding: 13px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-now-btn2:hover {
    background-color: #198754;
}


/* Media Queries para responsividad */
@media (max-width: 991px) {
    .tour-details-container {
        flex-direction: column; /* Apila las columnas */
    }
    
    .tour-booking-sidebar {
        width: 100%; /* El formulario ocupa todo el ancho */
    }
}



/* Estilos del Acordeón personalizado */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-accordion .accordion-header {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.custom-accordion .accordion-button {
    color: #0c571f;
  font-size: 1rem;
  font-weight: 700;
  background-color: #cbe8c8;
  font-family: Arial;
  text-transform: uppercase;
    padding: 15px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #ff8c00;
    color: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-button::after {
    filter: invert(60%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease-in-out;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(100%);
}

.custom-accordion .accordion-body {
    line-height: 1.22em; 
    font-weight: 400;
    font-family: auto;
    text-align: justify;
}



/* Contenedor de las inclusiones */
.inclusions-container {
    padding: 10px 0;
}

.inclusions-item {
    margin-bottom: 25px;
}

/* Estilos de los títulos con iconos */
.inclusions-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusions-title i {
    font-size: 1.5rem;
}

/* Colores por tipo */
.inclusions-item.includes .inclusions-title {
    color: #28a745; /* Verde para Inclusiones */
}

.inclusions-item.excludes .inclusions-title {
    color: #dc3545; /* Rojo para No Incluye */
}

.inclusions-item.recommendations .inclusions-title {
    color: #ffc107; /* Amarillo para Recomendaciones */
}

/* Contenido del campo ACF */
.inclusions-content p,
.inclusions-content ul {
    font-size: 1rem;
    line-height: 1.6;
}





/* Estilos para la sección "Qué llevar" */
.what-to-bring-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 10px;
}

.what-to-bring-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex !important;
    align-items: center !important; 
    gap: 10px;
}

.what-to-bring-list li i {
    color: #ff8c00; 
    font-size: 1.1rem;
}


/* Estilos para el Acordeón de FAQs */
.custom-faq-accordion .accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.custom-faq-accordion .accordion-header {
    background-color: #f7f7f7;
}

.custom-faq-accordion .accordion-button {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 20px;
    background-color: transparent;
    border: none;
    transition: background-color 0.3s ease;
}

.custom-faq-accordion .accordion-button:hover {
    background-color: #f0f0f0;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background-color: #ff8c00;
    color: #fff;
    box-shadow: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(100%);
}




/* Contenedor principal de la galería */
.tour-gallery {
    margin-bottom: 2rem;
}

/* Estilo de la imagen grande */
.tour-main-image {
    border-radius: 8px;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* Contenedor de las miniaturas */
.tour-thumbnails-container {
    position: static;
    display: flex !important;
    justify-content: center;
    gap: 10px !important;
    margin-top: 15px;
    margin-bottom: 0;
    flex-wrap: wrap; /* Asegura que las miniaturas se envuelvan si no caben en una fila */
    background-color: #000;
}

/* Estilo de las miniaturas */
.tour-thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.tour-thumbnails-container button {
    padding: 0;
    width: auto;
    height: auto;
    opacity: 1;
}

/* Efecto al pasar el cursor sobre la miniatura */
.tour-thumbnail-img:hover {
    border-color: #ff8c00;
    opacity: 1;
}

/* Efecto de la miniatura activa (seleccionada) */
.tour-thumbnails-container button.active .tour-thumbnail-img {
    border-color: #ff8c00;
    opacity: 1;
    transform: scale(1.05);
}

/* Media Query para pantallas pequeñas */
@media (max-width: 768px) {
    .tour-main-image {
        height: 300px;
    }

    .tour-thumbnail-img {
        width: 60px;
        height: 60px;
    }
}





.bg-dark111 {
    background-color: #0f3706;
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgb(15, 55, 6) !important;
}

/* Estilos de la sección "También te puede interesar" */
.related-tours-section {
    padding: 20px 0;
    margin-top: 40px;
}


/* Animación para el título */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tour-section-info {
    padding: 2rem 0;
}
.text-danger {
  --bs-text-opacity: 1;
  color: rgb(103, 117, 3) !important;
}
.section-title {
    animation: fadeIn 1.5s ease-in-out;
}
.homeh2 {
  font-size: 3rem;
  color: #ffa759;
}

.section-text {
    color: #444; /* Un color de texto estándar y legible */
    line-height: 1.22;
    max-width: auto;
    margin: 0 auto; /* Centra el párrafo */
    padding: 0 15px;
}
.section-title {
    color: #278214;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    position: relative; /* Esencial para posicionar las líneas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title::before,
.section-title::after {
    content: '';
    flex-grow: 1; /* Hace que la línea se extienda */
    height: 12px;
    background-color: #e67a39; /* El mismo color del título */
    margin: 0 1rem;
    max-width: 120px; /* Limita el largo de la línea */
}

/* Carrusel de tarjetas */
#relatedToursCarousel .carousel-inner {
    padding: 10px 0;
}

.related-tours-row {
    display: flex;
    justify-content: center;
}

/* Estilos de las tarjetas */
.related-tour-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-tour-card-style {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    transition: all 0.3s ease;
}

.related-tour-card-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.related-card-img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.related-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #07512f;;
}

.related-card-duration {
    font-size: 0.9rem;
}

.related-card-included {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.related-card-excerpt {
    font-size: 0.9rem;
    color: #6c757d;
    min-height: 4.7rem; 
    font-family: arial;
}

/* Contenedor de íconos de inclusión */
.related-icons-container {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    gap: 5px;
}

.included-icon {
    color: #ff8c00;
    font-size: 1.1rem;
}

/* Estilos del pie de tarjeta (footer) */
.related-tour-card-style .card-footer {
    background: transparent;
    border-top: none;
    padding: 1rem;
}

.related-view-more-btn {
    background-color: #134d32;
    border: none;
    color: #ff8c00;
    font-weight: bold;
    padding: 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 10px 10px;
}

.related-view-more-btn:hover {
    color: #e67e00;
    transform: translateX(5px);
}

.related-card-price {
    font-size: 0.95rem;
    color: #6c757d;
}

.related-card-price .price-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff8c00;
}
.text-muted {
  --bs-text-opacity: 1;
  color: #0d9556;
}

/* Flechas de navegación y Media Queries */
.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-control-prev-related,
.carousel-control-next-related {
    position: static;
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-related:hover,
.carousel-control-next-related:hover {
    background-color: #ff8c00;
    opacity: 1;
}

/* Opcional: Iconos de flecha dentro de los botones */
.carousel-control-prev-icon-related,
.carousel-control-next-icon-related {
    filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
    .related-tours-section .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {
    .related-tours-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* Estilos para hacer que el formulario de reserva sea "sticky" */
@media (min-width: 992px) {
    .tour-booking-sidebar {
        position: -webkit-sticky; /* Para compatibilidad con Safari */
        position: sticky;
        top: 20px; /* Distancia desde la parte superior de la pantalla */
        z-index: 1000; /* Asegura que se mantenga por encima de otros elementos */
    }
}






/* Estilos para la sección de USP (Unique Selling Proposition) */
.usp-section {
padding: 60px 0;
}

.usp-headline {
font-size: 1.5rem;
font-weight: bold;
color: #333;
margin-bottom: 1.5rem;
line-height: 1.3;
text-align: center;
}

.usp-subheadline {
font-size: 1.1rem;
color: #555;
margin-bottom: 2rem;
text-align: center;
}

.usp-contact-btn {
font-weight: bold;
border: none;
}

.usp-phone-link {
text-decoration: none;
color: #555;
font-weight: bold;
}

.usp-phone-link i {
font-size: 1.2rem;
}

.usp-image-container {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.usp-main-image {
display: block; /* Para evitar espacios extra debajo de la imagen */
width: 100%;
height: auto;
object-fit: cover; /* Asegura que la imagen cubra el contenedor sin deformarse */
}

/* Ajustes para pantallas más pequeñas (opcional, Bootstrap ya es responsive) */
@media (max-width: 991.98px) {
.usp-headline {
font-size: 1.8rem;
}
.usp-actions {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.usp-contact-btn {
width: 100%;
text-align: center;
}
}





/* Estilos generales de la sección */
.monthly-offers-section {
    background-color: #f7f7f7;
}

.offers-title {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Contenedores de las ofertas */
.offer-card {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.offer-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Efecto de superposición y texto */
.offer-overlay,
.offer-overlay-right {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 1rem;
}

.offer-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.offer-overlay-right {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.offer-title, .offer-title-right {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.offer-title {
    font-size: 2rem;
}

.offer-title-right {
    font-size: 2.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

/* Etiquetas de oferta y precios */
.offer-tag {
    position: absolute;
    top: 15px;
    left: -10px;
    background-color: #e30713;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px 5px 25px;
    transform: rotate(-45deg);
    transform-origin: top left;
}

.offer-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e30713;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.offer-price-box {
    text-align: right;
    font-weight: bold;
}

.offer-price-before {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #ccc;
    display: block;
}

.offer-price-now {
    font-size: 1.5rem;
}

.offer-price-now .price-value {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Íconos de inclusión (para la tarjeta de la derecha) */
.offer-icons-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.includes-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.offer-icons {
    gap: 15px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item i {
    font-size: 1.8rem;
    margin-bottom: 5px;
}



/* Estilos para la sección de destinos */
.destination-section {
    background-color: #fff;
}

/* Estilos del título y el párrafo */
.destination-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e30713;
}

.destination-quote {
    font-size: 1rem;
    color: #777;
    border-left: none; /* Asegura que no tenga el borde de blockquote por defecto */
    padding-left: 0;
    margin-bottom: 0;
}

/* Estilos para las tarjetas de imagen */
.destination-card {
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-img {
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.7); /* Oscurece la imagen para que el texto resalte */
}

/* Estilos para el texto de la ciudad sobre la imagen */
.destination-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 10;
}