/* =================================================================
   JUICY FOODS — STYLES.CSS  v3 (pixel-accurate rebuild)
   Paleta: Canva JSON + inspeção visual do protótipo
   Display: Barlow Condensed  |  Body: DM Sans
================================================================= */

@font-face {
    font-family: 'ED Aughris';
    src: url('Typography/ED Aughris-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('Typography/PPNeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('Typography/PPNeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('Typography/PPNeueMontreal-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('Typography/PPNeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
    /* Cores (extraídas do JSON + eyedrop do protótipo) */
    --cream: #F6F4EC;
    --navy: #0A2540;
    --navy-deep: #040D16;
    --orange: #f2661c;
    --orange-dark: #ce5516;
    --orange-light: rgba(242, 102, 28, .15);
    --orange-hover: #e05a16;
    --white: #FFFFFF;
    --border-light: #E4DFD6;
    --border-dark: rgba(255, 255, 255, .10);
    --text-body: #2E3036;
    --text-muted: #747987;
    --text-on-dark: rgba(255, 255, 255, .72);

    /* Tipografia */
    --f-display: 'ED Aughris', 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    --f-body: 'PP Neue Montreal', 'DM Sans', system-ui, sans-serif;

    /* Geometry */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 36px;
    --r-pill: 9999px;

    /* Shadows */
    --sh-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --sh-md: 0 8px 28px rgba(10, 37, 64, .10);
    --sh-lg: 0 20px 56px rgba(10, 37, 64, .18);
    --sh-ora: 0 8px 24px rgba(206, 85, 22, .32);
}

/* ── RESET ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--f-body);
    font-size: 16px;
    background: var(--cream);
    color: var(--text-body);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: var(--f-body);
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 20px;
}

@media (min-width: 768px) {
    .container {
        width: 90%;
        padding-inline: 0;
    }
}

.narrow {
    max-width: 820px;
    margin-inline: auto;
}

.center {
    text-align: center;
}

/* ── TIPOGRAFIA GLOBAL ───────────────────────────────────────── */
.section-title {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4.5vw, 2.9rem);
    font-weight: normal;
    line-height: 1.08;
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin-top: 12px;
}

.text-navy {
    color: var(--navy);
}

.text-white {
    color: var(--white);
}

/* ── BADGE ───────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    font-family: var(--f-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    line-height: 1;
}

.badge-orange {
    background: var(--orange);
    color: var(--white);
}

/* Badge pill inclinado — pill rotacionada, formato preservado */
.badge-pill-italic {
    display: inline-block;
    padding: 10px 28px;
    border-radius: var(--r-pill);
    background: var(--orange);
    color: var(--white);
    font-family: var(--f-body);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transform: rotate(-7deg);
    box-shadow: 0 6px 0 #9b3610;
    margin-bottom: 16px;
}

/* ── BOTÕES ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border-radius: var(--r-pill);
    border: 2px solid transparent;
    font-family: var(--f-body);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, transform .18s, box-shadow .18s;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 22px;
    font-size: .84rem;
    letter-spacing: .01em;
}

.btn-lg {
    padding: 15px 34px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 0 var(--orange-dark);
    transition: background .15s, transform .12s, box-shadow .12s;
}

.btn-orange:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--orange-dark);
}

.btn-orange:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--orange-dark);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: #071d33;
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

/* ── CARDS ───────────────────────────────────────────────────── */
.dark-card {
    background: var(--navy);
    border-radius: var(--r-xl);
    padding: 40px 28px;
    color: var(--white);
}

@media (min-width: 768px) {
    .dark-card {
        padding: 56px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 244, 236, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(228, 223, 214, .55);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 12px;
    gap: 16px;
}

/* Grupo esquerdo: logo + CTA */
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 44px;
    width: auto;
    display: block;
}

/* CTA no cabeçalho (ao lado do logo) */
.header-cta {
    flex-shrink: 0;
}

/* Nav cápsula (direita) */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--r-pill);
    overflow: hidden;
    gap: 0;
    box-shadow: var(--sh-sm);
}

.main-nav ul li a {
    display: block;
    padding: 9px 22px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
    transition: color .15s, background .15s;
}

.main-nav ul li a:hover {
    color: var(--orange);
}

/* Separadores verticais entre itens */
.nav-sep {
    width: 1px;
    align-self: stretch;
    background: var(--border-light);
    flex-shrink: 0;
}

