/* =========================================================
   DESIGN SYSTEM — Pré-Concurso Social PCAC/PMAC
   Tactical · Institutional · Brazilian security
   ========================================================= */

:root {
    /* Surfaces */
    --bg-dark: #0A1320;
    --bg-dark-2: #0E1A2C;
    --bg-dark-3: #142339;
    --bg-bone: #F2EEE6;
    --bg-bone-2: #E8E2D4;
    --bg-paper: #FBF8F2;

    /* Ink */
    --ink: #0A1320;
    --ink-2: #2A3447;
    --ink-muted: #5A6473;
    --ink-soft: #8A93A1;

    /* Brand accents */
    --gold: #E5B233;
    --gold-dark: #B8861E;
    --gold-light: #F1C75A;
    --gold-deep: #6B4F0D;
    --red: #C8202A;
    --red-dark: #9C1820;
    --red-light: #DC3A44;
    --steel: #3C4757;

    /* Status */
    --success-bg: #E8F5E9;
    --success-text: #1B5E20;
    --error-bg: #FFEBEE;
    --error-text: #B71C1C;
    --whatsapp: #25D366;

    /* Type */
    --font-display: 'Oswald', 'Bebas Neue', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Radii */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 14px;
    --r-pill: 999px;

    /* Shadows */
    --sh-sm: 0 1px 2px rgba(10, 19, 32, 0.10);
    --sh-md: 0 10px 28px rgba(10, 19, 32, 0.14);
    --sh-lg: 0 24px 60px rgba(10, 19, 32, 0.28);
    --sh-gold: 0 8px 24px rgba(229, 178, 51, 0.35);
    --sh-red: 0 10px 28px rgba(200, 32, 42, 0.42);

    --maxw: 1240px;
    --gutter: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--bg-bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
    letter-spacing: 0.005em;
}

p { margin: 0; }

em { font-style: normal; color: var(--gold); }

/* ============================================================
   UTILITY STRIP
============================================================ */
.utility-strip {
    background-color: #060D17;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(229, 178, 51, 0.18);
}
.utility-strip__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 10px var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    text-transform: uppercase;
}
.utility-strip__group {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.utility-strip__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}
.utility-strip__meta { white-space: nowrap; }
.utility-strip__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(229, 178, 51, 0.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(229, 178, 51, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(229, 178, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 178, 51, 0); }
}
.utility-strip__sep {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.18);
}
.utility-strip__link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.15s ease;
}
.utility-strip__link:hover { color: var(--gold); }

@media (max-width: 720px) {
    .utility-strip__inner { font-size: 10px; gap: 10px; }
    .utility-strip__group { gap: 8px; }
    .utility-strip__meta--hide-mobile { display: none; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(229, 178, 51, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(200, 32, 42, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: #FFFFFF;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 3px solid var(--gold);
}
.hero__topo {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 60px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 60px);
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}
.hero__hazard {
    position: absolute;
    top: 0;
    left: -10%;
    right: -10%;
    height: 8px;
    background-image: repeating-linear-gradient(
        -45deg,
        var(--gold) 0 14px,
        #060D17 14px 28px
    );
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 28px var(--gutter) 0;
}

.hero__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}
.hero__brand-logo {
    display: block;
    height: 90px;
    width: auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
}
.hero__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--r-pill);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero__nav-link:hover {
    background: rgba(229, 178, 51, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}
.hero__nav-link-arrow {
    display: inline-block;
    color: var(--gold);
    transition: transform 0.2s ease;
}
.hero__nav-link:hover .hero__nav-link-arrow { transform: translateX(3px); }

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: end;
    padding-bottom: 50px;
}

