/* ============================================================
   B2S ONBOARDING
   ARQUIVO: style.css
   ------------------------------------------------------------
   ORGANIZAÇÃO:
   01. Reset e configurações gerais
   02. Variáveis / identidade visual
   03. Tipografia
   04. Barra superior
   05. Controle de telas
   06. Tela inicial / Hero
   07. Formulário de nome
   08. Botões
   09. Elementos visuais do Hero
   10. Estrutura geral das seções
   11. Boas-vindas
   12. Missão, visão e valores
   13. Horários / jornada
   14. Alertas
   15. Segurança e EPIs
   16. Bonificações
   17. Benefícios
   18. RH / contatos
   19. Termos e aceite
   20. Tela de conclusão
   21. Rodapé
   22. Responsividade
   ============================================================ */


/* ============================================================
   01. RESET E CONFIGURAÇÕES GERAIS
   ============================================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #f4f5f6;
    color: #121416;
    min-height: 100vh;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}


/* ============================================================
   02. VARIÁVEIS / IDENTIDADE VISUAL B2S
   ============================================================ */

:root {

    /* Cores principais */
    --black: #090a0b;
    --black2: #111315;

    --yellow: #ffd900;
    --yellow2: #ffea4d;

    --white: #ffffff;

    /* Cores auxiliares */
    --muted: #a8adb4;
    --line: #2c3035;
    --blue: #0b4f79;

    /* Sombras e bordas */
    --shadow: 0 24px 70px rgba(0, 0, 0, .25);
    --radius: 24px;
}


/* ============================================================
   03. TIPOGRAFIA
   ============================================================ */

h1,
h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    line-height: .9;
    letter-spacing: -1px;
}

h1 {
    font-size: clamp(62px, 8vw, 118px);
}

h2 {
    font-size: clamp(48px, 6vw, 82px);
}

h1 span,
h2 span {
    color: var(--yellow);
}


/* ============================================================
   04. BARRA SUPERIOR / HEADER
   ============================================================ */

.topbar {
    height: 76px;

    background: rgba(8, 9, 10, .96);
    color: var(--white);

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

    padding: 0 clamp(18px, 4vw, 64px);

    position: sticky;
    top: 0;
    z-index: 50;

    border-bottom: 1px solid #24272a;
}


/* Logo / marca */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    
    color: var(--white);
    text-decoration: none;
}

.brand-mark {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;

    color: var(--yellow);
}

.brand-name {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
}


/* Informações do colaborador */

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 12px;
}

.employee-name {
    font-weight: 700;
    color: var(--white);
}

.progress-label {
    color: #aeb2b7;
}


/* Mini barra de progresso */

.progress-mini {
    width: 100px;
    height: 6px;

    background: #303338;
    border-radius: 99px;

    overflow: hidden;
}

.progress-mini span {
    display: block;
    height: 100%;
    width: 0;

    background: var(--yellow);

    transition: width .4s ease;
}


/* ============================================================
   05. CONTROLE DE TELAS
   ============================================================ */

.screen {
    display: none;

    min-height: calc(100vh - 76px);

    animation: fadeIn .4s ease;
}

.screen.active {
    display: block;
}


/* Animação de entrada das telas */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}


/* ============================================================
   06. TELA INICIAL / HERO
   ============================================================ */

.hero {
    min-height: calc(100vh - 76px);

    display: grid;
    grid-template-columns: 1.08fr .92fr;
}


/* Lado esquerdo */

.hero-copy {
    padding: clamp(45px, 8vw, 110px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #0a0b0c;
    color: var(--white);

    position: relative;
    overflow: hidden;
}


/* Elemento decorativo circular */

.hero-copy::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(255, 217, 0, .14);
    border-radius: 50%;

    right: -250px;
    bottom: -250px;
}


/* Pequeno título acima do título principal */

.eyebrow {
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #6b6f75;

    margin-bottom: 16px;
}

.dark-screen .eyebrow,
.hero-copy .eyebrow {
    color: var(--yellow);
}