/* Burger (mobile) */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .2s;
}

@media (max-width: 860px) {
    .nav-burger {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-110%);
        transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .28s, visibility .28s;
        box-shadow: var(--sh-md);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .main-nav.open {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        border: none;
        border-radius: 0;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li a {
        text-align: center;
        width: 100%;
    }

    .nav-sep {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.section-hero {
    background: #0A2540;
    padding-top: 44px;
    padding-bottom: 56px;
}

/* Tag row */
.hero-tag-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}

/* Pill badge for "Quantidade limitada" */
.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border: none;
    border-radius: var(--r-pill);
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .14);
}

.hero-tag-dot {
    color: var(--orange);
    font-size: 1rem;
    line-height: 1;
}

/* Two-column grid */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

@media (min-width: 900px) {
    .hero-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
        align-items: center;
    }
}

/* Title */
.hero-title {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 5.8vw, 3.6rem);
    font-weight: normal;
    line-height: 1.05;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--orange);
}

.hero-desc {
    font-size: .95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 28px;
    max-width: 460px;
}

/* CTA button bottom margin */
.hero-copy .btn {
    margin-bottom: 24px;
}

.hero-checks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-top: 0;
    font-size: .84rem;
    color: rgba(255, 255, 255, .65);
}

.hero-checks li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ico-dot {
    color: var(--orange);
    font-size: 1rem;
    line-height: 1;
}

.ico-check {
    color: var(--orange);
    font-weight: normal;
    margin-right: 7px;
}

/* Stat cards column */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Top row: 2 cards side by side */
.hero-stats-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .hero-stats-top {
        grid-template-columns: 1fr 1fr;
    }
}

.stat-card {
    background: rgba(255, 255, 255, .14);
    border: none;
    border-radius: var(--r-lg);
    padding: 22px 24px;
    transition: background .2s, transform .2s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-3px);
}

/* Wide bottom card (SIF + ATM) */
.stat-card--wide {
    background: rgba(255, 255, 255, .14);
}

.stat-num {
    display: block;
    font-family: var(--f-display);
    font-size: 2.6rem;
    font-weight: normal;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 7px;
}

.stat-num--orange {
    color: var(--orange);
    font-size: 2rem;
}

.stat-lbl {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.4;
}

.stat-lbl--orange {
    color: var(--orange);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   CANDIDATURA / FORMULÁRIO
═══════════════════════════════════════════════════════════════ */
.section-candidatura {
    padding-block: 40px 56px;
}

/* Dark header card — centered content */
.cand-header-card {
    text-align: center;
    margin-bottom: 0;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.cand-title {
    font-family: var(--f-display);
    font-size: clamp(2.6rem, 5.5vw, 3.8rem);
    font-weight: normal;
    line-height: 1.05;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 14px;
    margin-bottom: 0;
}

.cand-sub {
    font-size: .9rem;
    color: rgba(255, 255, 255, .72);
    margin-top: 12px;
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.6;
}

/* Feature items row inside dark card */
.cand-features {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 28px;
}

@media (min-width: 640px) {
    .cand-features {
        gap: 12px 80px;
    }
}

.cand-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    line-height: 1.45;
    text-align: left;
    max-width: 160px;
}

/* Orange transparent square with orange checkmark */
.cand-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(242, 102, 28, 0.20);
    border-radius: 6px;
    color: var(--orange);
    font-size: .85rem;
    font-weight: normal;
    margin-top: 1px;
}

/* Form area — white, encostada no dark card */
.cand-form-area {
    background: var(--white);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    padding: 32px 24px 40px;
    max-width: 100%;
    margin-top: 0;
}

@media (min-width: 640px) {
    .cand-form-area {
        padding: 36px 40px 48px;
    }
}



/* White form card */
.form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .form-card {
        padding: 40px 44px;
    }
}

.form-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.form-phase-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Form grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 580px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label,
.field-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-body);
}

.field input,
.field select {
    padding: 13px 16px;
    background: #FAF8F4;
    border: 1px solid var(--border-light);
    border-radius: var(--r-sm);
    font-family: var(--f-body);
    font-size: .93rem;
    color: var(--navy);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(206, 85, 22, .14);
    background: var(--white);
}

.field input::placeholder {
    color: #AAAAAA;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230A2540' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Tags */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.tag-item {
    position: relative;
    cursor: pointer;
}

