.hero-van-service {
    padding: 100px 0; /* Más espacio arriba y abajo */
    background-size:cover !important;
    background-position: center;
    color: #fff;
    text-align: center; /* Todo centrado */
}

.container-hero {
    max-width: 900px; /* Ancho más estrecho para que el texto sea legible */
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-micro-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 30px 0 40px;
}

.hero-micro-benefits li {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-micro-benefits i {
    color: #00ff8c;
}

.hero-cta-wrapper {
    margin-bottom: 50px;
}

.btn-hero-primary {
    background-color: #008f5d; /* Tu verde de marca */
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: scale(1.05);
    background-color: #00a86d;
}

.hero-pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 30px;
    border-radius: 12px;
}

.price-card .dest {
    color: #00ff8c;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-card .amount {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
}


/* Sección de Introducción con Fondo #f9f9f9 */
.van-intro-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Color de fondo solicitado */
}

.container-intro {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px; /* Espacio amplio entre texto e iframe */
    padding: 0 20px;
}

/* Columna de Texto */
.intro-text-column {
    flex: 1.2; /* Le damos un poco más de peso al texto para SEO */
}

.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.intro-text-column p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.85;
    margin-bottom: 25px;
    text-align: justify;
}

/* Columna del Iframe */
.intro-iframe-column {
    flex: 1;
    min-width: 380px;
    position: sticky;
    top: 20px; /* Se mantiene visible al hacer scroll si el texto es largo */
}

.iframe-wrapper {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Sombra suave para resaltar sobre el gris */
    border: 1px solid #e0e0e0;
}

/* Responsividad */
@media (max-width: 1024px) {
    .container-intro {
        flex-direction: column;
        gap: 40px;
    }
    
    .intro-text-column, 
    .intro-iframe-column {
        width: 100%;
        flex: none;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .intro-text-column p {
        text-align: left;
    }

    .intro-iframe-column {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .van-intro-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
}


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

/* Forzamos el centrado del título y su contenedor */
.container-minimal-prices {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; /* Centra el H2 y el contenido inline */
}

.section-title-center {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center; /* Asegura el centrado del texto */
}

.prices-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    text-align: center;
}

.price-text-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 50px 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transición suave */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default;
}

/* HOVER REAL: Elevación y cambio de color de borde */
.price-text-item:hover {
    transform: translateY(-10px); /* Eleva el cuadro */
    border-color: #008f5d; /* Cambia el borde a tu verde */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Sombra de profundidad */
    background-color: #fff;
}

.price-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222;
}

.destination-subtitle {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
    min-height: 40px; /* Para alinear los precios si el texto varía */
}

.price-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: #008f5d; 
    margin-bottom: 30px;
}

.price-details {
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.price-details .description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Ajuste para la tarjeta "destacada" (Playa del Carmen) */
.price-text-item.active-price {
    border: 1px solid #008f5d;
    background-color: #f0fff9; /* Un toque de color de fondo sutil */
}

/* Responsivo */
@media (max-width: 992px) {
    .prices-text-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
}


.why-private-section {
    padding: 80px 0;
    background-color: #ffffff; /* Fondo blanco para contraste */
}

.container-why {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Alineación vertical perfecta */
    gap: 50px;
    padding: 0 20px;
}

.why-image-column {
    flex: 1;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-text-column {
    flex: 1;
}

.why-text-column .section-title {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.why-text-column p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsivo para móviles */
@media (max-width: 992px) {
    .container-why {
        flex-direction: column-reverse; /* El texto queda arriba de la imagen en móvil */
        text-align: center;
    }
    .why-text-column .section-title {
        font-size: 1.8rem;
    }
}


.how-it-works-section {
    padding: 90px 0;
    background-color: #f9f9f9;
}

.container-how {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.how-text-column {
    flex: 1.2;
}

.how-text-column .section-title {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* Contenedor de pasos con línea guía */
.steps-wrapper {
    position: relative;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    background-color: #008f5d; /* Tu verde */
    color: #fff;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #333;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.how-image-column {
    flex: 1;
}

.how-image-column img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 992px) {
    .container-how {
        flex-direction: column;
        text-align: left;
    }
    
    .how-text-column .section-title {
        text-align: center;
    }
}


.capacity-service-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container-capacity {
    max-width: 1000px; /* Un poco más estrecho para centrar la atención */
    margin: 0 auto;
    padding: 0 20px;
}

.capacity-content-box {
    background-color: #fcfcfc;
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid #eee;
    border-left: 6px solid #008f5d; /* Tu verde de marca para resaltar */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.capacity-icon {
    font-size: 3rem;
    color: #008f5d;
    margin-bottom: 25px;
}

.capacity-content-box .section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.capacity-text p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.capacity-text strong {
    color: #1a1a1a;
    font-weight: 800;
}

/* Responsivo */
@media (max-width: 768px) {
    .capacity-content-box {
        padding: 40px 20px;
    }
    
    .capacity-content-box .section-title {
        font-size: 1.8rem;
    }
    
    .capacity-text p {
        font-size: 1.1rem;
    }
}


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

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

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: #f0fff9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-right: 15px;
}

.faq-question i {
    color: #008f5d;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    display: none; /* Se activa con jQuery */
    border-top: 1px solid #f9f9f9;
}

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

/* Clase para rotar el icono cuando está abierto */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


.final-cta-full {
    width: 100%;
    padding: 80px 0;
    background-color: #1a1a1a; /* Fondo oscuro total */
    text-align: center;
    color: #ffffff;
}

.container-cta-simple {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title-simple {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-text-simple {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ccc; /* Gris claro para lectura suave */
}

.btn-scroll-up {
    display: inline-block;
    background-color: #008f5d; /* Tu verde */
    color: #ffffff;
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-scroll-up:hover {
    background-color: #00b374;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 143, 93, 0.4);
    color: #fff;
}

/* Scroll suave (Asegúrate de tener este ID en el contenedor del iframe arriba) */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .cta-title-simple { font-size: 1.8rem; }
    .btn-scroll-up { width: 100%; padding: 18px 20px; }
}