/* Texto do Hero */

.hero-copy p {
    max-width: 620px;

    color: #c5c9ce;

    font-size: 17px;
    line-height: 1.7;

    margin: 28px 0;
}


/* ============================================================
   07. FORMULÁRIO DE NOME DO COLABORADOR
   ============================================================ */

.name-form {
    width: min(560px, 100%);

    position: relative;
    z-index: 2;
}


/* Label */

.name-form label {
    display: block;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    margin-bottom: 9px;

    color: var(--white);
}


/* Campo */

.name-form input {
    width: 100%;
    height: 58px;

    border: 1px solid #3a3d40;

    background: #17191b;
    color: var(--white);

    border-radius: 12px;

    padding: 0 18px;

    outline: none;

    transition: .2s;
}


/* Campo quando selecionado */

.name-form input:focus {
    border-color: var(--yellow);

    box-shadow:
        0 0 0 3px rgba(255, 217, 0, .12);
}


/* Mensagem de erro */

.field-error {
    display: block;

    color: #ff7b7b;

    min-height: 18px;

    font-size: 12px;

    margin-top: 7px;
}


/* ============================================================
   08. BOTÕES
   ============================================================ */

.btn {
    border: 0;
    border-radius: 12px;

    padding: 15px 22px;

    font-weight: 900;
    font-size: 12px;

    letter-spacing: .7px;

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

    gap: 18px;

    transition:
        transform .2s,
        box-shadow .2s,
        opacity .2s;
}


/* Hover */

.btn:hover:not(:disabled) {
    transform: translateY(-2px);
}


/* Botão principal */

.btn-primary {
    background: var(--yellow);
    color: #0a0b0c;

    box-shadow:
        0 12px 30px rgba(255, 217, 0, .16);
}

.btn-primary:hover:not(:disabled) {
    box-shadow:
        0 16px 34px rgba(255, 217, 0, .28);
}


/* Botão desabilitado */

.btn-primary:disabled {
    opacity: .35;

    cursor: not-allowed;

    transform: none;
}


/* Botão secundário */

.btn-secondary {
    background: #e6e8ea;
    color: #101214;
}


/* Botão grande */

.btn-large {
    padding: 19px 28px;
    font-size: 13px;
}


/* Espaçamento do botão do formulário */

.name-form .btn {
    margin-top: 8px;
}


/* ============================================================
   09. ELEMENTOS VISUAIS DO HERO
   ============================================================ */

.hero-visual {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #24272a,
            #08090a 60%,
            #17191b
        );

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


/* Linhas amarelas */

.industrial-visual::before,
.industrial-visual::after {
    content: "";

    position: absolute;

    background: var(--yellow);

    opacity: .8;
}

.industrial-visual::before {
    width: 150%;
    height: 12px;

    transform: rotate(-42deg);

    top: 18%;
    left: -30%;
}

.industrial-visual::after {
    width: 150%;
    height: 12px;

    transform: rotate(-42deg);

    bottom: 18%;
    right: -30%;
}


/* Engrenagens decorativas */

.gear {
    position: absolute;

    border: 3px solid rgba(255, 217, 0, .45);

    border-radius: 50%;

    width: 280px;
    height: 280px;
}

.gear::before,
.gear::after {
    content: "";

    position: absolute;

    inset: 18%;

    border: 3px solid rgba(255, 217, 0, .2);

    border-radius: 50%;
}

.gear-a {
    right: -80px;
    top: 80px;
}

.gear-b {
    left: -100px;
    bottom: -80px;

    width: 340px;
    height: 340px;
}


/* Card visual */

.visual-card {
    position: relative;
    z-index: 2;

    width: min(370px, 75%);

    padding: 44px;

    background: rgba(10, 11, 12, .88);

    border: 1px solid rgba(255, 217, 0, .55);

    box-shadow: var(--shadow);

    color: var(--white);
}

.visual-number {
    display: block;

    color: var(--yellow);

    font-family: "Barlow Condensed";

    font-size: 24px;

    margin-bottom: 35px;
}

