body {
    font-family: "bricolage-grotesque", sans-serif;
}

:root {
    --button-primary: #009476;
    --dark: #4d4d4d;
    --white: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .75);
    --line: rgba(255, 255, 255, .20);
    --panel: rgba(0, 0, 0, .28);
    --panel2: rgba(0, 0, 0, .36);
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-image: url("./images/bg-horizontal.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* overlay para dar contraste no texto */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.container>* {
    position: relative;
    z-index: 2;
}

.hero>.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    letter-spacing: .08em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
}

.hero-subtitle {
    text-align: center;
    font-weight: 700;
    font-style: italic;
    color: var(--button-primary);
}

.feature-row {
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    padding: 1rem 0;
    margin: 1.25rem auto 1.25rem;
    max-width: 980px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .03em;
    font-size: .95rem;
    white-space: nowrap;
}

.feature i {
    font-size: 1.8rem;
    color: var(--white);
    opacity: .95;
    line-height: 1;
}

.cta-line {
    text-align: center;
    color: var(--white);
    font-size: larger;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 2rem 0 0.5rem 0;
}

.form-panel {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(6px);
}

.form-control.hero-input {
    background: #b8b7b7;
    border: 2px solid var(--white);
    color: var(--white);
    height: 52px;
    border-radius: 10px;
    padding-left: 14px;
}

.form-control.hero-input::placeholder {
    color: rgba(255, 255, 255, .65);
}

.form-control.hero-input:focus {
    border-color: #009476;
    background: #b8b7b7;
    color: var(--white);
}

.btn-cta {
    height: 45px;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--button-primary);
    border: 0;
}

.btn-cta:hover {
    opacity: 0.7 !important;
    background-color: var(--button-primary) !important;
    color: var(--white) !important;
}

.brand-mark {
    margin-top: auto;
    width: 100%;
    padding: 0 24px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.brand-small-left {
    height: 60px;
    opacity: .9;
    z-index: 1;
}

.brand-small-right {
    height: 32px;
    opacity: .9;
    z-index: 1;
}

.brand-small-cobo {
    height: 60px;
    opacity: .9;
}

.brand-small-vertex {
    height: 35px;
    opacity: .9;
}

.brand-main {
    height: 120px;
}

.hero-top-logo {
    text-align: center;
}

.brand-main-top {
    height: 120px;
}

.btn:focus-visible { 
    color: var(--white) !important;
    background-color: var(--button-primary) !important;
}

.btn-cta:active {
    color: var(--white) !important;
    background-color: var(--button-primary) !important; 
}

.btn-cta:disabled {
    color: var(--white) !important;
    background-color: var(--button-primary) !important; 
    opacity: 0.7 !important;
}

@media (max-width: 768px) {
    .feature-row {
        padding: .8rem 0;
    }

    .feature {
        white-space: normal;
        font-size: .92rem;
    }

    .brand-mark {
        width: 100%;
        padding: 0 14px 12px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .brand-main {
        order: -1;
        height: 80px;
    }

    .brand-left {
        order: 1;
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .brand-small-cobo {
        height: 40px;
    }

    .brand-small-vertex {
        height: 20px;
        margin-bottom: .35rem !important;
    }

    .padding-mobile {
        padding: 20px 0;
    }

    .brand-main-top {
        height: 80px;
    }
}