.tag-item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.tag {
    display: inline-block;
    padding: 9px 20px;
    background: #FAF8F4;
    border: 1px solid var(--border-light);
    border-radius: var(--r-pill);
    font-size: .87rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    user-select: none;
    transition: background .15s, border-color .15s, color .15s;
}

.tag-item input:checked+.tag {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.tag:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.form-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.form-hint {
    font-size: .8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   O CONVITE
═══════════════════════════════════════════════════════════════ */
.section-convite {
    padding-block: 72px;
    background: var(--cream);
}

.convite-card {
    background: var(--white);
    border: 1px solid rgba(228, 223, 214, .5);
    border-radius: 24px;
    padding: 56px 48px 48px;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, .04),
        0 4px 12px rgba(0, 0, 0, .06),
        0 16px 40px rgba(0, 0, 0, .08),
        0 32px 64px rgba(0, 0, 0, .05);
}

.jf-icon {
    width: 68px;
    height: 68px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--white);
    letter-spacing: -.04em;
    /* Sombra estilo botão laranja */
    box-shadow: 0 6px 0 var(--orange-dark);
}

.convite-eyebrow {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.convite-body {
    font-size: .9rem;
    line-height: 1.72;
    color: var(--text-muted);
    max-width: 460px;
    margin: 14px auto 28px;
    text-align: center;
}

/* Linha divisora */
.convite-divider {
    display: block;
    width: 56px;
    height: 2px;
    background: var(--border-light);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.convite-sub {
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════════
   COMO PRODUZIMOS
═══════════════════════════════════════════════════════════════ */
.section-producao {
    padding-block: 60px;
}

.section-producao .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.producao-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: -6px;
}

.producao-body {
    max-width: 100%;
    text-align: center;
    margin-top: 10px;
}

.producao-body p {
    font-size: .97rem;
    line-height: 1.72;
    color: var(--text-body);
    margin-bottom: 16px;
}

.producao-destaque {
    color: var(--navy) !important;
}

/* ═══════════════════════════════════════════════════════════════
   BENEFÍCIOS
═══════════════════════════════════════════════════════════════ */
.section-beneficios {
    padding-block: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    text-align: left;
}

@media (min-width: 560px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.benefit-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .05);
    text-align: left;
    transition: transform .22s, box-shadow .22s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(10, 37, 64, .10);
}

.benefit-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(242, 102, 28, .12);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 800;
    border-radius: 10px;
    margin-bottom: 16px;
}

.beneficio-title {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.1;
    color: var(--navy);
    text-transform: none;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.58;
}

/* ═══════════════════════════════════════════════════════════════
   GALERIA
═══════════════════════════════════════════════════════════════ */
.section-galeria {
    background: var(--cream);
    padding-block: 56px 64px;
}

@media (min-width: 640px) {
    .section-galeria {
        padding-block: 80px 100px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 56px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: var(--r-xl);
    /* Mais arredondado */
    overflow: hidden;
    background: #E4DDD1;
    border: none;
    /* Sem borda, apenas clean */
    box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
    /* Sombra mais suave */
    aspect-ratio: 10 / 13;
    /* Tall portrait aspect ratio matching image */
    margin: 0;
    transition: transform .28s, box-shadow .28s;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    display: none;
    /* Escondido conforme imagem de referência */
}

/* ═══════════════════════════════════════════════════════════════
   VAGAS
═══════════════════════════════════════════════════════════════ */
.section-vagas {
    background: var(--cream);
    padding-block: 80px;
}

.vagas-card {
    position: relative;
    margin-inline: auto;
    padding: 64px 24px 40px;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
    background: var(--navy);
    /* Ensure dark background */
}

@media (min-width: 640px) {
    .vagas-card {
        padding: 80px 48px 56px;
    }
}

.vagas-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(-7deg);
    z-index: 2;
    color: var(--navy) !important;
    /* Escrito em azul */
}

.vagas-card .section-title {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    /* Slightly larger matching image */
}

.vagas-sub {
    font-size: 1.05rem;
    /* slightly larger */
    color: var(--white);
    max-width: 680px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-weight: 500;
}

.phases-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 640px;
    margin: 40px auto 48px;
    /* Extra bottom margin for button */
}

@media (min-width: 480px) {
    .phases-row {
        grid-template-columns: 1fr 1fr;
    }
}

