    /* =========================================
   HERO
========================================= */

.hero-site {
    position: relative;
    overflow: hidden;
     /* min-height: 580px;  */
        /* min-height: calc(100vh - 0px); */
    display: flex;
    align-items: center;

    background: #0f1b26;
    color: #ffffff;
    padding: 50px 0;
}


/* =========================================
   CONTEÚDO
========================================= */

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
}


/* Pequeno texto acima do H1 */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;

    color: #00fff0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;

    margin-right: 12px;

    background: #02beb2;
}


/* H1 */

.hero-content h1 {
    margin: 0 0 28px;

    max-width: 700px;

    /* font-size: clamp(22px, 5vw, 48px);
    line-height: 1.05;
    font-weight: 700; */
    letter-spacing: -0.035em;

    color: #ffffff;
}


/* Subheadline */

.hero-subheadline {
    max-width: 650px;

    margin: 0 0 36px;

    color: rgba(255, 255, 255, .72);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   BOTÕES
========================================= */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 30px;
}


.hero-actions .btn {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 26px;

    border-radius: 6px;

    font-size: 15px;
    font-weight: 700;

    transition: all .3s ease;
}


/* CTA principal */

.btn-primary-hero {
    color: #0f1b26;
    background: #02beb2;
    border: 1px solid #02beb2;
}

.btn-primary-hero:hover {
    color: #0f1b26;
    background: #00fff0;
    border-color: #00fff0;

    transform: translateY(-2px);
}

.btn-primary-hero i {
    margin-left: 10px;
    font-size: 18px;
}


/* CTA secundário */

.btn-secondary-hero {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
}

.btn-secondary-hero:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border-color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   LINHA DE CONFIANÇA
========================================= */

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    color: rgba(255, 255, 255, .48);

    font-size: 13px;
    line-height: 1.8;
}

.hero-trust .separator {
    color: #02beb2;
    font-weight: 700;
}


/* =========================================
   ÁREA VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Imagem */

.hero-image-wrapper {
    position: relative;
    z-index: 3;

    width: 90%;
    max-width: 470px;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .35);
}

.hero-image-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(2, 190, 178, .15),
            transparent 50%
        );

    pointer-events: none;
}


.hero-image {
    display: block;

    width: 100%;
    height: 560px;

    object-fit: cover;
}


/* =========================================
   EFEITOS DE FUNDO
========================================= */

.hero-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: #02beb2;

    opacity: .13;

    filter: blur(80px);

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


.hero-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(0, 255, 240, .18);
}


.hero-circle-1 {
    width: 420px;
    height: 420px;

    right: -20px;
    top: 50px;
}


.hero-circle-2 {
    width: 300px;
    height: 300px;

    right: 40px;
    top: 110px;

    border-color: rgba(2, 190, 178, .12);
}


/* =========================================
   CARD FLUTUANTE
========================================= */

.hero-floating-card {
    position: absolute;

    z-index: 5;

    left: 0;
    bottom: 45px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 20px;

    background: rgba(15, 27, 38, .92);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 10px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .3);

    backdrop-filter: blur(10px);
}


.floating-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #0f1b26;
    background: #02beb2;

    font-size: 19px;
}


.hero-floating-card strong,
.hero-floating-card span {
    display: block;
}


.hero-floating-card strong {
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}


.hero-floating-card span {
    margin-top: 2px;

    color: rgba(255, 255, 255, .55);

    font-size: 12px;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991.98px) {

    .hero-site {
        padding: 80px 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-content h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
        margin-top: 60px;
    }

}


@media (max-width: 575.98px) {

    .hero-site {
        padding: 65px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-subheadline {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        font-size: 12px;
    }

    .hero-visual {
        min-height: 430px;
        margin-top: 45px;
    }

    .hero-image-wrapper {
        width: 92%;
    }

    .hero-image {
        height: 450px;
    }

    .hero-floating-card {
        left: 0;
        bottom: 20px;
    }

    .hero-circle-1 {
        width: 330px;
        height: 330px;
    }

    .hero-circle-2 {
        width: 250px;
        height: 250px;
    }

}