.pasion-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #D4C9B0;
    text-align: center;
}

/* Imagen de fondo única */
.pasion-bg-static {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('/img/WhatsApp\ Image\ 2026-04-22\ at\ 04.42.19\ \(3\).jpeg'); /* Usa tu archivo directamente */
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.pasion-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Oscurecido para resaltar el texto */
    z-index: -1;
}

.pasion-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.pasion-main-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 15px;
    transition: opacity 0.6s ease-in-out;
}

/* El color resaltado para las frases específicas */
.highlight-text {
    color: #828E65; /* Verde oliva de la marca */
    font-style: italic;
}

.pasion-sub-text {
    font-family: 'Montserrat', sans-serif; /* Fuente secundaria */
    font-size: 1.2rem;
    font-style: italic;
    letter-spacing: 1px;
    transition: opacity 0.6s ease-in-out;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(212, 201, 176, 0.2);
    font-family: 'Playfair Display', serif;
}

/* --- AJUSTE RESPONSIVO PARA LA SECCIÓN PASIÓN --- */
@media (max-width: 768px) {
    .pasion-section {
        height: 100vh; /* Un poco más corto en móviles para evitar scroll excesivo */
        padding: 40px 20px;
    }

    .pasion-main-text {
        font-size: 1.8rem; /* Tamaño controlado para pantallas pequeñas */
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .pasion-sub-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .quote-icon {
        font-size: 2.5rem; /* Comillas más pequeñas */
        margin: 5px 0;
    }

    .pasion-content {
        width: 100%;
        max-width: 100%;
    }
}

/* Ajuste para celulares muy pequeños */
@media (max-width: 480px) {
    .pasion-main-text {
        font-size: 1.5rem;
    }
    
    .pasion-sub-text {
        font-size: 0.9rem;
    }
}