/* =========================================================
   IMPACTO PAGE
   assets/css/pages/impacto.css
   ========================================================= */

.impacto-hero-banner {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0, 20, 45, 0.72), rgba(0, 20, 45, 0.72)),
        url('../../img/bgp.png') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.impacto-hero-banner h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.impacto-hero-banner .text-warning,
.text-warning {
    color: #f3c623 !important;
}

.people-box {
    background: #0c2746;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.people-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.people-box h5 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.person-location {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.person-location img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.people-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 0;
}

.x-box {
    background: #09192d;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.x-box video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.cta-section {
    background:
        linear-gradient(rgba(0, 20, 45, 0.78), rgba(0, 20, 45, 0.78)),
        url('../../img/containerbg.png') no-repeat center center;
    background-size: cover;
}

.cta-section h2 {
    color: #fff;
    font-weight: 800;
}

.cta-section .cta-text {
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* Texto general sección intro */
.py-5 h2 {
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
}

.py-5 p {
    color: rgba(255, 255, 255, 0.88);
}

main {
    background: #07182d;
}

/* Responsive */
@media (max-width: 991.98px) {
    .impacto-hero-banner {
        min-height: 240px;
    }

    .impacto-hero-banner h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 575.98px) {
    .impacto-hero-banner h1 {
        font-size: 2rem;
    }

    .people-box {
        padding: 18px;
    }

    .people-box h5 {
        font-size: 1.05rem;
    }

    .people-box p,
    .person-location {
        font-size: 0.92rem;
    }
}