/* Material Symbols Font */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}
/* Flechas de Navegación para Carruseles */
.cicerone-carousel .go-left,
.cicerone-carousel .go-right,
.cicerone-carousel.events-carousel .go-left,
.cicerone-carousel.events-carousel .go-right,
.cicerone-carousel.pois-carousel .go-left,
.cicerone-carousel.pois-carousel .go-right,
.cicerone-carousel.pdfs-carousel .go-left,
.cicerone-carousel.pdfs-carousel .go-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    z-index: 10;
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Contenedor General del Carrusel */
.cicerone-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Título de Categoría */
.cicerone-carousel h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--compl-color, #333);
    margin: 0 0 15px;
    padding: 0;
}

.cicerone-carousel h3 a.category-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.cicerone-carousel h3 a.category-link:hover {
    text-decoration: underline;
    color: var(--main-color);
}

/* Contenedor del Scroll */
.cicerone-carousel .viewport {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding:30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.cicerone-carousel .viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Flechas de Navegación para Slider */
.slider-container .slider-prev,
.slider-container .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #4e848e;
    border-radius: 50%;
    color: #e3e3e3; /* Color del icono solicitado */
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    z-index: 10;
    font-family: 'Material Symbols Outlined';
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Flechas de Navegación */
.cicerone-carousel .go-left,
.cicerone-carousel .go-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid var(--main-color, #007bff);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color, #007bff); /* Texto visible */
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    z-index: 10;
}

.cicerone-carousel .go-left {
    left: 10px;
}

.cicerone-carousel .go-right {
    right: -20px;
}

.cicerone-carousel .go-left:hover,
.cicerone-carousel .go-right:hover,
.cicerone-carousel .go-left.active,
.cicerone-carousel .go-right.active {
    opacity: 1;
}

/* Accesibilidad para flechas */
.cicerone-carousel .go-left::before {
    content: "Anterior";
    clip: rect(0, 0, 0, 0);
    position: absolute;
}

.cicerone-carousel .go-right::before {
    content: "Siguiente";
    clip: rect(0, 0, 0, 0);
    position: absolute;
}

/* Ocultar flechas si no son necesarias */
.cicerone-carousel:not(.scrollable) .go-left,
.cicerone-carousel:not(.scrollable) .go-right {
    display: none;
}

/* Card Estándar */
.cicerone-card {
    display: block;
    flex: 0 0 clamp(200px, 20vw, 260px);
    height: 220px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cicerone-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    font-family: inherit;
}

/* Imagen */
.cicerone-card .card-image {
    width: 100%;
    height: 65%;
    object-fit: cover;
    display: block;
}

/* Duración (exclusivo para POIs) */
.cicerone-card .card-duration {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cicerone-card:hover .card-duration {
    opacity: 1;
}

/* Contenido */
.cicerone-card .card-content {
    flex-direction: column;
    height: 35%;
    margin-top: 1%;
    width: 100%;
    text-align: left;
    padding: 3px 12px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    transition: all .15s ease-in-out;
}

.cicerone-card .card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    width: 100%;
}

.cicerone-card .card-meta {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
    text-align: center;
}

/* Modal para PDFs */
.cicerone-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.cicerone-modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 70px auto;
    max-width: 80%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#modal-pdf {
    width: 100%;
    height: 500px;
    margin-top: 10px;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #007bff;
    color: #fff!important;
    text-decoration: none;
    border-radius: 4px;
    align-self: center;
}

.download-btn:hover {
    background: #005d87;
}

/* Estilos para calendario */
.cicerone-calendar-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.agenda-text {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.agenda-text span {
    font-size: 0.8em;
}

.calendar-wrapper {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    max-height: 475px;
    min-height: 475px;
    position: relative;
    overflow: hidden;
    margin: 15px 0 30px;
}

#cicerone-datepicker {
    display: none;
}

#event-details {
    flex: 1;
    padding: 0 10px;
    width: 100%;
    overflow-y: auto;
}

.cicerone-calendar-container .event-card-image {
    width: 30%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#event-count {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#event-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-card-content {
    padding: 10px;
    flex: 1;
}