.hero__content {
    padding-top: 8px;
    padding-bottom: 20px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    flex-wrap: wrap;
}
.hero__eyebrow-text { white-space: nowrap; }
.hero__eyebrow-chip {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 6px 12px;
    font-weight: 700;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-gold);
    white-space: nowrap;
}
.hero__eyebrow-divider {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}
.hero__eyebrow-text {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: none;
    font-size: 12px;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.92;
    margin-bottom: 30px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.hero__title-line1 {
    display: block;
    font-size: clamp(22px, 2.6vw, 32px);
    color: var(--gold);
    letter-spacing: 0.16em;
    font-weight: 500;
    margin-bottom: 6px;
}
.hero__title-line2 {
    display: block;
    font-size: clamp(28px, 3.8vw, 48px);
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.005em;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 4px;
}
.hero__title-line3 {
    display: block;
    font-size: clamp(56px, 9vw, 118px);
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 0.95;
    margin-top: 2px;
}
.hero__title-amp {
    display: inline-block;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    font-size: 0.55em;
    margin: 0 0.12em;
    vertical-align: 0.15em;
}
.hero__title-line3 em {
    font-style: normal;
    color: var(--gold);
    text-shadow: 0 4px 24px rgba(229, 178, 51, 0.55);
}

.hero__lede {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero__lede-bar {
    flex-shrink: 0;
    width: 3px;
    align-self: stretch;
    background: var(--gold);
}
.hero__lede-text {
    font-size: clamp(15px, 1.4vw, 17px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}
.hero__lede-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.2s ease, color 0.18s ease;
}
.btn__arrow {
    font-size: 17px;
    transition: transform 0.2s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
    background: var(--red);
    color: #FFFFFF;
    box-shadow: var(--sh-red);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent 0 12px, rgba(255,255,255,0.04) 12px 14px);
    pointer-events: none;
}
.btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(200, 32, 42, 0.55);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}

.btn--xl {
    padding: 22px 44px;
    font-size: 17px;
    letter-spacing: 0.14em;
}

.hero__stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__stat--sep {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.14);
}
.hero__stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    color: var(--gold);
    letter-spacing: 0.005em;
}
.hero__stat-plus {
    color: rgba(229, 178, 51, 0.6);
    font-size: 0.6em;
    margin-left: 2px;
    vertical-align: top;
}
.hero__stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Hero visual / photo */
.hero__visual {
    position: relative;
    align-self: end;
}
.hero__photo-stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 0 0 auto;
}
.hero__photo-bg {
    position: absolute;
    inset: 0;
    bottom: 60px;
    z-index: 0;
}
.hero__photo-shape {
    position: absolute;
    inset: 10% 4% 0 4%;
    background:
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(229, 178, 51, 0.10) 14px 15px),
        linear-gradient(180deg, rgba(229, 178, 51, 0.18) 0%, transparent 100%);
    border: 1px solid rgba(229, 178, 51, 0.35);
    border-radius: var(--r-md);
}
.hero__photo-cross {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--gold);
}
.hero__photo-cross--tl { top: 6%; left: 0; border-right: 0; border-bottom: 0; }
.hero__photo-cross--tr { top: 6%; right: 0; border-left: 0; border-bottom: 0; }
.hero__photo-cross--bl { bottom: 56px; left: 0; border-right: 0; border-top: 0; }
.hero__photo-cross--br { bottom: 56px; right: 0; border-left: 0; border-top: 0; }

.hero__photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    -webkit-mask-image: radial-gradient(ellipse 80% 95% at 50% 45%, #000 60%, transparent 96%);
    mask-image: radial-gradient(ellipse 80% 95% at 50% 45%, #000 60%, transparent 96%);
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.55));
}
.hero__photo-tag {
    position: absolute;
    z-index: 3;
    bottom: 80px;
    right: -8px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 12px 18px 10px;
    font-family: var(--font-display);
    line-height: 1;
    text-align: right;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
    border: 1px solid var(--gold-dark);
}
.hero__photo-tag::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(10, 19, 32, 0.35);
    pointer-events: none;
}
.hero__photo-tag-line {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 2px;
}
.hero__photo-tag-name {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.hero__photo-tag-bottom {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--bg-dark);
    opacity: 0.75;
    border-top: 1px solid rgba(10, 19, 32, 0.35);
    padding-top: 4px;
    text-transform: uppercase;
}
.hero__photo-serial {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Hero ticker */
.hero__ticker {
    position: relative;
    z-index: 1;
    background: #060D17;
    border-top: 1px solid rgba(229, 178, 51, 0.18);
    overflow: hidden;
    padding: 14px 0;
    border-bottom: 0;
}
.hero__ticker-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}
.hero__ticker-track > span:not(.hero__ticker-dot) {
    color: rgba(255, 255, 255, 0.82);
}
.hero__ticker-dot { color: var(--gold); }
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEAD
============================================================ */
.section-head {
    max-width: 760px;
    margin: 0 0 56px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--light { color: #FFFFFF; }

.section-head__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-head--center .section-head__eyebrow { justify-content: center; }
.section-head--light .section-head__eyebrow { color: var(--gold); }
.section-head__eyebrow--light { color: var(--gold); }
.section-head__bar {
    width: 40px;
    height: 2px;
    background: currentColor;
}
.section-head__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    margin-bottom: 18px;
}
.section-head__title em {
    font-style: normal;
    color: var(--gold);
}
.section-head--light .section-head__title { color: #FFFFFF; }
.section-head__lede {
    font-size: 17px;
    color: var(--ink-muted);
    line-height: 1.6;
    max-width: 600px;
}
.section-head--center .section-head__lede { margin: 0 auto; }
.section-head--light .section-head__lede { color: rgba(255, 255, 255, 0.78); }

/* ============================================================
   TARGETS (PCAC vs PMAC)
============================================================ */
.targets {
    background: var(--bg-bone);
    padding: 100px var(--gutter);
    position: relative;
}
.targets::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background-image: repeating-linear-gradient(-45deg, var(--gold) 0 14px, var(--bg-dark) 14px 28px);
}
.targets__inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.targets__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.target-card {
    background: var(--bg-paper);
    border: 1px solid rgba(10, 19, 32, 0.10);
    border-radius: var(--r-md);
    padding: 36px 32px 32px;
    position: relative;
    box-shadow: var(--sh-md);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.target-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 6px;
}
.target-card--civil::before { background: var(--gold); }
.target-card--militar::before { background: var(--red); }
.target-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 19, 32, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.target-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg);
}