.visual-card strong {
    display: block;

    font-family: "Barlow Condensed";

    font-size: 64px;

    line-height: .85;
}

.visual-card > span:last-child {
    display: block;

    margin-top: 28px;

    color: #b8bdc2;
}


/* ============================================================
   10. ESTRUTURA GERAL DAS SEÇÕES
   ============================================================ */

.section-wrap {
    width: min(1220px, 92%);

    margin: auto;

    padding: clamp(55px, 8vw, 100px) 0;
}

.section-wrap.narrow {
    width: min(980px, 92%);
}


/* Títulos das seções */

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 40px;

    margin-bottom: 45px;
}

.section-heading > p {
    max-width: 420px;

    margin: 0;
}

.section-heading.compact {
    margin-top: 60px;
    margin-bottom: 30px;
}


/* Texto principal */

.section-wrap p {
    line-height: 1.7;

    color: #555d64;

    margin: 14px 0;
}

.lead {
    font-size: 25px !important;

    line-height: 1.35 !important;

    font-weight: 700;
}


/* ============================================================
   11. BOAS-VINDAS
   ============================================================ */

.welcome-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 70px;

    align-items: center;
}


/* Card de frase */

.quote-panel {
    background: #0b0c0d;

    color: var(--white);

    border-radius: var(--radius);

    padding: 60px;

    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    position: relative;

    overflow: hidden;
}


/* Círculo decorativo */

.quote-panel::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border: 35px solid var(--yellow);

    border-radius: 50%;

    right: -110px;
    top: -100px;

    opacity: .15;
}


/* Aspas */

.quote-mark {
    font-family: Georgia;

    font-size: 140px;

    line-height: .5;

    color: var(--yellow);

    position: absolute;

    top: 75px;
    left: 55px;
}


/* Título do card */

.quote-panel h3 {
    font-family: "Barlow Condensed";

    font-size: 42px;

    line-height: .95;

    max-width: 450px;

    position: relative;
    z-index: 1;
}

.quote-panel p {
    color: var(--yellow);

    font-weight: 800;

    position: relative;
    z-index: 1;
}


/* ============================================================
   12. MISSÃO, VISÃO E VALORES
   ============================================================ */

.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* Cards institucionais */

.info-card {
    padding: 38px;

    border-radius: var(--radius);

    min-height: 280px;

    position: relative;
}


/* Card escuro */

.info-card.dark {
    background: #0b0c0d;

    color: var(--white);
}


/* Card amarelo */

.info-card.yellow {
    background: var(--yellow);

    color: #111;
}


/* Número do card */

.card-index {
    font-family: "Barlow Condensed";

    font-size: 42px;

    font-weight: 900;

    opacity: .35;
}


/* Título */

.info-card h3 {
    font-family: "Barlow Condensed";

    font-size: 38px;

    margin: 20px 0 10px;
}

.info-card p {
    color: inherit;

    opacity: .88;

    max-width: 620px;
}


/* Subtítulos */

.subheading {
    font-family: "Barlow Condensed";

    font-size: 32px;

    margin: 55px 0 20px;
}


/* Valores */

.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.values-grid article {
    background: var(--white);

    border: 1px solid #e0e2e5;

    border-radius: 16px;

    padding: 22px;

    min-height: 145px;
}

.values-grid b {
    display: block;

    color: #101214;

    font-size: 13px;

    margin-bottom: 9px;
}

.values-grid span {
    font-size: 13px;

    color: #6c7278;

    line-height: 1.55;
}


/* ============================================================
   13. HORÁRIOS / JORNADA
   ============================================================ */

.schedule-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* Card de horário */

.schedule-card {
    background: var(--white);

    border: 1px solid #e0e2e5;

    border-radius: var(--radius);

    padding: 34px;

    min-height: 220px;
}


/* Card de horário destacado */

.schedule-card.featured {
    background: #0b0c0d;

    color: var(--white);

    border-color: #0b0c0d;
}