.schedule-text-container p {
    margin: 0 0 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.schedule-data-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-data-container span {
    font-size: 12px;
    font-weight: normal;
    color: #6f6969;
    padding-left: 5px;
}

.schedule-data-container img {
    height: 16px !important;
    width: 16px !important;
    aspect-ratio: 1;
}

.calendar-info-container {
    display: flex;
    align-items: center;
    gap: unset;
}

.calendar-info,
.calendar-info-text {
    font-size: 0.9em;
}

.flatpickr-calendar.inline {
    margin-top: 20px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    z-index: 9;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
}

.flatpickr-day.has-event {
    position: relative;
}

.flatpickr-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #3CAEAC;
    border-radius: 50%;
}
.cicerone-category-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cicerone-category-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
    text-align: left;
}

.cicerone-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cicerone-search {
    position: relative;
    width: 300px;
}

.cicerone-search-input {
    width: 100%;
    padding: 8px 40px 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.cicerone-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.cicerone-order-select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.cicerone-items-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Paginación */
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination .page-numbers {
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pagination .page-numbers.current {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination .page-numbers:hover {
    background: #f0f0f0;
}
/* Media Queries */
@media (max-width: 768px) {
    .cicerone-carousel .viewport {
        padding: 0 20px;
    }
    .cicerone-card {
        flex: 0 0 clamp(150px, 45vw, 200px);
        height: 300px;
    }
    .cicerone-card .card-title {
        font-size: 14px;
    }
    .cicerone-carousel .go-left,
    .cicerone-carousel .go-right {
        width: 30px;
        height: 30px;
        line-height: 24px;
        font-size: 18px;
    }
}


/*EVENTOS*/

/* Contenedor General del Carrusel para Eventos */
.cicerone-carousel.events-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px; /* Bordes redondeados */
}

/* Título Principal */
.cicerone-carousel.events-carousel .cicerone-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff; /* Blanco para el título */
    margin: 0 0 20px;
    text-align: left;
}

/* Contenedor del Scroll */
.cicerone-carousel.events-carousel .viewport {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding:30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.cicerone-carousel.events-carousel .viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Flechas de Navegación */
.cicerone-carousel.events-carousel .go-left,
.cicerone-carousel.events-carousel .go-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #fff; /* Borde blanco para que combine con el fondo */
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #4e848e; /* Color del texto igual al fondo */
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    z-index: 10;
}

.cicerone-carousel.events-carousel .go-left {
    left: 10px;
}

.cicerone-carousel.events-carousel .go-right {
    right: -20px;
}

.cicerone-carousel.events-carousel .go-left:hover,
.cicerone-carousel.events-carousel .go-right:hover {
    opacity: 1;
}

/* Card Estándar para Eventos */
.cicerone-carousel.events-carousel .cicerone-card {
    display: block;
    flex: 0 0 clamp(180px, 18vw, 260px); /* Mismo tamaño que las rutas */
    height: 220px; /* Más corta, ya que no hay botón */
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cicerone-carousel.events-carousel .cicerone-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    font-family: inherit;
}

/* Imagen */
.cicerone-carousel.events-carousel .card-image-wrapper {
    display: block;
    width: 100%;
    height: 65%;
    overflow: hidden;
    position: relative;
}

.cicerone-carousel.events-carousel .cicerone-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenido */
.cicerone-carousel.events-carousel .cicerone-card .card-content {
    flex-direction: column;
    height: 35%;
    margin-top: 1%;
    width: 100%;
    text-align: left;
    padding: 3px 12px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    transition: all .15s ease-in-out;
}

.cicerone-carousel.events-carousel .cicerone-card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--main-color);
    text-overflow: ellipsis;
    max-height: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
    .cicerone-carousel.events-carousel .viewport {
        padding: 0 20px;
    }
    .cicerone-carousel.events-carousel .cicerone-card {
        flex: 0 0 clamp(150px, 40vw, 180px);
        height: 220px; /* Más corta en móvil */
    }
    .cicerone-carousel.events-carousel .cicerone-card .card-title {
        font-size: 12px;
    }
    .cicerone-carousel.events-carousel .go-left,
    .cicerone-carousel.events-carousel .go-right {
        width: 30px;
        height: 30px;
        line-height: 24px;
        font-size: 18px;
    }
}


/* RUTAS */

/* Contenedor General del Carrusel */
.cicerone-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Título Principal */
.cicerone-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a3c5e; /* Color azul oscuro de la captura */
    margin: 0 0 10px;
    text-align: left;
}

/* Subtítulo */
.cicerone-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px;
    text-align: left;
}