.phase-box {
    padding: 28px 24px;
    border-radius: var(--r-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left align */
    text-align: left;
    /* left align */
    gap: 12px;
    background: rgba(255, 255, 255, .12);
    border: none;
    transition: background .2s;
}

.phase-box--active {
    background: rgba(0, 0, 0, .2);
    border: 1px solid var(--orange);
}

.phase-label {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.phase-desc {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}

.phase-tag {
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 4px;
}

.phase-tag--done {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
}

.phase-tag--open {
    background: var(--orange);
    color: var(--white);
}

.vagas-card .btn {
    width: 100%;
    font-size: 1.15rem;
}

@media (min-width: 480px) {
    .vagas-card .btn {
        width: auto;
        min-width: 320px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   DEPOIMENTO
═══════════════════════════════════════════════════════════════ */
.section-depoimento {
    background: var(--cream);
    padding-block: 80px;
}

.depo-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 64px 24px 32px;
    /* Increased top padding for the badge */
    margin-inline: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

@media (min-width: 640px) {
    .depo-card {
        padding: 80px 48px 48px;
        flex-direction: row;
        text-align: left;
        gap: 32px;
    }
}

.depo-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(-7deg);
    z-index: 2;
}

.depo-avatar-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
    flex-shrink: 0;
}

.depo-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depo-content {
    flex: 1;
}

.depo-name {
    font-weight: 800;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.depo-role {
    font-size: .88rem;
    color: #928b81;
    /* Matching the muted brownish color from the image */
    margin-bottom: 12px;
}

.depo-quote {
    font-style: normal;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #6B7280;
    /* Slate color */
    margin: 0;
}

/* Let's remove the pseudo-elements since the quotes are in the HTML text */
.depo-quote::before,
.depo-quote::after {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding-block: 56px 32px;
}

@media (min-width: 640px) {
    .site-footer {
        padding-block: 80px 40px;
    }
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 40px;
    /* matched the prominent logo size */
    width: auto;
}

.footer-desc {
    font-size: .88rem;
    color: #899fb1;
    /* light steel blue tint */
    line-height: 1.5;
    margin-top: 16px;
    max-width: 440px;
    font-weight: 400;
}

.footer-cols {
    display: flex;
    gap: 40px;
    /* smaller gap for mobile */
    flex-wrap: wrap;
    justify-content: flex-start;
    /* left align on mobile */
}

@media (min-width: 640px) {
    .footer-inner {
        gap: 40px;
        padding-bottom: 40px;
    }
    .footer-cols {
        gap: 80px;
        justify-content: flex-end;
    }
}

.footer-col h4 {
    font-size: .85rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    font-size: .88rem;
    color: #899fb1;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: .8rem;
    color: #899fb1;
    text-align: left;
    /* matched left alignment */
    padding-top: 24px;
}

.footer-copy a {
    color: #899fb1;
    text-decoration: underline;
    transition: color .15s;
}

.footer-copy a:hover {
    color: var(--white);
}

/* ─── PÁGINA LEGAL / POLÍTICA DE PRIVACIDADE ───────────────── */
.legal-page {
    background-color: var(--beige-light);
    color: var(--navy);
}

.legal-main {
    padding: 120px 0 80px;
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 960px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 24px;
}

.back-link {
    display: inline-block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
    transition: transform .15s;
}

.back-link:hover {
    transform: translateX(-4px);
}

.legal-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 8px;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.legal-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 32px 0;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin: 36px 0 16px;
    line-height: 1.3;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.65;
    color: #333333;
    margin-bottom: 16px;
}

.legal-list,
.legal-ordered-list {
    margin: 16px 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li,
.legal-ordered-list li {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #333333;
}

.legal-callout {
    background: #FAF8F4;
    border-left: 4px solid var(--orange);
    padding: 20px 24px;
    border-radius: var(--r-sm);
    margin: 28px 0;
}

.legal-callout h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.legal-callout p {
    margin-bottom: 0;
    font-size: .95rem;
}

.legal-callout code {
    background: #EFECE6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.legal-contact-box {
    background: var(--navy);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--r-sm);
    margin-top: 40px;
}

.legal-contact-box h3 {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.legal-contact-box p {
    color: #E2E8F0;
    margin-bottom: 0;
}

.legal-contact-box a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

.legal-footer-nav {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

@media (max-width: 768px) {
    .legal-main {
        padding: 90px 0 40px;
    }

    .legal-card {
        padding: 24px 18px;
    }
}