/* Horário */

.schedule-card .time {
    font-family: "Barlow Condensed";

    font-weight: 900;

    font-size: 44px;

    color: var(--yellow);
}


/* Título */

.schedule-card h3 {
    font-family: "Barlow Condensed";

    font-size: 28px;

    margin: 8px 0;
}


/* Texto */

.schedule-card p {
    margin: 5px 0;

    color: #596067;
}

.featured p {
    color: #d7d9dc;
}

.schedule-card small {
    display: block;

    color: #888;

    margin-top: 18px;
}


/* Informação sobre saída */

.schedule-end {
    margin: 18px 0 26px;

    padding: 18px 22px;

    border: 1px solid rgba(255, 217, 0, .55);

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: rgba(255, 217, 0, .07);
}

.schedule-end strong {
    color: var(--yellow);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 1.25rem;

    letter-spacing: .03em;
}


/* ============================================================
   14. ALERTAS E AVISOS
   ============================================================ */

.alert-box {
    display: flex;

    gap: 22px;

    align-items: flex-start;

    background: #fff6c7;

    border: 1px solid #f2db57;

    border-radius: 18px;

    padding: 25px;

    margin: 24px 0;
}


/* Ícone */

.alert-icon {
    display: grid;

    place-items: center;

    width: 40px;
    height: 40px;

    background: var(--yellow);

    border-radius: 50%;

    font-weight: 900;
}

.alert-box strong {
    font-size: 14px;
}

.alert-box p {
    margin: 6px 0 0;

    color: #5f5b43;
}


/* ============================================================
   15. SEGURANÇA E EPIs
   ============================================================ */

.dark-screen {
    background: #0a0b0c;

    color: var(--white);
}

.dark-screen .section-wrap p {
    color: #b7bcc2;
}

.dark-screen .section-heading > p {
    color: #a7adb3;
}


/* Banner principal de segurança */

.safety-banner {
    background:
        linear-gradient(
            110deg,
            #17191b,
            #0b0c0d
        );

    border: 1px solid #303338;

    border-radius: var(--radius);

    padding: 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}


/* Símbolo */

.big-symbol {
    font-size: 70px;

    color: var(--yellow);

    font-weight: 900;
}


/* Título */

.safety-banner h3 {
    font-family: "Barlow Condensed";

    font-size: 48px;

    margin: 6px 0;
}


/* Elemento decorativo */

.safety-visual {
    font-family: "Barlow Condensed";

    font-weight: 900;

    font-size: 120px;

    color: rgba(255, 217, 0, .13);
}


/* Cards de segurança */

.safety-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 18px;
}

.safety-card {
    border: 1px solid #303338;

    background: #121416;

    border-radius: 20px;

    padding: 30px;

    min-height: 220px;
}

.safety-card.warning {
    border-color: #635a16;
}

.safety-icon {
    font-size: 38px;
}

.safety-card h3 {
    font-family: "Barlow Condensed";

    font-size: 27px;

    margin: 20px 0 8px;

    color: var(--yellow);
}

.safety-card p {
    margin: 0;
}

.safety-footer {
    text-align: center;

    color: #9ea4aa;

    margin: 25px 0;
}


/* ============================================================
   16. BONIFICAÇÕES
   ============================================================ */

/* Destaque financeiro */

.money-highlight {
    font-family: "Barlow Condensed";

    font-size: 56px;

    font-weight: 900;

    color: #111;

    background: var(--yellow);

    border-radius: 18px;

    padding: 13px 22px;

    white-space: nowrap;
}

.money-highlight small {
    display: block;

    font-family: Inter;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 800;
}


/* Período */

.period-card {
    background: #0b0c0d;

    color: var(--white);

    border-radius: 18px;

    padding: 27px;

    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}

.period-card strong {
    color: var(--yellow);

    font-size: 12px;

    letter-spacing: 1px;
}

.period-card span {
    font-weight: 700;
}

.period-card small {
    color: #9da3aa;
}


