/* ========================= */
/* VARIABLES */
/* ========================= */

:root {
    --navbar-height: 120px;
}

/* ========================= */
/* HERO BASE */
/* ========================= */

.faccion-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;

    background: url('../assets/img/fondobase.png') center center / cover no-repeat;

    padding-top: var(--navbar-height); /* 🔥 espacio real bajo navbar */
    padding-bottom: 120px;

    overflow: hidden;
}

/* Overlay oscuro base */

.faccion-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* ========================= */
/* PANEL NEGRO DERECHO */
/* ========================= */

.faccion-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        to left,
        rgba(0,0,0,0.96) 0%,
        rgba(0,0,0,0.92) 65%,
        rgba(0,0,0,0.6) 85%,
        rgba(0,0,0,0.0) 100%
    );

    z-index: 3;
}

/* ========================= */
/* IMAGEN FLOTANTE */
/* ========================= */

.faccion-floating-image {
    position: absolute;
    bottom: 0;
    left: -6%;

    height: 100vh;
    object-fit: contain;

    z-index: 2;
    pointer-events: none;

    filter: drop-shadow(0 0 50px rgba(255, 0, 0, 0.15));
}

/* ========================= */
/* CONTENEDOR TEXTO */
/* ========================= */

.faccion-container {
    position: relative;
    z-index: 4;

    width: 100%;
    max-width: 1920px;

    margin: 0 auto;
    padding-right: 8%;

    display: flex;
    justify-content: flex-end;
}

/* ========================= */
/* COLUMNA DERECHA */
/* ========================= */

.faccion-content {
    width: 50%;
    max-width: 750px;
}

/* TÍTULO */

.faccion-content h1 {
    font-size: clamp(80px, 6vw, 120px);
    line-height: 0.9;
    margin-bottom: 40px;
}

/* DATOS */

.faccion-data {
    margin-bottom: 40px;
}

.faccion-data p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* TEXTO NARRATIVO */

.faccion-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;

    text-align: justify;
    text-justify: inter-word;
}

/* LEMA */

.faccion-quote {
    font-size: 18px;
    letter-spacing: 2px;
    color: #ff1a1a;
    font-weight: 600;
    margin-top: 15px;
}

/* ========================= */
/* SCROLL INTERNO */
/* ========================= */

.faccion-scroll {
    max-height: 340px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Scroll elegante */

.faccion-scroll::-webkit-scrollbar {
    width: 6px;
}

.faccion-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.faccion-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #5a0000, #a10000);
    border-radius: 4px;
}

.faccion-scroll::-webkit-scrollbar-thumb:hover {
    background: #ff1a1a;
}

.faccion-scroll {
    scrollbar-width: thin;
    scrollbar-color: #a10000 transparent;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1200px) {

    :root {
        --navbar-height: 140px;
    }

    .faccion-floating-image {
        height: 55vh;
        left: 0;
    }

    .faccion-container {
        justify-content: center;
        padding-right: 5%;
    }

    .faccion-content {
        width: 90%;
        max-width: none;
    }

}