.target-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}
.target-card__emblem {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(10, 19, 32, 0.18));
}
.target-card__sigla {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: var(--bg-dark);
    background: linear-gradient(180deg, transparent 55%, var(--gold) 55%, var(--gold) 88%, transparent 88%);
    padding: 0 10px;
    letter-spacing: 0.02em;
}
.target-card--militar .target-card__sigla {
    background: linear-gradient(180deg, transparent 55%, rgba(200, 32, 42, 0.28) 55%, rgba(200, 32, 42, 0.28) 88%, transparent 88%);
}
.target-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--bg-dark);
    line-height: 1.05;
}
.target-card__divider {
    height: 1px;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
    margin-bottom: 22px;
    opacity: 0.18;
}
.target-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.target-card__list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.target-card__list-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-muted);
}
.target-card__list-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.target-card__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(200, 32, 42, 0.7);
    animation: pulse 2s infinite;
    display: inline-block;
}
.target-card__footer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px dashed rgba(10, 19, 32, 0.18);
}
.target-card__footer-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bg-dark);
}
.target-card--civil .target-card__footer-label::before {
    content: '◆ ';
    color: var(--gold-dark);
}
.target-card--militar .target-card__footer-label::before {
    content: '◆ ';
    color: var(--red);
}

/* ============================================================
   OPS — PLANO DE OPERAÇÃO
============================================================ */
.ops {
    background: var(--bg-dark);
    color: #FFFFFF;
    padding: 110px var(--gutter);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.ops__topo {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 70px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 70px),
        radial-gradient(circle at 20% 20%, rgba(229, 178, 51, 0.10) 0%, transparent 45%);
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
    pointer-events: none;
}
.ops__inner {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
}

.ops__list {
    list-style: none;
    padding: 0;
    margin: 0 0 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.ops-item {
    position: relative;
    padding: 36px 32px 38px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    transition: background-color 0.2s ease;
}
.ops-item:hover {
    background-color: rgba(255, 255, 255, 0.025);
}
.ops-item__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    letter-spacing: 0.02em;
}
.ops-item__body { padding-top: 4px; }
.ops-item__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.ops-item__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 460px;
}
.ops-item__tag {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--gold);
    background: rgba(229, 178, 51, 0.10);
    border: 1px solid rgba(229, 178, 51, 0.30);
    padding: 4px 10px;
    border-radius: var(--r-sm);
    text-transform: uppercase;
}

/* Operations emblem */
.ops__emblem {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    position: relative;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}
.ops__emblem-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.ops__emblem-svg text { letter-spacing: 0.22em; }