/* Critérios */

.criteria-list {
    border: 1px solid #e0e2e5;

    border-radius: 18px;

    overflow: hidden;

    background: var(--white);
}

.criteria-list div {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 22px;

    border-bottom: 1px solid #e7e9eb;
}

.criteria-list div:last-child {
    border-bottom: 0;
}

.criteria-list b {
    font-family: "Barlow Condensed";

    font-size: 26px;

    color: #111;
}

.criteria-list span {
    font-weight: 600;

    color: #444b51;
}


/* Aviso */

.notice {
    margin-top: 18px;

    padding: 20px;

    border-radius: 14px;

    background: #eef0f2;

    color: #565e65;

    text-align: center;

    font-size: 13px;
}


/* Divisor */

.bonus-divider {
    height: 1px;

    background: #dfe2e5;

    margin: 70px 0 0;
}


/* Assiduidade */

.assiduidade-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* Perdas */

.loss-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.loss-grid span {
    background: #fff0f0;

    border: 1px solid #ffd2d2;

    border-radius: 13px;

    padding: 17px;

    font-weight: 600;

    color: #7e3030;
}


/* Aviso amarelo */

.yellow-notice {
    background: #fff6c7;

    border: 1px solid #f0d95e;

    color: #554c17;

    text-align: left;
}


/* ============================================================
   17. PAGAMENTOS
   ============================================================ */

.payments-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin: 28px 0;
}


/* Card de pagamento */

.payment-card {
    display: flex;

    gap: 20px;

    align-items: center;

    padding: 24px;

    border-radius: 20px;

    border: 1px solid rgba(255, 217, 0, .28);

    background: var(--white);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .07);
}


/* Card destacado */

.payment-card.featured {
    background: var(--yellow);

    color: #111;
}


/* Dia do pagamento */

.payment-day {
    min-width: 78px;

    height: 78px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    background: #111;

    color: var(--yellow);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 1.7rem;

    font-weight: 900;

    text-align: center;
}

.payment-card.featured .payment-day {
    background: var(--white);

    color: #111;
}


/* Conteúdo */

.payment-card h3 {
    margin: 0 0 5px;
}

.payment-card p {
    margin: 0;
}


/* ============================================================
   18. BENEFÍCIOS
   ============================================================ */

.benefits-screen {
    background:
        linear-gradient(
            135deg,
            #f7f5ff,
            #fff 55%,
            #f5f7f8
        );
}


/* Grid */

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* Card */

.benefit-card {
    border-radius: 25px;

    padding: 32px;

    min-height: 320px;
}


/* Cores dos cards */

.benefit-card.purple {
    background: #e6d8ff;
}

.benefit-card.orange {
    background: #ffe0ce;
}

.benefit-card.pink {
    background: #f7d9e9;
}


/* Ícone */

.benefit-icon {
    font-size: 28px;

    font-weight: 900;

    margin-bottom: 35px;
}


/* Título */

.benefit-card h3 {
    font-family: "Barlow Condensed";

    font-size: 34px;
}


/* Texto */

.benefit-card p {
    font-size: 14px;
}


/* Lista */

.benefit-card ul {
    list-style: none;

    margin-top: 18px;
}

.benefit-card li {
    padding: 7px 0;

    border-top: 1px solid rgba(0, 0, 0, .12);

    font-size: 13px;
}


/* Observação */

.benefits-note {
    background: var(--white);

    border: 1px solid #e1e2e6;

    border-radius: 15px;

    padding: 18px;

    margin-top: 18px;

    color: #666;

    font-size: 13px;
}


/* ============================================================
   19. RH / CONTATOS
   ============================================================ */

.hr-card {
    display: flex;

    align-items: center;

    gap: 25px;

    background: #0b0c0d;

    color: var(--white);

    border-radius: 25px;

    padding: 38px;
}


/* Avatar */

.hr-avatar {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: var(--yellow);

    color: #111;

    display: grid;

    place-items: center;

    font-family: "Barlow Condensed";

    font-size: 30px;

    font-weight: 900;
}


