
:root {
    --sdj-rojo: #E1251B; 
    --sdj-rojo-oscuro: #b81e16;
    --sdj-amarillo: #ffc629; 
    --sdj-amarillo-claro: #fff6f5;
    --sdj-texto: #333333;
    --sdj-gris-suave: #440205;
}

/* ========================================= */
/* 2. HERO SECTION (Banner y Texto Estilo) */
/* ========================================= */

.destino-hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.destino-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.destino-hero-bg img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}

.destino-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 37, 91, 0.65);
    z-index: 2;
}

.destino-hero-content {
    position: relative; 
    z-index: 3;
    max-width: 900px; 
    padding: 20px;
    margin: 0 auto;
}

.destino-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.destino-hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* ========================================= */
/* ESTILOS DE CONTENEDOR Y TARJETAS */
/* ========================================= */

.destino-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px;
}

.destino-section-title {
    font-size: 2.5em;
    color: var(--sdj-rojo);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.destino-section-description {
    font-size: 1.1em;
    color: var(--sdj-gris-suave);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.destino-bg-light {
    background-color: var(--sdj-amarillo-claro);
}

/* Tarjetas Información */
.destino-section-info {
    padding: 50px 0;
}
.destino-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.destino-info-card {
    background: #fff; 
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
    padding: 30px;
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.destino-info-card:hover { 
    transform: translateY(-5px); 
}
.destino-info-card i {
    font-size: 3em;
    color: var(--sdj-rojo);
    margin-bottom: 15px;
}
.destino-info-card h3 {
    color: var(--sdj-rojo);
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
}
.destino-info-card p {
    text-align: left;
}

/* Tarjetas Lugares */
.destino-section-places {
    padding: 50px 0;
}
.destino-grid-places {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.destino-place-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
    display: flex; flex-direction: column;
}
.destino-place-card:hover {
    transform: translateY(-5px);
}
.destino-place-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 5px solid var(--sdj-amarillo);
}
.destino-place-card h3 {
    color: var(--sdj-rojo);
    margin: 20px 20px 10px;
    font-weight: 700;
    text-align: center;
}
.destino-place-card p {
    padding: 0 20px 20px;
    color: var(--sdj-gris-suave);
    text-align: left;
    flex-grow: 1;
}

/* Comida y Servicios */
.destino-section-food,
.destino-section-services {
    padding: 50px 0;
}
.destino-grid-food, .destino-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.food-item, .service-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}
.food-item:hover,
.service-item:hover {
    transform: translateY(-5px);
}
.food-item h3, .service-item h3 {
    color: var(--sdj-rojo);
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}
.food-item i, .service-item i {
    font-size: 3em;
    color: var(--sdj-rojo);
    margin-bottom: 15px;
}
.food-item p{
    text-align: left;   
}
.food-item svg {
    width: 3.5em;
    height: 3.5em;
    fill: var(--sdj-rojo);
    margin-bottom: 15px;
    display: inline-block;
}
.icono-card {
    font-size: 48px!important;
    color: #d32f2f;
    margin-bottom: 10px;
}

/* Rutas y Call To Action */
.destino-section-routes {
    padding: 50px 0;
}
.destino-route-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.route-column ul {
    padding: 0;
    list-style: none;
}
.route-column li {
    background:  var(--sdj-amarillo-claro);
    border: 1px solid rgba(255, 198, 41, 0.5);
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: var(--sdj-texto);
}
.route-column li::before {
    content: '\f207';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--sdj-rojo);
}

.destino-call-to-action {
    background: var(--sdj-rojo);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}
.destino-call-to-action p {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}
.destino-btn-primary {
    background: var(--sdj-amarillo);
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s;
}
.destino-btn-primary:hover {
    background: #ffd666; 
}

/* ========================================= */
/* Sección FAQ (destino-section-faq) */
/* ========================================= */
.destino-section-faq {
    padding: 50px 0;
    background-color: #ffffff;
}

.destino-faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.destino-faq-item:last-child {
    border-bottom: none;
}

.destino-faq-question {
    background-color: #fcfcfc;
    color: #440205;
    cursor: pointer;
    padding: 20px 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destino-faq-question:hover,
.destino-faq-question.active {
    background-color: var(--sdj-amarillo-claro);
}

.destino-faq-question::after {
    content: '+';
    font-weight: bold;
    font-size: 1.5em;
    color: #e1251b;
    transition: transform 0.3s ease;
}

.destino-faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.destino-faq-answer-panel {
    padding: 0 30px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.destino-faq-answer-panel p {
    padding: 20px 0;
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

@media screen and (max-width: 440px) {
    .destino-hero-section {
        display: none;
    }
    .contenedor-contenidos {
        margin-top: 0;
    }
    .destino-section-info,
    .destino-section-places,
    .destino-section-food,
    .destino-section-routes,
    .destino-section-services,
    .destino-section-faq{
        padding: 20px 0;
    }
}