:root {
    /* Manual de marca */
    --brand-ink: #283751;
    --brand-gold: #DDA852;
}

/* Background base */
.septem-auth-band {
    min-height: 100vh;
    background: radial-gradient(900px 500px at 20% 10%, rgba(221,168,82,.14), transparent 60%), linear-gradient(180deg, rgba(40,55,81,.94) 0%, rgba(19,27,41,.96) 100%);
    position: relative;
    overflow: hidden; /* necessário para o ripple ficar contido */
}

/* Botão primário */
.btn-septem-primary {
    background: var(--brand-ink);
    border-color: var(--brand-ink);
    color: #fff;
}

.btn-septem-primary:hover {
    filter: brightness(.95);
    color: #fff;
}

/* Texto institucional */
.text-septem-ink {
    color: var(--brand-ink) !important;
}

/* Hover dos botões outline do hero: texto todo branco */
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-white:hover,
.btn-white:focus {
    background-color: var(--brand-ink);
    border-color: var(--brand-ink);
    color: #fff;
}

.btn-outline-secondary:hover .text-septem-ink,
.btn-outline-secondary:hover .text-muted,
.btn-outline-secondary:focus .text-septem-ink,
.btn-outline-secondary:focus .text-muted,
.btn-white:hover .text-septem-ink,
.btn-white:hover .text-muted,
.btn-white:focus .text-septem-ink,
.btn-white:focus .text-muted {
    color: #fff !important;
}

/* Substituições de inline style */
.septem-hero {
    min-height: 100%;
}

.septem-hero-with-background {
    min-height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.septem-hero-with-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.septem-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.septem-hero-illustration {
    max-width: 50%;
}

.septem-title {
    padding-bottom: 15rem !important;
}

.septem-hero-lead {
    max-width: 560px;
    opacity: .9;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-white {
    border-color: transparent;
    background: #fff;
    color: rgba(24, 28, 33, 0.9);
}

@media (max-width: 768px) {
    .septem-title {
        padding-bottom: 0 !important;
    }
}