/* Cargo */

.hr-card span {
    color: var(--yellow);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* Nome */

.hr-card h3 {
    font-family: "Barlow Condensed";

    font-size: 42px;
}


/* Descrição */

.hr-card p {
    color: #adb2b7;

    margin: 4px 0;
}


/* Contatos */

.contacts-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin: 28px 0;
}

.contact-card {
    margin: 0;

    height: 100%;
}

.contact-phone {
    display: inline-block;

    margin-top: 8px;

    color: #111;

    font-weight: 700;

    text-decoration: none;
}

.contact-phone:hover {
    text-decoration: underline;
}

.dark-screen .contact-phone {
    color: var(--white);
}


/* FAQ */

.faq-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin: 18px 0 35px;
}

.faq-grid div {
    background: var(--white);

    border: 1px solid #e0e2e5;

    border-radius: 17px;

    padding: 23px;
}

.faq-grid b,
.faq-grid span {
    display: block;
}

.faq-grid span {
    font-size: 13px;

    color: #72787e;

    line-height: 1.5;

    margin-top: 8px;
}


/* ============================================================
   20. POLÍTICA DE RESPEITO E ASSÉDIO
   ============================================================ */

.respect-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin: 28px 0;
}


/* Card */

.respect-card {
    padding: 24px;

    border: 1px solid rgba(255, 217, 0, .35);

    border-radius: 20px;

    background: rgba(255, 255, 255, .04);
}


/* Ícone */

.respect-card > span {
    display: inline-grid;

    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--yellow);

    color: #111;

    font-weight: 900;

    margin-bottom: 15px;
}


/* Título */

.respect-card h3 {
    margin: 0 0 8px;
}


/* Texto */

.respect-card p {
    margin: 0;

    line-height: 1.65;

    color: rgba(255, 255, 255, .82);
}


/* Aviso da política */

.respect-note {
    padding: 18px 20px;

    margin: 18px 0 26px;

    border-left: 4px solid var(--yellow);

    background: rgba(255, 217, 0, .08);

    line-height: 1.6;
}


/* ============================================================
   21. TERMOS E ACEITE
   ============================================================ */

.terms-box {
    background: #17191b;

    border: 1px solid #303338;

    border-radius: 20px;

    padding: 30px;

    margin: 30px 0;

    color: #d2d6da;
}

.terms-box p {
    color: #c6cbd0 !important;

    margin: 0 0 15px;
}

.terms-box p:last-child {
    margin: 0;
}


/* Checkbox de aceite */

.consent {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 22px;

    border: 1px solid #4a4d51;

    border-radius: 17px;

    background: #111315;

    color: var(--white);

    cursor: pointer;
}


/* Checkbox original escondido */

.consent input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


/* Checkbox visual */

.checkmark {
    width: 27px;
    height: 27px;

    min-width: 27px;

    border: 2px solid #767b80;

    border-radius: 7px;

    position: relative;
}


/* Checkbox marcado */

.consent input:checked + .checkmark {
    background: var(--yellow);

    border-color: var(--yellow);
}

.consent input:checked + .checkmark::after {
    content: "✓";

    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    color: #111;

    font-weight: 900;
}


/* Texto do aceite */

.consent strong {
    display: block;

    font-size: 13px;
}

.consent small {
    display: block;

    color: #a9afb5;

    margin-top: 5px;
}


/* Área de envio */

.submit-area {
    margin-top: 25px;
}

.submit-status {
    min-height: 20px !important;

    color: #ffb3b3 !important;

    font-size: 13px;
}


/* ============================================================
   22. TELA DE CONCLUSÃO
   ============================================================ */

.completion {
    min-height: calc(100vh - 76px);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 60px 20px;
}


/* Ícone de conclusão */

.completion-mark {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--yellow);

    font-size: 48px;

    font-weight: 900;

    margin-bottom: 25px;

    box-shadow:
        0 18px 45px rgba(255, 217, 0, .25);
}