/* ============================================================
   FORM SECTION
============================================================ */
.form-section {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(229, 178, 51, 0.06) 0%, transparent 50%),
        var(--bg-bone);
    padding: 110px var(--gutter);
    position: relative;
}
.form-section__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-section__brief {
    position: sticky;
    top: 40px;
    padding-top: 8px;
}
.form-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.form-section__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1;
    text-transform: uppercase;
    color: var(--bg-dark);
    margin-bottom: 18px;
}
.form-section__title em {
    font-style: normal;
    color: var(--red);
}
.form-section__lede {
    color: var(--ink-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 460px;
}
.form-section__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-section__bullets li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.5;
}
.form-section__bullets li span {
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
}

/* Form card */
.form-card {
    background: var(--bg-paper);
    padding: 0;
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(10, 19, 32, 0.08);
    position: relative;
    overflow: hidden;
}
.form-card__tape {
    background-image: repeating-linear-gradient(-45deg, var(--gold) 0 14px, var(--bg-dark) 14px 28px);
    color: #FFFFFF;
    text-align: center;
    padding: 0;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-card__tape span {
    background: var(--bg-dark);
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 6px 16px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
}
.form-card__head {
    padding: 32px 32px 0;
    text-align: center;
}
.form-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.form-card__subtitle {
    color: var(--ink-muted);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.5;
}
.form-card__subtitle strong { color: var(--red); font-weight: 700; }

.form { padding: 0 32px 32px; }

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form__field { margin-bottom: 16px; }
.form__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-muted);
    margin-bottom: 6px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.form__input {
    width: 100%;
    height: 52px;
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1px solid rgba(10, 19, 32, 0.14);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__input::placeholder { color: #A5ABB6; }
.form__input:focus {
    outline: none;
    border-color: var(--bg-dark);
    box-shadow: 0 0 0 3px rgba(10, 19, 32, 0.10);
}
.form__input--invalid {
    border-color: var(--error-text);
    box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.10);
}
.form__field-error {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--error-text);
    line-height: 1.4;
    font-weight: 500;
    animation: fadeIn 0.2s ease;
}
.form__phone {
    display: flex;
    align-items: stretch;
    gap: 6px;
}
.form__phone-prefix {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    background: #FFFFFF;
    border: 1px solid rgba(10, 19, 32, 0.14);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    flex-shrink: 0;
}
.form__phone-flag { font-size: 16px; }
.form__input--phone { flex: 1; min-width: 0; }
.form__honeypot {
    position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0;
}
.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    cursor: pointer;
    user-select: none;
}
.form__consent-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.form__consent-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 2px solid rgba(10, 19, 32, 0.30);
    border-radius: 4px;
    background-color: #FFFFFF;
    transition: border-color 0.15s ease, background-color 0.15s ease;
    position: relative;
}
.form__consent-checkbox:checked + .form__consent-check {
    background-color: var(--red);
    border-color: var(--red);
}
.form__consent-checkbox:checked + .form__consent-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.form__consent.is-invalid .form__consent-check {
    border-color: var(--error-text);
    box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.10);
}
.form__consent-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-muted);
}
.form__consent-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--red);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}
.form__consent-link:hover { color: var(--red-dark); }

.form__submit {
    position: relative;
    width: 100%;
    height: 62px;
    margin-top: 18px;
    background: var(--red);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-red);
    overflow: hidden;
}
.form__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent 0 12px, rgba(255, 255, 255, 0.05) 12px 14px);
    pointer-events: none;
}
.form__submit:hover:not(:disabled) {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(200, 32, 42, 0.55);
}
.form__submit:active:not(:disabled) { transform: translateY(0); }
.form__submit:disabled { cursor: wait; opacity: 0.85; }
.form__submit-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.form__submit.is-loading .form__submit-text { display: none; }
.form__submit.is-loading .form__submit-loader { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__lgpd {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(10, 19, 32, 0.04);
    border-left: 3px solid var(--bg-dark);
    border-radius: 2px;
    font-size: 12px;
    color: var(--ink-muted);
    line-height: 1.55;
}
.form__lgpd-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--bg-dark);
    margin-top: 1px;
}
.form__lgpd strong { color: var(--ink); }

/* Success / Waitlist / Duplicate / Error (kept structurally; restyled) */
.form-success, .form-waitlist, .form-duplicate {
    text-align: center;
    padding: 32px;
    animation: fadeIn 0.4s ease;
}
.form-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: rgba(229, 178, 51, 0.15);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    font-family: var(--font-display);
}
.form-success__icon--ok {
    background: rgba(37, 211, 102, 0.15);
    color: #1B7A3C;
    font-size: 42px;
}

