.hero {
    position: relative;

    width: 100%;
    overflow: hidden;
}


/* ==========================================================
   SLIDE
========================================================== */

.hero-slide {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-repeat: no-repeat;
}


/* ==========================================================
   OVERLAY
========================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 27, 52, .82) 0%,
            rgba(8, 27, 52, .62) 40%,
            rgba(8, 27, 52, .25) 75%,
            rgba(8, 27, 52, .10) 100%
        );
}


/* ==========================================================
   CONTEÚDO
========================================================== */

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;

    padding-top: 40px;
    padding-bottom: 80px;

    color: #fff;
}


/* ==========================================================
   EYEBROW
========================================================== */

.hero-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    font-size: .85rem;
    font-weight: 600;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(255,255,255,.88);
}

.hero-eyebrow i {
    color: var(--secondary);

    font-size: 1.1rem;
}


/* ==========================================================
   TÍTULO
========================================================== */

.hero-title {
    margin: 0;

    max-width: 750px;

    font-family: 'Lora', serif;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -.025em;

    text-shadow:
        0 3px 15px rgba(0,0,0,.25);
}


/* ==========================================================
   SUBTÍTULO
========================================================== */

.hero-subtitle {
    max-width: 620px;

    margin: 24px 0 0;

    font-size: clamp(1.05rem, 1.8vw, 1.3rem);

    line-height: 1.7;

    color: rgba(255,255,255,.88);
}


/* ==========================================================
   AÇÕES
========================================================== */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;

    margin-top: 34px;
}


/* ==========================================================
   BOTÃO PRINCIPAL
========================================================== */

.btn-hero-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 12px 23px;

    border: 0;

    border-radius: 20px;

    background: var(--secondary);

    color: #fff;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.btn-hero-primary:hover {
    background: #b18b36;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}


/* ==========================================================
   BOTÕES SECUNDÁRIOS
========================================================== */

.btn-hero-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding: 11px 20px;

    border: 1px solid rgba(255,255,255,.65);

    border-radius: 50px;

    background: rgba(255,255,255,.08);

    color: #fff;

    backdrop-filter: blur(5px);

    font-weight: 500;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,.18);

    border-color: #fff;

    color: #fff;

    transform: translateY(-2px);
}


/* ==========================================================
   CONTROLES
========================================================== */

.hero-control {
    width: 7%;

    opacity: .55;

    transition: opacity .2s ease;
}

.hero-control:hover {
    opacity: 1;
}


/* ==========================================================
   INDICADORES
========================================================== */

.hero .carousel-indicators {
    z-index: 5;

    margin-bottom: 45px;
}

.hero .carousel-indicators button {
    width: 28px;
    height: 3px;

    margin: 0 4px;

    border: 0;

    border-radius: 10px;

    opacity: .45;
}

.hero .carousel-indicators button.active {
    opacity: 1;

    background-color: var(--secondary);
}


/* ==========================================================
   SCROLL
========================================================== */

.hero-scroll {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 22px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: rgba(255,255,255,.75);

    text-decoration: none;

    font-size: .72rem;

    letter-spacing: .06em;

    text-transform: uppercase;

    transition:
        color .2s ease,
        transform .2s ease;
}

.hero-scroll i {
    font-size: 1rem;

    animation:
        scrollBounce 1.8s infinite;
}

.hero-scroll:hover {
    color: #fff;

    transform:
        translateX(-50%)
        translateY(-3px);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 991.98px) {

    .hero-slide {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 90px;
    }

}


@media (max-width: 767.98px) {

    .hero-slide {
        min-height: 650px;

        background-position: center center !important;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8,27,52,.45),
                rgba(8,27,52,.86)
            );
    }

    .hero-content {
        padding-top: 55px;
        padding-bottom: 100px;

        text-align: center;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-eyebrow {
        font-size: .72rem;

        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 1rem;

        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;

        max-width: 300px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-control {
        display: none;
    }

    .hero .carousel-indicators {
        margin-bottom: 55px;
    }

    .hero-scroll {
        display: none;
    }

}