﻿/* ================================
   PARALLAX GENÉRICO
   ================================ */

.parallax-section {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

    /* Overlay oscuro */
    .parallax-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.55);
        z-index: 1;
    }

    /* Contenido */
    .parallax-section .parallax-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 0 20px;
    }

    /* Título */
    .parallax-section h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    /* Subtítulo */
    .parallax-section p {
        font-size: 18px;
        font-weight: 300;
        line-height: 1.6;
        margin: 0;
    }

/* Responsive */
@media (max-width: 991px) {
    .parallax-section {
        height: 300px;
        background-attachment: scroll;
    }

        .parallax-section h1 {
            font-size: 28px;
        }

        .parallax-section p {
            font-size: 16px;
        }
}