/* Contenedor del Scroll */
.cicerone-carousel .viewport {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding:30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.cicerone-carousel .viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Flechas de Navegación */
.cicerone-carousel .go-left,
.cicerone-carousel .go-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #4a90e2; /* Color azul de las flechas */
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #4a90e2;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    z-index: 10;
}

.cicerone-carousel .go-left {
    left: 10px;
}

.cicerone-carousel .go-right {
    right: -20px;
}

.cicerone-carousel .go-left:hover,
.cicerone-carousel .go-right:hover {
    opacity: 1;
}

/* Card Estándar */
.cicerone-card {
    display: block;
    flex: 0 0 clamp(180px, 18vw, 260px); /* Tarjetas más compactas */
    height: 220px; /* Altura más corta para que sea más cuadrada */
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cicerone-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    font-family: inherit;
}

/* Imagen y Badge */
.card-image-wrapper {
    display: block;
    width: 100%;
    height: 65%;
    overflow: hidden;
    position: relative;
}

.cicerone-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cicerone-card .card-days {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #333;
    padding: 3px 8px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid black;
    border-radius: 40px;
}

/* Contenido */
.cicerone-card .card-content {
    flex-direction: column;
    height: 35%;
    margin-top: 1%;
    width: 100%;
    text-align: left;
    padding: 3px 12px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    transition: all .15s ease-in-out;
}

.cicerone-card .card-title {
    font-size: 14px; /* Texto más pequeño */
    font-weight: 600;
    margin: 0;
    color: var(--main-color);
}

/* Botón */
.cicerone-card .card-button {
    background: #4E848E; /* Color gris claro como en el diseño original */
    color: #FFF;
    border: none;
    padding: 6px 12px; /* Botón más pequeño */
    border-radius: 5px;
    font-size: 15px; /* Texto más pequeño */
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.cicerone-card .card-button:hover {
    background: #406970; /* Color más oscuro al hover */
}

/* Media Queries */
@media (max-width: 768px) {
    .cicerone-carousel .viewport {
        padding: 0 20px;
    }
    .cicerone-card {
        flex: 0 0 clamp(150px, 40vw, 180px); /* Ajuste para pantallas pequeñas */
        height: 260px; /* Altura más corta en móvil */
    }
    .cicerone-card .card-title {
        font-size: 12px;
    }
    .cicerone-card .card-button {
        font-size: 10px;
        padding: 5px 10px;
    }
    .cicerone-carousel .go-left,
    .cicerone-carousel .go-right {
        width: 30px;
        height: 30px;
        line-height: 24px;
        font-size: 18px;
    }
}

/* Pdfs */

/* Contenedor General del Carrusel para PDFs */
.cicerone-carousel.pdfs-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px; /* Bordes redondeados */
}

/* Título Principal */
.cicerone-carousel.pdfs-carousel .cicerone-title {
    font-size: 28px;
    font-weight: 700;
    color: #000; /* Blanco para el título */
    margin: 0 0 20px;
    text-align: left;
}

/* Contenedor del Scroll */
.cicerone-carousel.pdfs-carousel .viewport {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding:30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.cicerone-carousel.pdfs-carousel .viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Flechas de Navegación */
.cicerone-carousel.pdfs-carousel .go-left,
.cicerone-carousel.pdfs-carousel .go-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #fff; /* Borde blanco para que combine con el fondo */
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #4e848e; /* Color del texto igual al fondo */
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    z-index: 10;
}

.cicerone-carousel.pdfs-carousel .go-left {
    left: 10px;
}

.cicerone-carousel.pdfs-carousel .go-right {
    right: -20px;
}

.cicerone-carousel.pdfs-carousel .go-left:hover,
.cicerone-carousel.pdfs-carousel .go-right:hover {
    opacity: 1;
}

/* Card Estándar para PDFs */
.cicerone-carousel.pdfs-carousel .cicerone-card {
    display: block;
    flex: 0 0 clamp(180px, 18vw, 260px); /* Mismo tamaño que las rutas y eventos */
    height: 220px; /* Igual que los eventos, ya que no hay botón */
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cicerone-carousel.pdfs-carousel .cicerone-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    font-family: inherit;
}

/* Imagen */
.cicerone-carousel.pdfs-carousel .card-image-wrapper {
    display: block;
    width: 100%;
    height: 65%;
    overflow: hidden;
    position: relative;
}