.confirm-id {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--ink-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
}
.confirm-id span {
    color: var(--ink);
    font-weight: 700;
    margin-left: 4px;
}

.whatsapp-btn--secondary {
    background: transparent;
    color: var(--whatsapp);
    border: 2px solid var(--whatsapp);
    margin-top: 18px;
}
.whatsapp-btn--secondary:hover {
    background: var(--whatsapp);
    color: #FFFFFF;
}
.form-success__title, .form-waitlist__title, .form-duplicate__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--bg-dark);
    text-transform: uppercase;
}
.form-success__text, .form-waitlist__text, .form-duplicate__text {
    color: var(--ink-muted);
    font-size: 15px;
    max-width: 440px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.form-success__text strong, .form-waitlist__text strong, .form-duplicate__text strong { color: var(--bg-dark); }

.confirm-code {
    margin: 0 auto 24px;
    padding: 20px;
    background:
        repeating-linear-gradient(-45deg, transparent 0 10px, rgba(229, 178, 51, 0.06) 10px 11px),
        var(--bg-paper);
    border: 2px dashed var(--red);
    border-radius: var(--r-sm);
    max-width: 360px;
}
.confirm-code__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.confirm-code__value {
    display: block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.18em;
    color: var(--bg-dark);
    line-height: 1;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    padding: 18px 28px;
    background: var(--whatsapp);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    margin-bottom: 24px;
}
.whatsapp-btn:hover {
    background: #1FB855;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.whatsapp-btn:active { transform: translateY(0); }
.whatsapp-btn__icon { width: 22px; height: 22px; flex-shrink: 0; }

.confirm-steps {
    text-align: left;
    max-width: 380px;
    margin: 0 auto 16px;
    padding-left: 24px;
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.7;
}
.confirm-steps li { margin-bottom: 4px; }
.confirm-steps strong { color: var(--bg-dark); }
.confirm-note { font-size: 13px; color: var(--ink-muted); margin-top: 8px; }
.confirm-note a { color: var(--red); font-weight: 600; text-decoration: underline; }

.form-waitlist__badge, .form-duplicate__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--red);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    border-radius: var(--r-sm);
    margin-bottom: 18px;
    text-transform: uppercase;
}
.form-duplicate__badge { background: var(--bg-dark); }
.form-waitlist__inline-position { display: inline; color: var(--bg-dark); font-weight: 700; }
.form-waitlist__info {
    text-align: left;
    max-width: 460px;
    margin: 0 auto 24px;
    padding: 14px 18px;
    background: rgba(229, 178, 51, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--bg-dark);
    line-height: 1.55;
}
.form-waitlist__info strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-dark);
}
.form-duplicate__status {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(10, 19, 32, 0.05);
    border-radius: var(--r-pill);
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: 24px;
}
.form-duplicate__status strong { color: var(--bg-dark); font-weight: 700; margin-left: 4px; }
.form-duplicate__pending-msg {
    background: rgba(200, 32, 42, 0.06);
    border-left: 3px solid var(--red);
    padding: 12px 16px;
    border-radius: var(--r-sm);
    text-align: left;
    max-width: 460px;
    margin: 0 auto 20px;
    font-size: 14px;
    color: var(--bg-dark);
    line-height: 1.55;
}
.form-duplicate__pending-msg strong { color: var(--red); }
.form-duplicate__check {
    width: 72px; height: 72px;
    margin: 8px auto 18px;
    background: var(--success-bg);
    color: var(--success-text);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 38px; font-weight: bold;
}
.form-duplicate__confirmed { color: var(--bg-dark); font-size: 15px; max-width: 460px; margin: 0 auto; line-height: 1.6; }
.form-duplicate__confirmed strong { color: var(--success-text); }
.form-error {
    margin: 0 32px 32px;
    padding: 14px 16px;
    background: var(--error-bg);
    border-radius: var(--r-sm);
    animation: fadeIn 0.3s ease;
}
.form-error__text { color: var(--error-text); font-size: 14px; text-align: center; margin: 0; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
    background: var(--bg-dark-2);
    color: #FFFFFF;
    padding: 120px var(--gutter);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--gold);
}
.about__hazard {
    position: absolute;
    bottom: 0; left: -10%; right: -10%;
    height: 6px;
    background-image: repeating-linear-gradient(-45deg, var(--gold) 0 14px, var(--bg-dark) 14px 28px);
}
.about__inner {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
}
.about__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about__visual {
    position: relative;
    padding: 0 0 60px 0;
}
.about__photo-stage {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(229, 178, 51, 0.08) 0%, transparent 60%),
        var(--bg-dark-3);
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(229, 178, 51, 0.25);
}
.about__photo-bg {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0 16px, rgba(229, 178, 51, 0.06) 16px 17px),
        radial-gradient(circle at 50% 30%, rgba(229, 178, 51, 0.18) 0%, transparent 60%);
}
.about__photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
}
.about__photo-stripe {
    position: absolute;
    left: 0; right: 0;
    height: 14px;
    background-image: repeating-linear-gradient(-45deg, var(--gold) 0 12px, var(--bg-dark) 12px 24px);
    z-index: 2;
}
.about__photo-stripe--t { top: 0; }
.about__photo-stripe--b { bottom: 0; }