/* Título */

.completion h2 {
    font-size: 76px;
}


/* Texto */

.completion > p {
    max-width: 580px;

    color: #626970;

    line-height: 1.7;

    margin: 18px 0;
}


/* Dados registrados */

.completion-data {
    display: flex;

    gap: 10px;

    margin: 15px 0 35px;

    flex-wrap: wrap;

    justify-content: center;
}

.completion-data div {
    min-width: 180px;

    background: var(--white);

    border: 1px solid #e0e2e5;

    border-radius: 15px;

    padding: 18px;

    text-align: left;
}

.completion-data small {
    display: block;

    color: #7a8086;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.completion-data strong {
    display: block;

    margin-top: 5px;
}


/* Mensagem final */

.completion h3 {
    font-family: "Barlow Condensed";

    font-size: 35px;
}

.completion .closing {
    max-width: 500px;

    color: #737980;

    line-height: 1.6;

    margin: 8px 0 25px;
}


/* ============================================================
   23. RODAPÉ
   ============================================================ */

.site-footer {
    background: #090a0b;

    color: #9da2a8;

    padding: 25px clamp(18px, 4vw, 64px);

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* ============================================================
   24. RESPONSIVIDADE
   TABLETS
   ============================================================ */

@media (max-width: 900px) {

    /* Header */

    .topbar {
        height: auto;

        min-height: 70px;

        padding: 12px 18px;
    }

    .topbar-right {
        gap: 8px;
    }

    .employee-name {
        display: none;
    }

    .progress-mini {
        width: 70px;
    }


    /* Hero */

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-copy {
        padding: 65px 25px;
    }

    .hero-copy h1 {
        font-size: 70px;
    }


    /* Grids */

    .welcome-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .schedule-grid,
    .safety-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .assiduidade-grid,
    .loss-grid {
        grid-template-columns: 1fr;
    }

    .respect-grid {
        grid-template-columns: 1fr;
    }


    /* Segurança */

    .safety-visual {
        display: none;
    }


    /* Bonificação */

    .money-highlight {
        display: inline-block;

        margin-top: 25px;
    }


    /* Conclusão */

    .completion h2 {
        font-size: 58px;
    }
}


/* ============================================================
   25. RESPONSIVIDADE
   CELULARES
   ============================================================ */

@media (max-width: 560px) {

    /* Header */

    .brand-name {
        display: none;
    }

    .progress-label {
        font-size: 10px;
    }


    /* Seções */

    .section-wrap {
        width: 90%;

        padding: 55px 0;
    }


    /* Grids */

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        gap: 12px;
    }


    /* Tipografia */

    h2 {
        font-size: 52px;
    }

    .lead {
        font-size: 21px !important;
    }

    .hero-copy h1 {
        font-size: 58px;
    }

    .visual-card strong {
        font-size: 52px;
    }


    /* Cards */

    .schedule-card,
    .safety-card,
    .benefit-card {
        padding: 25px;
    }


    /* Segurança */

    .safety-banner {
        padding: 25px;
    }

    .safety-banner h3 {
        font-size: 38px;
    }


    /* Bonificações */

    .money-highlight {
        font-size: 46px;
    }

    .period-card {
        display: block;
    }

    .period-card > * {
        display: block;

        margin-bottom: 8px;
    }


    /* Pagamentos */

    .payments-grid {
        grid-template-columns: 1fr;
    }


    /* Contatos */

    .contacts-grid {
        grid-template-columns: 1fr;
    }


    /* Política de respeito */

    .respect-grid {
        grid-template-columns: 1fr;
    }


    /* Horários */

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-end {
        flex-direction: column;

        align-items: flex-start;
    }


    /* Conclusão */

    .completion h2 {
        font-size: 48px;
    }

    .completion-data {
        width: 100%;
    }

    .completion-data div {
        width: 100%;
    }


    /* Rodapé */

    .site-footer {
        display: block;

        line-height: 2;
    }
}