:root {
  --la-primary: #0d6efd;
  --la-dark: #0b0b0c;
}
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; }
.navbar-brand img { max-height: 40px; height: auto; }
.navbar .menu-item a { padding: .5rem 1rem; display: block; }
.hero {
  min-height: 60vh;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
}
a {
    text-decoration: none;
}
 /* unvisited link */
a:link {
  color: #fd992e;
}

/* visited link */
a:visited {
  color: #3ef923;
}

/* mouse over link */
a:hover {
  color: #fffb19;
}

/* selected link */
a:active {
  color: #13f421;
} 
.hero .headline { text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.card-tour img { aspect-ratio: 3/2; object-fit: cover; }
footer a { text-decoration: none; }

/* ============================
   TIPOGRAFÍA & TEXTOS
============================= */
body {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Times New Roman", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
}
h1 { font-size: 1.2rem; }
h2 { font-size: 1.77rem; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .5rem; }

/* ============================
   SECCIONES
============================= */
.section-title {
  font-size: 2rem;
  font-weight: 700;
}
.hero {
  background-size: cover;
  background-position: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.cta {
  background: var(--la-primary, #0d6efd);
}

/* ============================
   CARDS & TOURS
============================= */
.card-tour img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.card-tour .card-body {
  padding: 1rem;
}

/* ============================
   TESTIMONIOS
============================= */
.testimonial {
  border-left: 4px solid var(--la-primary, #0d6efd);
  font-style: italic;
}

/* ============================
   WOOCOMMERCE OVERRIDES
============================= */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.woocommerce ul.products li.product { margin: 0; }
.woocommerce div.product .product_title { font-size: 2rem; }
.woocommerce div.product p.price, .woocommerce div.product span.price { font-size: 1.25rem; color: var(--la-primary,#0d6efd); }
.woocommerce .button { border-radius: .3rem; padding: .5rem 1rem; }



.text-muted {
  --bs-text-opacity: 1;
  color: #0d9556;
}


.main-nav li {
  margin: 0 10px; 
  border-right: 2px solid #979797;
  padding: 3px 5px; 
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
}
.main-nav li a {
  color: #0f3706;
  font-weight: 600;
  font-family: verdana;
}
.bg-verde {
  --bs-bg-opacity: 1;
  background-color: rgb(233, 242, 231) !important;
}



/* Grid container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Cada tour */
.tour-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f5fbf2;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    border: 1px solid #d6d9d6
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Enlace del tour */
.tour-link {
    text-decoration: none;
    color: inherit;
}

/* Imagen del tour */
.tour-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.tour-thumbnail:hover img {
    transform: scale(1.08);
}

/* Overlay con badge */
.tour-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.tour-count-badge {
    background: linear-gradient(135deg, #7fa573, #016007);
    color: #fff;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Detalles del tour */
.tour-details {
    margin-top: 10px;
    text-align: center;
}

.tour-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    padding: 7px 10px 12px 10px;
}

.tour-item:hover .tour-title {
    color: #0077b6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .tour-title {
        font-size: 1.1rem;
    }
    .tour-count-badge {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .grid-container {
        gap: 15px;
    }
    .tour-count-badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}



.category-header-container {
    margin-bottom: 30px;
}

.category-header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-header:hover {
    transform: scale(1.02);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.category-text {
    color: #fff;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        height: 220px;
    }
    .category-title {
        font-size: 2rem;
    }
    .category-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-header {
        height: 180px;
    }
    .category-title {
        font-size: 1.5rem;
    }
    .category-description {
        font-size: 0.9rem;
    }
}
.tour-excerpt {
    text-align: justify;           /* Justifica el texto */
    color: #666666;                /* Gris suave para que no resalte tanto */
    font-size: 0.95rem;            /* Tamaño normal de lectura */
    line-height: 1.5;              /* Espaciado cómodo entre líneas */
    margin-top: 8px;
    margin-bottom: 12px;
    padding: 1px 10px;
}

.tour-reviews {
    margin-top: 0px;
    text-align: center; /* centra las estrellas bajo el título */
}

.tour-reviews i {
    font-size: 1rem; /* tamaño de la estrella */
    margin: 0 2px;
}

.filled-star {
    color: #FFD700; /* dorado */
}

.empty-star {
    color: #ccc; /* gris claro */
}

.tour-info-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    gap: 15px; /* separación entre columnas */
}

.tour-info-col {
    flex: 1; /* cada columna ocupa la misma proporción */
    padding: 0px 12px 1px;
    text-align: center;
    font-size: 0.95rem;
    color: #016007;
    font-family: "Abel", Sans-serif;
}
.tour-info-col span {
  color: #373737;
  font-size: 0.90rem;
}

/* Responsive: columnas apiladas en móviles */
@media (max-width: 576px) {
    .tour-info-columns {
        flex-direction: column;
        gap: 8px;
    }
}

.tour-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 15px; /* espacio entre columnas */
    padding: 0px 10px 20px 10px;
}

.tour-price {
    flex: 1;
    text-align: left;
    color: #333;
}

.price-label {
    font-size: 0.9rem;
    color: #777;
}

.price-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #108606;
}

.price-person {
    display: block;
    font-size: 0.8rem;
    color: #555;
}

.tour-action {
    flex: 1;
    text-align: right;
}

.btn-tour {
    display: inline-block;
    padding: 15px 10px;
    background-color: #016007;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-tour:hover {
    background-color: #005f8d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive: columnas apiladas en móviles */
@media (max-width: 576px) {
    .tour-price-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .tour-action {
        text-align: left;
    }
}

.input-group {
  position: relative;
  display: inline-flex;
  align-items: stretch;

}