.about__id-card {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 280px;
    background: var(--bg-paper);
    color: var(--bg-dark);
    border-radius: var(--r-sm);
    border: 1px solid rgba(10, 19, 32, 0.18);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: rotate(-2.5deg);
}
.about__id-card-head {
    background: var(--bg-dark);
    color: var(--gold);
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about__id-card-flag { color: var(--gold); }
.about__id-card-body { padding: 14px 16px; }
.about__id-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(10, 19, 32, 0.15);
    font-size: 13px;
}
.about__id-row:last-child { border-bottom: 0; }
.about__id-key {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.about__id-val { font-weight: 600; color: var(--bg-dark); font-size: 14px; }

.about__content { color: #FFFFFF; }
.about__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.about__title em { font-style: normal; color: var(--gold); }
.about__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 16px;
    line-height: 1.65;
}
.about__text strong { color: var(--gold); font-weight: 600; }

.about__creds {
    list-style: none;
    padding: 24px 0 0;
    margin: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.about__creds li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about__creds-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.about__creds-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
}

.about__cta {
    margin-top: 8px;
}

/* ============================================================
   VOICES (testimonials)
============================================================ */
.voices {
    background: var(--bg-bone);
    padding: 110px var(--gutter);
}
.voices__inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.voices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.voice {
    margin: 0;
    padding: 36px 28px 30px;
    background: var(--bg-paper);
    border: 1px solid rgba(10, 19, 32, 0.10);
    border-radius: var(--r-md);
    position: relative;
    box-shadow: var(--sh-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.voice:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}
.voice::before {
    content: '';
    position: absolute;
    top: 0; left: 24px;
    width: 60px;
    height: 4px;
    background: var(--gold);
}
.voice__quote-mark {
    font-family: var(--font-display);
    font-size: 70px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 4px;
    height: 32px;
}
.voice__text {
    margin: 0 0 22px;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.6;
    font-style: italic;
    font-family: var(--font-body);
    quotes: none;
}
.voice__cite {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px dashed rgba(10, 19, 32, 0.15);
    font-style: normal;
}
.voice__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--bg-dark);
    letter-spacing: 0.02em;
}
.voice__role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
    position: relative;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 32, 42, 0.30) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(229, 178, 51, 0.20) 0%, transparent 55%),
        var(--bg-dark);
    color: #FFFFFF;
    padding: 120px var(--gutter);
    overflow: hidden;
    text-align: center;
    border-top: 3px solid var(--gold);
}
.final-cta__hazard {
    position: absolute;
    top: 0; left: -10%; right: -10%;
    height: 6px;
    background-image: repeating-linear-gradient(-45deg, var(--red) 0 14px, var(--bg-dark) 14px 28px);
}
.final-cta__inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.final-cta__eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 28px;
    font-weight: 700;
    text-transform: uppercase;
}
.final-cta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.005em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.final-cta__title em {
    font-style: normal;
    color: var(--gold);
    display: inline-block;
}
.final-cta__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin: 0 auto 36px;
    max-width: 540px;
}
.final-cta__meta {
    margin-top: 22px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #050B14;
    color: rgba(255, 255, 255, 0.65);
    padding: 60px var(--gutter) 30px;
    border-top: 1px solid rgba(229, 178, 51, 0.2);
}
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand-emblem {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(229, 178, 51, 0.06);
    border: 1px solid rgba(229, 178, 51, 0.22);
    border-radius: var(--r-sm);
    align-self: flex-start;
}
.footer__logo {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.footer__brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer__brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer__brand-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.footer__tagline {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    letter-spacing: 0.06em;
}
.footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.footer__col-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}
.footer__links a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer__links a:hover { color: var(--gold); }

