.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}

/********************** BLOQUE ************************/


.booking-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.booking-grid {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.booking-content {
    flex: 1;
    min-width: 350px;
}

.booking-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

.booking-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.booking-content strong {
    color: #d9534f; /* Alert color for scams/surge */
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-features span {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00af87;
}

.booking-form-wrapper {
    flex: 1;
    min-width: 350px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.iframe-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .booking-grid {
        flex-direction: column;
    }
    .booking-content {
        text-align: center;
    }
    .booking-features {
        align-items: center;
        margin-bottom: 40px;
    }
}

/********************** BLOQUE ************************/


.uber-comparison {
    padding: 80px 0;
    /* Cambiamos a un tono sutil para diferenciar de la sección blanca de arriba */
    background-color: #f9f9f9; 
}

.uber-grid {
    display: flex;
    gap: 50px;
    /* Cambiado a center para que el texto no deje tanto aire abajo */
    align-items: center; 
    flex-wrap: wrap;
}

.uber-info {
    flex: 1.2;
    min-width: 320px;
}

.uber-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.uber-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.uber-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.uber-slider-container {
    flex: 0.8;
    min-width: 320px; /* Importante para que no se encoja de más */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    /* Quitamos el height fijo de aquí para manejarlo por imagen */
    position: relative;
}

.uber-slider img {
    width: 100%;
    /* Definimos el alto aquí para controlar el slider */
    height: 450px; 
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .uber-grid { 
        flex-direction: column; 
        gap: 30px; /* Reducimos el gap en móvil */
    }
    .uber-title { 
        font-size: 1.8rem; 
    }
    
    /* Corrección para móviles: Bajamos el alto de la imagen para que no ocupe toda la pantalla */
    .uber-slider img {
        height: 350px; 
    }
    
    .uber-info, .uber-slider-container {
        width: 100%;
        min-width: 100%; /* Forzamos el ancho total en móvil */
    }
}

.uber-slider-container .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 20px;
    border-radius: 5px;
}

.uber-slider-container .swiper-pagination {
    bottom: 15px !important;
}

/********************** BLOQUE ************************/


/* --- Sección ADO (Fondo Blanco) --- */
.ado-comparison {
    padding: 80px 0;
    background-color: #ffffff;
}

.ado-grid {
    display: flex;
    gap: 50px;
    align-items: center; 
    flex-wrap: wrap;
}

.ado-info {
    flex: 1.2;
    min-width: 320px;
}

.ado-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.ado-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.ado-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* --- Contenedor del Slider ADO --- */
.ado-slider-container {
    flex: 0.8;
    min-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
}

/* Las clases de Swiper se mantienen para que el JS no falle */
.uber-slider-ado img {
    width: 100%;
    height: 450px; 
    display: block;
    object-fit: cover;
}

/* --- Responsive ADO --- */
@media (max-width: 991px) {
    .ado-grid { 
        flex-direction: column; 
        gap: 35px;
    }
    
    .ado-title { font-size: 1.8rem; }
    
    .uber-slider-ado img {
        height: 350px; 
    }

    .ado-info, .ado-slider-container {
        width: 100%;
        min-width: 100%;
    }
}

/* Paginación específica para este contenedor */
.ado-slider-container .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 20px;
    border-radius: 5px;
}

.ado-slider-container .swiper-pagination {
    bottom: 15px !important;
}

/********************** BLOQUE ************************/

/* --- Sección Destinos Clúster --- */
.destinos-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.destinos-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 45px;
    color: #1a1a1a;
}

/* Grilla de 4 columnas */
.destinos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card Individual */
.destino-card {
    position: relative;
    height: 380px; /* Altura ideal para móviles y desktop */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    background-color: #000; /* Fondo base por si la imagen tarda en cargar */
}

/* Imagen de fondo con efecto Hover */
.destino-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.85; /* Un poco de oscuridad para que el texto resalte */
}

.destino-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

/* Contenedor de Información (Texto sobre la imagen) */
.destino-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    /* Degradado de negro a transparente de abajo hacia arriba */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.destino-info h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

/* El Martillo SEO */
.destino-hammer {
    font-size: 0.85rem;
    margin: 6px 0;
    line-height: 1.3;
    opacity: 0.9;
    font-weight: 400;
}

/* Precio Estilizado */
.destino-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

/* Botón de Acción */
.btn-destino {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color); /* Tu color verde/amarillo corporativo */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-destino:hover {
    background-color: #fff;
    color: #000;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .destinos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 850px) {
    .destinos-grid { grid-template-columns: repeat(2, 1fr); }
    .destinos-title { font-size: 2rem; }
    .destino-card { height: 320px; }
}

@media (max-width: 550px) {
    .destinos-grid { grid-template-columns: 1fr; } /* Una sola columna en celulares chicos */
}

/********************** BLOQUE ************************/

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: sans-serif;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.faq-group {
    margin-bottom: 30px;
}

.faq-item {
    background: #f8fbf9;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #eef2f0;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 143, 93, 0.1);
    border-color: #008f5d;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}

/* Flecha personalizada */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '\002B'; /* Signo + */
    position: absolute;
    right: 25px;
    font-size: 1.4rem;
    color: #008f5d;
    font-weight: bold;
}

.faq-item[open] .faq-question::after {
    content: '\2212'; /* Signo - */
}

.faq-answer {
    padding: 0 25px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-answer p {
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding-right: 50px;
    }
}