/*Itinerario hightlights*/
.titulo-itinerario {
    color: #0ca85d;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.itinerario-highlights {
    position: relative;
    border-left: 2px solid #b77a1d;
    padding-left: 30px;
    margin-top: 30px;
}

.itinerario-dia {
    position: relative;
    margin-bottom: 40px;
}

.badge-dia {
    position: absolute;
    left: -65px;
    top: 0;
    background-color: #2c582d;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 15px;
    border-radius: 40px;
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenido-dia h4 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 0;
	padding-top: 18px;
}

.detalle-linea {
    list-style: none;
    padding-left: 0;
}

.detalle-linea li {
    list-style: none;
    margin-bottom: 4px;
    font-size: 15px;
}

.detalle-linea li::before {
    content: "✤";
    color: #ccc;
    margin-right: 8px;
}
/* estilo acordeon*/
.acordeon-contenido {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
    background: none;
}
.acordeon-item:not(.activo) .acordeon-contenido {
    max-height: 0 !important;
    padding: 0 1rem;
}
.acordeon-item.activo .acordeon-contenido {
    padding: 1rem;
}
.itinerario-acordeon {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.acordeon-item {
    border-bottom: 1px solid #e0e0e0;
}
.acordeon-titulo {
    margin: 0;
}
.acordeon-boton {
    width: 100%;
    padding: 1rem;
    background: #54e175;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}
.acordeon-boton:hover {
    background: #018634;
}
.indicador {
    font-size: 1.5rem;
    margin-left: 1rem;
}
.carrusel-dos-imagenes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem;
}
.carrusel-dos-imagenes a {
    border-radius: 1px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.carrusel-dos-imagenes a:hover {
    transform: scale(1.03);
}
.carrusel-dos-imagenes img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1px;
}
.grid-iconos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
}
.item-icono {
    display: flex;
    align-items: center;
    background: rgba(95, 179, 95, 0.278);
    padding: 1rem;
    border-radius: 5px;
    border: 0.5px solid #e0e0e0;
    
}
.icono-detalle {
    font-size: 3 rem; /* tamaño del ícono */
    color: #c08a00;    /* verde tierra, puedes cambiarlo */
    margin-right: 8px; /* espacio entre ícono y texto */
    padding: 4px;      /* espacio interno alrededor del ícono */
    vertical-align: middle; /* alinear mejor con el texto */
}

.texto {
    display: flex;
    flex-direction: column;
}
.titulo {
    font-size: 14px;
    font-weight: 700;
}
.valor {
    font-weight: 500;
    font-size: 13px;
}
@media (max-width: 768px) {
  .grid-iconos {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-template-columns: unset;
    gap: 0.8rem;
    padding: 0 1rem 1rem;
  }

  .item-icono {
    flex: 0 0 70%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .grid-iconos::-webkit-scrollbar {
    height: 4px;
  }

  .grid-iconos::-webkit-scrollbar-thumb {
    background: #2bb34b;
  }
}
/*estilos faqs*/
.faq-acordeon {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-boton {
    padding: 1rem;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #2bb34b;
}

.faq-contenido {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.faq-item.activo .faq-contenido {
    max-height: 200px; /* Puedes ajustar este valor o usar scrollHeight por JS */
    padding: 1rem;
}

.faq-indicador {
    font-size: 1.2rem;
    margin-left: 10px;
}

/* estilos service price */
.tabla-extraservice {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
    margin-top: 1em;
}

.tabla-extraservice th {
    background-color: #2bb34b; /* Verde tierra */
    padding: 10px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
}

.tabla-extraservice td {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
}

