.hero {
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    flex-direction: row;
    gap: 52px;
    background: #08253f;
    color: #ffffff;
}

.hero-content-wrapper {
    flex-direction: row;
    gap: 52px;
    padding-top: 40px;
    align-items: center;
    display: flex;
}

.hero::after {
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, #38a9e8, transparent 62%);
    content: "";
    opacity: 0.22;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 22, 40, 0.96) 0%,
            rgba(7, 22, 40, 0.76) 38%,
            rgba(7, 22, 40, 0.1) 100%
        ),
        url("../../assets/portada.png") center / cover no-repeat;
    filter: saturate(0.95);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-eyebrow {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-logo-mision-paz {
    width: 188px;
    height: auto;
    margin-bottom: 28px;
    object-fit: contain;
    object-position: left center;
}

.hero-title {
    margin: 8px 0 34px;
    color: #ffffff;
    font-family: "PT Serif", Georgia, serif;
    font-weight: 700;
    font-size: 62px;
    line-height: 68px;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 22px;
    line-height: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-button {
    display: inline-flex;
    height: 41px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    border: 1px solid #38a9e8;
    background: #38a9e8;
    box-shadow: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 17px;
    text-decoration: none;
}

.hero-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: none;
    color: #ffffff;
}

.hero-card {
    position: relative;
    z-index: 2;
    flex: 0.75;
    overflow: hidden;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    color: #0c1626;
    box-shadow: 0 24px 70px rgba(8, 30, 55, 0.14);
}

.hero-card-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-card-caption {
    display: flex;
    padding: 22px 24px 26px;
    align-items: center;
    gap: 18px;
}

.hero-card-logo {
    width: 92px;
    height: auto;
}

.hero-card-caption p {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .hero-logo-mision-paz {
        width: 150px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 50px;
    }

    .hero-lead {
        font-size: 19px;
        line-height: 25px;
    }
}

@media (max-width: 860px) {
    .hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        padding-top: 92px;
        text-align: center;
    }

    .hero-bg {
        background:
            linear-gradient(
                0deg,
                rgba(7, 22, 40, 0.94) 0%,
                rgba(7, 22, 40, 0.78) 38%,
                rgba(7, 22, 40, 0.38) 68%,
                rgba(7, 22, 40, 0.10) 100%
            ),
            url("../../assets/responsive_portada.png") center top / cover no-repeat;
    }

    .hero-title {
        font-size: 34px;
        line-height: 38px;
    }

    .hero-logo-mision-paz {
        width: 132px;
        margin: 0 auto 22px;
        object-position: center;
    }

    .hero-lead {
        font-size: 18px;
        line-height: 25px;
    }

    .hero-card {
        display: none;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content-wrapper {
        padding-top: 86px;
    }

    .hero-eyebrow {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }
}