.footer__strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(229, 178, 51, 0.18);
    border-bottom: 1px solid rgba(229, 178, 51, 0.18);
    font-family: var(--font-display);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.footer__strip span:nth-child(even) { color: var(--gold); }

.footer__legal {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}
.footer__legal p { margin: 0; }
.footer__legal-fine {
    margin-top: 8px !important;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================================
   MODAL
============================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
.modal[hidden] { display: none; }
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 20, 0.72);
    cursor: pointer;
}
.modal__content {
    position: relative;
    background: var(--bg-paper);
    border-radius: var(--r-md);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh-lg);
    padding: 32px;
    overflow: hidden;
    animation: modalSlideUp 0.25s ease;
    border-top: 4px solid var(--gold);
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 4px 10px;
    border-radius: var(--r-sm);
}
.modal__close:hover { background: var(--bg-bone-2); color: var(--bg-dark); }
.modal__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--bg-dark);
    margin-bottom: 4px;
    padding-right: 30px;
}
.modal__subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}
.modal__body {
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 20px;
    flex: 1;
}
.modal__body h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 18px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.modal__body h3:first-child { margin-top: 0; }
.modal__body p, .modal__body ul {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0 0 10px;
}
.modal__body ul { padding-left: 20px; }
.modal__body li { margin-bottom: 4px; }
.modal__body strong { color: var(--bg-dark); }
.modal__footer-note {
    font-size: 12px !important;
    font-style: italic;
    margin-top: 16px !important;
    padding-top: 14px;
    border-top: 1px solid rgba(10, 19, 32, 0.12);
}
.modal__action {
    width: 100%;
    height: 52px;
    background: var(--bg-dark);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}
.modal__action:hover { background: var(--red); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .form-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-section__brief { position: static; }
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__visual { max-width: 460px; margin: 0 auto; }
    .voices__grid { grid-template-columns: 1fr 1fr; }
    .voices__grid .voice:last-child { grid-column: span 2; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero__content { padding-bottom: 0; text-align: left; }
    .hero__visual { max-width: 400px; margin: 0 auto; }
    .hero__photo-tag { right: 0; }
    .targets__grid { grid-template-columns: 1fr; }
    .ops__list { grid-template-columns: 1fr; }
    .voices__grid {
        grid-template-columns: 1fr;
    }
    .voices__grid .voice:last-child { grid-column: auto; max-width: none; }
    .footer__top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
    :root { --gutter: 20px; }
    .utility-strip__group--right .utility-strip__meta { display: none; }
    .hero__brand-logo { height: 70px; }
    .hero__nav-meta { display: none; }
    .hero__title-line2 { font-size: clamp(22px, 5vw, 32px); }
    .hero__title-line3 { font-size: clamp(48px, 14vw, 76px); }
    .hero__stats { gap: 16px; flex-wrap: wrap; }
    .hero__stat--sep { display: none; }
    .hero__photo-tag {
        bottom: 70px;
        padding: 10px 14px 8px;
    }
    .hero__photo-tag-name { font-size: 24px; }

    .targets { padding: 70px var(--gutter); }
    .target-card { padding: 28px 24px; }
    .target-card__sigla { font-size: 36px; }
    .target-card__name { font-size: 18px; }

    .ops { padding: 70px var(--gutter); }
    .ops-item { padding: 26px 22px; grid-template-columns: 1fr; gap: 8px; }
    .ops-item__num { font-size: 48px; }
    .ops-item__title { font-size: 22px; }
    .ops-item__tag { position: static; align-self: flex-start; margin-top: 8px; }

    .form-section { padding: 70px var(--gutter); }
    .form-card__head, .form { padding-left: 22px; padding-right: 22px; }
    .form__row { grid-template-columns: 1fr; gap: 0; }
    .form-card__title { font-size: 24px; }

    .about { padding: 80px var(--gutter); }
    .about__creds { grid-template-columns: 1fr; gap: 18px; }
    .about__id-card { position: static; transform: none; margin: 20px auto 0; }

    .voices { padding: 70px var(--gutter); }
    .final-cta { padding: 80px var(--gutter); }

    .footer__cols { grid-template-columns: 1fr; gap: 24px; }
}