.cicerone-carousel.pdfs-carousel .cicerone-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenido */
.cicerone-carousel.pdfs-carousel .cicerone-card .card-content {
    flex-direction: column;
    height: 35%;
    margin-top: 1%;
    width: 100%;
    text-align: left;
    padding: 3px 12px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    transition: all .15s ease-in-out;
}

.cicerone-carousel.pdfs-carousel .cicerone-card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--main-color);
}

/* Media Queries */
@media (max-width: 768px) {
    .cicerone-carousel.pdfs-carousel .viewport {
        padding: 0 20px;
    }
    .cicerone-carousel.pdfs-carousel .cicerone-card {
        flex: 0 0 clamp(150px, 40vw, 180px);
        height: 220px; /* Más corta en móvil */
    }
    .cicerone-carousel.pdfs-carousel .cicerone-card .card-title {
        font-size: 12px;
    }
    .cicerone-carousel.pdfs-carousel .go-left,
    .cicerone-carousel.pdfs-carousel .go-right {
        width: 30px;
        height: 30px;
        line-height: 24px;
        font-size: 18px;
    }
}

/* POIS */

/* Contenedor General del Carrusel para POIs */
.cicerone-carousel.pois-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px; /* Bordes redondeados */
}

/* Título Principal */
.cicerone-carousel.pois-carousel .cicerone-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff; /* Blanco para el título */
    margin: 0 0 20px;
    text-align: left;
}

/* Contenedor del Scroll */
.cicerone-carousel.pois-carousel .viewport {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding:30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.cicerone-carousel.pois-carousel .viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Flechas de Navegación */
.cicerone-carousel.pois-carousel .go-left,
.cicerone-carousel.pois-carousel .go-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #fff; /* Borde blanco para que combine con el fondo */
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #4e848e; /* Color del texto igual al fondo */
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    z-index: 10;
}

.cicerone-carousel.pois-carousel .go-left {
    left: 10px;
}

.cicerone-carousel.pois-carousel .go-right {
    right: -20px;
}

.cicerone-carousel.pois-carousel .go-left:hover,
.cicerone-carousel.pois-carousel .go-right:hover {
    opacity: 1;
}

/* Card Estándar para POIs */
.cicerone-carousel.pois-carousel .cicerone-card {
    display: block;
    flex: 0 0 clamp(180px, 18vw, 260px); /* Mismo tamaño que las rutas, eventos y PDFs */
    height: 220px; /* Igual que los eventos y PDFs, ya que no hay botón */
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cicerone-carousel.pois-carousel .cicerone-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    font-family: inherit;
}

/* Imagen */
.cicerone-carousel.pois-carousel .card-image-wrapper {
    display: block;
    width: 100%;
    height: 65%;
    overflow: hidden;
    position: relative;
}

.cicerone-carousel.pois-carousel .cicerone-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenido */
.cicerone-carousel.pois-carousel .cicerone-card .card-content {
    flex-direction: column;
    height: 35%;
    margin-top: 1%;
    width: 100%;
    text-align: left;
    padding: 3px 12px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    transition: all .15s ease-in-out;
}

.cicerone-carousel.pois-carousel .cicerone-card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--main-color);
    width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
    .cicerone-carousel.pois-carousel .viewport {
        padding: 0 20px;
    }
    .cicerone-carousel.pois-carousel .cicerone-card {
        flex: 0 0 clamp(150px, 40vw, 180px);
        height: 220px; /* Más corta en móvil */
    }
    .cicerone-carousel.pois-carousel .cicerone-card .card-title {
        font-size: 12px;
    }
    .cicerone-carousel.pois-carousel .go-left,
    .cicerone-carousel.pois-carousel .go-right {
        width: 30px;
        height: 30px;
        line-height: 24px;
        font-size: 18px;
    }
}

/* AGENDA */

/* Estilos para calendario */
.cicerone-calendar-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.agenda-text {
    font-size: 28px; /* Más grande para coincidir con la captura */
    font-weight: 700;
    color: #1a3c5e; /* Color azul oscuro como en la captura */
    margin-bottom: 5px;
}

.agenda-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.calendar-wrapper {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 5px rgba(0, 0, 0, 0.12);
    max-height: 475px;
    min-height: 475px;
    position: relative;
    overflow: hidden;
    margin: 15px 0 30px;
}

#cicerone-datepicker {
    display: none;
}

#event-details {
    flex: 1;
    padding: 20px; /* Más padding para coincidir con la captura */
    width: 100%;
    overflow-y: auto;
}

