/* =========================================================
HERO BANNER
========================================================= */

.hero-banner
{
    position: relative;

    width: 100%;

    height: 90dvh;

    min-height: 650px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #08111f;
}

/* VIDEO */

.hero-video
{
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    z-index: 1;

    transform: scale(1.02);
}

/* OVERLAY */

.hero-overlay
{
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.70) 100%
        );

    z-index: 2;
}

/* CONTEÚDO */

.hero-content
{
    position: relative;

    z-index: 3;

    text-align: center;

    max-width: 900px;

    padding: 0 30px;
}

.hero-content h1
{
    color: #fff;

    font-size: clamp(2rem, 5vw, 4rem);

    font-weight: 700;

    line-height: 1.15;

    text-shadow:
        0 4px 12px rgba(0,0,0,.40);
}

.hero-content p
{
    margin-top: 20px;

    color: rgba(255,255,255,.85);

    font-size: 1.05rem;

    line-height: 1.8;

    text-shadow:
        0 2px 8px rgba(0,0,0,.35);
}

.hero-actions
{
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================================
SECONDARY BANNER
========================================================= */

.secondary-banner
{
    padding: 90px 20px;

    background:
        linear-gradient(
            180deg,
            #f7f8fa,
            #ffffff
        );
}

.secondary-banner-box
{
    max-width: 1300px;

    margin: 0 auto;

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 1fr;

    box-shadow:
        0 15px 60px rgba(0,0,0,.08),
        0 5px 25px rgba(0,0,0,.06);
}

.secondary-image
{
    position: relative;

    overflow: hidden;
}

.secondary-image img
{
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: .6s ease;
}

.secondary-banner-box:hover .secondary-image img
{
    transform: scale(1.05);
}

.secondary-content
{
    padding: 60px;
}

.secondary-content span
{
    display: inline-block;

    margin-bottom: 15px;

    color: #0f5bd7;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.secondary-content h2
{
    font-size: 2.5rem;

    margin-bottom: 20px;

    color: #111;
}

.secondary-content p
{
    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;
}

.secondary-actions
{
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


@media (max-width: 768px)
{
    .hero-banner
    {
        height: 50dvh;
        min-height: 300px;
    }

    .hero-video
    {
        object-fit: cover;

        object-position: center center;

        transform: none;
    }

    .hero-content
    {
        padding: 0 20px;
    }

    .hero-content h1
    {
        font-size: 2rem;
    }

    .hero-content p
    {
        font-size: .95rem;
    }

    .secondary-banner
    {
        padding: 50px 15px;
    }

    .secondary-banner-box
    {
        grid-template-columns: 1fr;
    }

    .secondary-image
    {
        height: 260px;
    }

    .secondary-content
    {
        padding: 35px 25px;
    }

    .secondary-content h2
    {
        font-size: 1.8rem;
    }

    .secondary-actions
    {
        flex-direction: column;
    }

    .secondary-actions a
    {
        width: 100%;
        text-align: center;
    }
}