.cicerone-calendar-container .event-card-image {
    width: 30%; /* Reducimos el ancho de la imagen */
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cicerone-calendar-container .event-card-content {
    width: 70%; /* Ajustamos el contenido para que ocupe el resto */
    padding: 10px; /* Reducimos el padding */
    display: flex;
    flex-direction: column;
}

#event-count {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

#event-cards {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Reducimos el espacio entre tarjetas */
}

.agenda-event-card {
    border: 1px solid #3F3A3A;
    border-radius: 15px;
}

.cicerone-event-card {
    display: flex;
    text-decoration: none;
    color: #000;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Mantenemos el ancho máximo */
    position: relative;
    height: 120px; /* Reducimos la altura total de la tarjeta */
}

.event-card-content {
    padding: 8px; /* Reducimos el padding */
    flex: 1;
}

.schedule-text-container p {
    margin: 0 0 5px; /* Reducimos el margen inferior */
    font-size: 16px; /* Reducimos el tamaño del título */
    font-weight: bold;
    color: #333;
}

.schedule-data-container {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Reducimos el espacio entre los elementos */
}

.schedule-data-container span {
    font-size: 12px; /* Reducimos el tamaño del texto */
    font-weight: normal;
    color: #6f6969;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.schedule-data-container img {
    height: 14px !important; /* Reducimos el tamaño de los íconos */
    width: 14px !important;
    aspect-ratio: 1;
    margin-right: 5px;
}

/* Botón Agenda */
.event-card-button {
    position: absolute;
    bottom: 8px; /* Reducimos el espacio inferior */
    right: 8px; /* Reducimos el espacio derecho */
    background: #4e848e; /* Color del botón */
    color: #fff;
    border: none;
    padding: 6px 12px; /* Reducimos el padding del botón */
    border-radius: 5px;
    font-size: 12px; /* Reducimos el tamaño del texto */
    cursor: pointer;
    transition: background 0.3s ease;
}

.event-card-button:hover {
    background: #406970; /* Color más oscuro al hover */
}

.calendar-info-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.calendar-info,
.calendar-info-text {
    font-size: 12px; /* Reducimos el tamaño del texto */
}

.flatpickr-calendar.inline {
    margin: 20px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    z-index: 9;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
}

.flatpickr-day.has-event {
    position: relative;
}

.flatpickr-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #3CAEAC;
    border-radius: 50%;
}

/* Ajustes para Flatpickr */
.flatpickr-day.today {
    border: 1px solid #4e848e;
}

.flatpickr-day.selected {
    background: #4e848e;
    color: #fff;
}

.flatpickr-monthDropdown-months,
.flatpickr-current-month .flatpickr-monthDropdown-month,
.flatpickr-current-month .numInputWrapper {
    font-size: 16px;
}

.flatpickr-day {
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
    .cicerone-calendar-container {
        padding: 10px;
    }
    .agenda-text {
        font-size: 24px;
    }
    .agenda-subtitle {
        font-size: 14px;
    }
    .calendar-wrapper {
        flex-direction: column;
        max-height: none;
        min-height: auto;
    }
    .flatpickr-calendar.inline {
        margin: 10px;
    }
    .cicerone-event-card {
        max-width: 100%;
        height: auto; /* Permitimos que la altura se ajuste al contenido */
        flex-direction: column; /* Cambiamos a columna en móvil */
    }
    .cicerone-calendar-container .event-card-image {
        width: 100%;
        height: 150px; /* Reducimos la altura de la imagen en móvil */
        aspect-ratio: 3 / 2;
    }
    .cicerone-calendar-container .event-card-content {
        width: 100%;
        padding: 10px;
    }
    .event-card-button {
        position: static; /* Quitamos el posicionamiento absoluto en móvil */
        margin-top: 10px;
        align-self: flex-end;
    }
}

.cicerone-show-more-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}
.cicerone-show-more-button:hover {
    background: #005177;
}
	@media only screen and (max-width: 600px) {
	  .cicerone-carousel.pois-carousel, .cicerone-carousel.events-carousel {
		padding: 0px;
	  }
	  .cicerone-carousel.pois-carousel .viewport, .cicerone-carousel.events-carousel .viewport {
		padding:0px;
	  }
	  .cicerone-carousel.pois-carousel .go-right, .cicerone-carousel.events-carousel .go-right {
		right: 0px;
	  }
	}