/* ============================================================
   ORHEN — DESIGN SYSTEM (RV01)
   Fonte única de verdade para todas as páginas.
   Tema dark permanente — obsidian/graphite · acento cobre metálico
   Tipografia: Manrope (títulos) · Public Sans (corpo) · JetBrains Mono (técnico)

   Nota de migração: os NOMES dos tokens (--green-700, --gold-500,
   --warm-900 etc.) e das classes de componente foram mantidos para não
   exigir reescrever cada regra do zero — só os VALORES mudaram para a
   nova paleta. --accent-on-light e --gold-800 (que existiam para
   garantir contraste do dourado sobre fundo branco) hoje apontam para
   o mesmo cobre, já que não existe mais fundo claro no site.
   ============================================================ */

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

/* ============================================================
   ORHEN DESIGN SYSTEM — TOKENS
   Primitive → Semantic → Component
   ============================================================ */
:root {
    /* --- PRIMITIVE: paleta de marca RV01 --- */
    --obsidian: #152922;      /* fundo principal / seções escuras */
    --graphite: #1E3A2E;      /* fundo alternado, cards, formulários */
    --copper: #B99955;        /* acento primário, CTAs, links, ícones */
    --copper-light: #D4B676;  /* hover do acento */
    --arch-white: #F8FAFC;    /* títulos e texto de alto contraste */
    --silver: #94A3B8;        /* texto de apoio / parágrafos */
    --wa-green: #16A34A;      /* exclusivo botões WhatsApp */
    --wa-green-light: #22C55E;

    /* --- PRIMITIVE: escala do verde (alias de compatibilidade -> RV01) --- */
    --green-900: var(--obsidian);
    --green-800: var(--obsidian);
    --green-700: var(--obsidian);   /* MARCA / fundo escuro principal */
    --green-600: var(--graphite);   /* fundo alternado / card escuro */
    --green-500: var(--graphite);
    --green-400: var(--copper);     /* texto sobre fundo escuro */
    --green-100: var(--graphite);
    --green-50:  var(--graphite);   /* não há mais "fundo de seção clara" */

    /* --- PRIMITIVE: escala do dourado (alias -> cobre RV01) --- */
    --gold-50:  var(--graphite);
    --gold-300: var(--copper-light);
    --gold-500: var(--copper);      /* MARCA */
    --gold-600: var(--copper-light);
    --gold-800: var(--copper);      /* não há mais fundo branco para contrastar */

    /* --- PRIMITIVE: neutros (alias -> obsidian/graphite/arch-white/silver) --- */
    --warm-50:  var(--obsidian);
    --warm-100: var(--graphite);
    --warm-200: rgba(255, 255, 255, .06);
    --warm-500: var(--silver);
    --warm-700: var(--silver);
    --warm-900: var(--arch-white);
    --white: var(--arch-white);

    /* --- SEMANTIC --- */
    --primary: var(--arch-white);       /* era institucional; nas páginas é cor de título */
    --primary-light: var(--graphite);
    --primary-dark: var(--obsidian);
    --accent: var(--copper);
    --accent-light: var(--copper-light);
    --accent-dark: var(--copper-light);
    --accent-on-light: var(--copper);   /* idêntico a --accent: não há mais fundo claro */
    --dark: var(--silver);              /* corpo de texto */
    --light: var(--silver);
    --bg: var(--obsidian);
    --surface: var(--graphite);
    --border: rgba(255, 255, 255, .06);
    --gray-dark: var(--arch-white);
    --gray-light: rgba(255, 255, 255, .1);

    /* --- FUNCIONAIS --- */
    --success: var(--wa-green);
    --warning: #C9871B;
    --error: #EF4444;

    /* --- TIPOGRAFIA --- */
    --font-display: 'Manrope', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-tech: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

    /* --- RAIO (identidade RV01: cantos discretos, 4-8px) --- */
    --radius-sm: 4px;
    --radius-md: 4px;    /* botões, inputs, badges, ícones */
    --radius-lg: 8px;    /* cards e tiles */
    --radius-xl: 8px;    /* não há raio maior neste sistema */
    --radius-full: 999px;

    /* --- SOMBRAS --- */
    --shadow-1: 0 1px 3px rgba(0, 0, 0, .2);
    --shadow-2: 0 4px 14px rgba(0, 0, 0, .25);
    --shadow-3: 0 20px 40px rgba(0, 0, 0, .35);
    --shadow-gold: 0 20px 40px rgba(217, 119, 6, .1);   /* sombra âmbar do hover de card, valor da spec */
    --shadow-sm: var(--shadow-1);
    --shadow-md: var(--shadow-2);
    --shadow-lg: var(--shadow-3);
    --shadow-xl: var(--shadow-3);
    --shadow-nav-scrolled: 0 10px 15px -3px rgba(0, 0, 0, .2);
    --shadow-fab: 0 25px 50px -12px rgba(22, 101, 52, .4);

    /* --- ESPAÇAMENTO (escala 4) --- */
    --space-1: 4px;   --space-2: 8px;   --space-3: 12px;
    --space-4: 16px;  --space-6: 24px;  --space-8: 32px;
    --space-12: 48px; --space-16: 64px; --space-20: 80px;
    --space-30: 120px;

    /* --- CONTAINER --- */
    --container: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--silver);
    background: var(--obsidian);
    overflow-x: hidden;
    position: relative;
}


/* Títulos sempre em Manrope; H1/H2 em extrabold (800), o resto em bold (700) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--arch-white);
}

h1, h2 {
    font-weight: 800;
}

.hero h1 {
    font-weight: 800;
}

.stat-number {
    font-family: var(--font-display);
}

/* Eyebrow / kicker — mono técnico, o rótulo típico do sistema RV01 */
.eyebrow {
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--copper);
    display: block;
    margin-bottom: var(--space-3);
}

.on-dark .eyebrow,
.eyebrow--on-dark {
    color: var(--copper);
}

/* HEADER — fixo, transparente no topo, sólido ao rolar */
header {
    background: transparent;
    color: var(--arch-white);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

header nav { height: 80px; }

header.scrolled {
    background: rgba(21, 41, 34, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-nav-scrolled);
}

nav {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-6);
}

.logo {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo:hover {
    filter: drop-shadow(0 0 12px rgba(185, 153, 85, 0.35));
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-8);
}

@media (max-width: 1100px) {
    .nav-links { gap: var(--space-6); }
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(185, 153, 85, 0.3);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Página atual marcada no menu */
.nav-links a[aria-current="page"] {
    color: var(--accent);
}

.nav-links a[aria-current="page"]::before {
    width: 100%;
}

/* Título mantido para leitores de tela e SEO quando a logo o substitui */
.sr-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-links a:hover::before {
    width: 100%;
}

/* CTA do header — cobre, como todo CTA primário (base44).
   Seletor "a.cta-header" (não só ".cta-header") para vencer a
   especificidade de ".nav-links a", já que o botão vive dentro do <ul> do menu. */
a.cta-header {
    background: var(--copper);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-header svg {
    width: 20px;
    height: 20px;
    fill: none;
    flex-shrink: 0;
}

a.cta-header:hover {
    background: var(--copper-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-2);
}

.cta-header:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-whatsapp:focus-visible,
.whatsapp-button:focus-visible,
.mobile-bar a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(185, 153, 85, .45);
}

/* HERO — obsidian RV01 */
.hero {
    background: var(--obsidian);
    color: var(--white);
    padding: var(--space-30) var(--space-6) var(--space-30);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO COM VÍDEO — capa animada de obra/campo, conteúdo alinhado à
   esquerda por cima de um gradiente que garante legibilidade (RV01 §7) */
.hero--video {
    text-align: left;
    justify-content: flex-start;
    background-color: var(--obsidian);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--obsidian) 0%, rgba(21, 41, 34, .55) 45%, rgba(21, 41, 34, .18) 100%);
    z-index: 1;
}

.hero-video-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 128px;
    background: linear-gradient(to top, var(--obsidian), transparent);
    z-index: 1;
}

/* Variante para hero de conteúdo centralizado (páginas internas):
   escurece por igual em vez do gradiente esquerda->direita do vídeo
   do topo, que pressupõe texto alinhado à esquerda. */
.hero-video-overlay--centered {
    background:
        radial-gradient(ellipse 720px 480px at 50% 50%, rgba(21, 41, 34, .55) 0%, rgba(21, 41, 34, .35) 45%, rgba(21, 41, 34, .12) 72%, transparent 100%),
        linear-gradient(180deg, rgba(21, 41, 34, .25) 0%, rgba(21, 41, 34, .18) 55%, rgba(21, 41, 34, .45) 100%);
}

/* Sombra suave para o texto se sustentar sobre qualquer trecho do vídeo,
   mesmo fora do centro do degradê radial. */
.hero--page.on-dark .eyebrow,
.hero--page.on-dark h1,
.hero--page.on-dark p {
    text-shadow: 0 2px 16px rgba(0, 0, 0, .55);
}

.hero--video .hero-content {
    margin: 0;
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.hero--video .hero-buttons,
.hero--video .trust-inline {
    justify-content: flex-start;
}

/* Hero de página interna: mesma linguagem, altura contida */
.hero--page {
    min-height: 0;
    padding: var(--space-20) var(--space-6) var(--space-16);
}

@media (min-width: 1024px) {
    .hero--page { padding: var(--space-30) var(--space-6) var(--space-20); }
}

.hero--page h1 { font-size: clamp(32px, 4.2vw, 48px); }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 45%, rgba(185, 153, 85, 0.10) 0%, transparent 55%),
        radial-gradient(circle at 82% 78%, rgba(30, 58, 46, 0.45) 0%, transparent 55%);
    pointer-events: none;
    animation: gradientShift 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="rgba(185, 153, 85,0.1)"/><circle cx="80" cy="60" r="1" fill="rgba(185, 153, 85,0.08)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

/* Hero de página interna SEM vídeo: o brilho decorativo criava uma
   quebra visível de tom onde o hero termina. Sem vídeo, fica só a
   cor sólida obsidian, uniforme do topo ao fim da seção. */
.hero--page:not(:has(.hero-video))::before,
.hero--page:not(:has(.hero-video))::after {
    display: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: translateY(0px); }
    50% { opacity: 0.85; transform: translateY(20px); }
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(185, 153, 85, 0.35);
    }
    50% {
        box-shadow: 0 12px 34px rgba(185, 153, 85, 0.55);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInText {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes revealText {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes underlineHover {
    from {
        width: 0;
        left: 0;
    }
    to {
        width: 100%;
        left: 0;
    }
}

@keyframes slideInLeftStagger {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightStagger {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animações de Texto */
.hero h1 {
    animation: slideInDown 0.8s ease-out 0.2s both !important;
    letter-spacing: -1px;
}

.hero-subtitle {
    animation: fadeInText 1s ease-out 0.4s both !important;
}

.hero-buttons {
    animation: slideInUp 0.8s ease-out 0.6s both !important;
}

section h2 {
    animation: slideInDown 0.8s ease-out !important;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0;
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.section-subtitle {
    animation: fadeInText 0.9s ease-out 0.3s both !important;
}

.ose-intro {
    animation: slideInUp 0.8s ease-out 0.2s both !important;
}

.ose-intro h3 {
    animation: fadeInText 0.8s ease-out 0.3s both;
}

.ose-intro p {
    animation: fadeInText 0.9s ease-out 0.4s both;
}

.trust-band {
    animation: slideInUp 0.6s ease-out !important;
}

/* Hover effect moderno nos textos */
a:not(.btn-primary):not(.btn-secondary):not(.cta-header):not(.whatsapp-button) {
    position: relative;
    transition: color 0.3s ease;
}

a:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.cta-header):not(.whatsapp-button):not(.frente-link):not(.logo)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

a:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):not(.cta-header):not(.whatsapp-button):not(.frente-link):not(.logo):hover::after {
    width: 100%;
}

.mobile-bar a::after { content: none; }

/* Animação nos labels de frentes */
.frente-label {
    animation: fadeInText 0.8s ease-out !important;
}

.frente-title {
    animation: slideInUp 0.8s ease-out 0.1s both !important;
}

.frente-card p {
    animation: fadeInText 0.9s ease-out 0.2s both;
}

/* H1 — 56 → 34px, serifa 600, palavra-chave em dourado */
.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: var(--space-6);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .highlight {
    color: var(--gold-500);
}

/* Lead — 18px / 1.7 */
.hero-subtitle {
    font-size: 18px;
    margin-bottom: var(--space-12);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ---------- BOTÕES (DS: 48px padrão, 56px hero, raio 10px) ---------- */
.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary svg,
.btn-secondary svg,
.whatsapp-button svg,
.mobile-bar svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Primário — cobre com texto branco, confirmado por medição direta no
   base44 ao vivo. Nota: mede ~2.7:1 de contraste (abaixo do AA 4.5:1),
   mas a fidelidade ao layout de referência foi priorizada pelo usuário. */
.btn-primary {
    background: var(--copper);
    color: var(--white);
    border: none;
    box-shadow: none;
}

.btn-primary svg { fill: none; }

.btn-primary:hover {
    background: var(--copper-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-2);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* .btn-whatsapp: classe aditiva sem efeito próprio — por decisão do
   usuário (base44), os CTAs em pílula ficam cobre mesmo quando abrem
   WhatsApp; o verde fica reservado só para o FAB redondo flutuante. */

/* Outline cobre — ação secundária sobre fundo escuro */
.btn-secondary {
    background: transparent;
    color: var(--copper);
    border: 1.5px solid rgba(185, 153, 85, .3);
}

.btn-secondary svg { fill: var(--copper); }

.btn-secondary:hover {
    background: rgba(185, 153, 85, 0.1);
    color: var(--copper-light);
    border-color: var(--copper-light);
    transform: translateY(-1px);
}

/* Outline neutro — variante em arch-white, hover realça a borda em cobre */
.btn-secondary.on-light {
    color: var(--arch-white);
    border-color: rgba(255, 255, 255, .2);
}

.btn-secondary.on-light svg { fill: var(--arch-white); }

.btn-secondary.on-light:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--arch-white);
    border-color: var(--copper);
}

/* Terciário — "link saber mais": texto cobre com seta */
.btn-tertiary {
    color: var(--copper);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: gap 0.25s ease, color 0.25s ease;
}

.btn-tertiary::after { content: '→'; transition: transform 0.25s ease; }
.btn-tertiary:hover { color: var(--copper-light); gap: var(--space-3); }
.btn-tertiary:hover::after { transform: translateX(4px); }

.btn-tertiary--on-dark { color: var(--copper); }
.btn-tertiary--on-dark:hover { color: var(--copper-light); }

/* Redutores de atrito abaixo do CTA */
.trust-inline {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.trust-inline span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 6px 12px;
}

.trust-inline svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-500);
    flex-shrink: 0;
}

/* TRUST BAND — filete dourado marcando a transição */
.trust-band {
    background: var(--graphite);
    padding: var(--space-6) var(--space-6);
    text-align: center;
    font-size: 14px;
    color: var(--warm-700);
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    border-top: 2px solid var(--gold-500);
}

.trust-band strong {
    color: var(--accent-on-light);
    font-weight: 600;
}

/* CONTAINER — 1280px. O respiro lateral de 24px vem do <section>;
   duplicar aqui estrangulava o conteúdo no mobile. */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0;
}

/* SECTIONS — 80px mobile / 120px desktop */
section {
    padding: var(--space-20) var(--space-6);
}

@media (min-width: 1024px) {
    section { padding: var(--space-30) var(--space-6); }
}

/* H2 — 40 → 28px, peso 700 */
section h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    color: var(--warm-900);
    margin-bottom: var(--space-6);
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Em fundo verde, títulos são brancos */
.on-dark h2,
.on-dark h3,
.on-dark h4 { color: var(--white); }

.section-subtitle {
    text-align: center;
    color: var(--warm-700);
    font-size: 18px;
    margin-bottom: var(--space-12);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.on-dark .section-subtitle { color: var(--silver); }

/* OSE 360 — seção de serviços em verde institucional */
/* O vídeo OSE 360 tem fundo verde-petróleo bem escuro embutido nos próprios
   pixels (~#042c25, medido direto nos frames — não é preto puro, ao contrário
   do que a primeira tentativa assumiu). Obsidian é o tom mais próximo disso
   no design system, então a seção inteira usa essa cor para não sobrar
   nenhuma margem/emenda visível ao redor do vídeo. */
.ose-section {
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}

.ose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(185, 153, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: gradientShift 20s ease-in-out infinite;
}

/* Bloco grande → raio 24px, +20% de padding por estar em fundo verde */
.ose-intro {
    max-width: 1040px;
    margin: 0 auto var(--space-16);
    position: relative;
    animation: bounceInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ose-intro-mark {
    text-align: center;
    margin-bottom: var(--space-8);
}

.ose-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .ose-intro-grid { grid-template-columns: 1fr 1fr; }
}

.ose-intro-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--gold-500);
}

.ose-intro h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: var(--space-4);
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    animation: slideInLeftStagger 0.6s ease-out 0.2s both;
}

.ose-intro h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-500);
    opacity: 0;
    animation: slideInLeftStagger 0.6s ease-out 0.4s forwards;
}

.ose-intro p {
    color: var(--silver);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: var(--space-4);
    animation: slideInLeftStagger 0.6s ease-out both;
}

.ose-intro p strong { color: var(--gold-500); font-weight: 600; }

/* Logo OSE 360 em movimento — o próprio arquivo de vídeo já tem uma vinheta
   nas bordas (aplicada via ffmpeg) esmaecendo para a cor obsidian, então
   nenhum recorte/máscara extra em CSS é necessário aqui. */
.ose-video {
    display: block;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--green-900);
    margin: 0 auto;
}

/* Versão estática: só aparece quando a animação não deve rodar */
.ose-logo--estatica { display: none; }

.ose-logo {
    height: 92px;
    width: auto;
    max-width: 100%;
    margin-bottom: var(--space-6);
}

/* Quem pediu menos movimento recebe a logo parada */
@media (prefers-reduced-motion: reduce) {
    .ose-video { display: none; }
    .ose-logo--estatica { display: block; }
}

/* Selo OSE 360 usado como divisor de seção — a marca comunica o portfólio
   sem precisar de um rótulo do tipo "5 Frentes" acima dela. */
.ose-mark {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Sobre fundo claro, o texto branco do selo precisa da placa verde
   (mesmo tratamento de .hub-logo e .frente-logo). */
.ose-mark-plate {
    display: inline-flex;
    background: var(--green-700);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-sm);
}

/* Fita contínua do selo — as cópias se emendam e deslizam sem parar,
   sumindo suavemente nas bordas (máscara) em vez de cortar em seco. */
.ose-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.ose-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 40px;
    animation: ose-marquee-scroll 24s linear infinite;
}

.ose-marquee-track .ose-mark {
    flex-shrink: 0;
    margin: 0;
}

.ose-marquee:hover .ose-marquee-track {
    animation-play-state: paused;
}

@keyframes ose-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ose-marquee-track { animation: none; }
}

.ose-intro p:first-of-type {
    animation-delay: 0.4s;
}

.ose-intro p:last-of-type {
    animation-delay: 0.5s;
}

/* FRENTES GRID — 1 / 2 / 3 colunas, gap 24–32px */
.frentes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-12);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .frentes-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* CARD ESCURO — graphite sobre seção obsidian */
.frente-card {
    background: var(--green-700);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: bounceInScale 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.frente-card:nth-child(1) { animation-delay: 0.1s; }
.frente-card:nth-child(2) { animation-delay: 0.2s; }
.frente-card:nth-child(3) { animation-delay: 0.3s; }
.frente-card:nth-child(4) { animation-delay: 0.4s; }
.frente-card:nth-child(5) { animation-delay: 0.5s; }

.frente-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.frente-card:hover::before {
    transform: scaleX(1);
}

.frente-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 153, 85, 0.45);
}

/* Placa da sub-marca — o logo substitui o ícone genérico e vira
   prova de capacidade técnica (DS §3, Cards). */
.frente-brand {
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 56px;
    animation: slideInRightStagger 0.6s ease-out both;
}

.frente-brand img {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Enquanto os arquivos de logo não estiverem em assets/logos/,
   o card cai para o ícone de traço dourado. */
.frente-brand .frente-icon { display: none; }
.frente-brand.no-logo { min-height: 0; }
.frente-brand.no-logo img { display: none; }
.frente-brand.no-logo .frente-icon { display: flex; margin-bottom: 0; }

/* Ícone de traço dourado em bloco de 56px, raio 14px, fundo dourado 10% */
.frente-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(185, 153, 85, 0.10);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: slideInRightStagger 0.6s ease-out both;
}

.frente-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--gold-500);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.frente-card:nth-child(1) .frente-brand { animation-delay: 0.15s; }
.frente-card:nth-child(2) .frente-brand { animation-delay: 0.25s; }
.frente-card:nth-child(3) .frente-brand { animation-delay: 0.35s; }
.frente-card:nth-child(4) .frente-brand { animation-delay: 0.45s; }
.frente-card:nth-child(5) .frente-brand { animation-delay: 0.55s; }

/* Nome de sub-marca em sans técnica (Saira), como nos logos secundários */
.frente-title {
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-3);
    line-height: 1.4;
    letter-spacing: 0;
    animation: slideInLeftStagger 0.6s ease-out both;
}

.frente-card:nth-child(1) .frente-title { animation-delay: 0.2s; }
.frente-card:nth-child(2) .frente-title { animation-delay: 0.3s; }
.frente-card:nth-child(3) .frente-title { animation-delay: 0.4s; }
.frente-card:nth-child(4) .frente-title { animation-delay: 0.5s; }
.frente-card:nth-child(5) .frente-title { animation-delay: 0.6s; }

/* Eyebrow do card — mesmo tratamento da assinatura do logo */
.frente-subtitle {
    color: var(--gold-500);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: fadeInText 0.6s ease-out both;
}

.frente-card:nth-child(1) .frente-subtitle { animation-delay: 0.25s; }
.frente-card:nth-child(2) .frente-subtitle { animation-delay: 0.35s; }
.frente-card:nth-child(3) .frente-subtitle { animation-delay: 0.45s; }
.frente-card:nth-child(4) .frente-subtitle { animation-delay: 0.55s; }
.frente-card:nth-child(5) .frente-subtitle { animation-delay: 0.65s; }

.frente-card p {
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    flex-grow: 1;
    font-size: 15px;
    font-weight: 400;
    animation: fadeInText 0.6s ease-out both;
}

.frente-card:nth-child(1) p { animation-delay: 0.3s; }
.frente-card:nth-child(2) p { animation-delay: 0.4s; }
.frente-card:nth-child(3) p { animation-delay: 0.5s; }
.frente-card:nth-child(4) p { animation-delay: 0.6s; }
.frente-card:nth-child(5) p { animation-delay: 0.7s; }

.frente-link {
    color: var(--gold-500);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    animation: slideInLeftStagger 0.6s ease-out both;
    position: relative;
}

.frente-card:nth-child(1) .frente-link { animation-delay: 0.35s; }
.frente-card:nth-child(2) .frente-link { animation-delay: 0.45s; }
.frente-card:nth-child(3) .frente-link { animation-delay: 0.55s; }
.frente-card:nth-child(4) .frente-link { animation-delay: 0.65s; }
.frente-card:nth-child(5) .frente-link { animation-delay: 0.75s; }

.frente-link::after {
    content: '→';
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.frente-link:hover {
    color: var(--gold-300);
    transform: translateX(4px);
}

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

/* Estilos para h3 "As 5 Frentes" */
section > h3 {
    animation: slideInDown 0.8s ease-out !important;
    position: relative;
    display: inline-block;
    width: 100%;
}

section > h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold-500);
    opacity: 0;
    animation: slideInDown 0.8s ease-out 0.2s forwards;
}

/* AVALIAÇÕES GOOGLE — prova social entre o portfólio e a chamada final */
.testimonials-section {
    background: var(--green-600);
}

.testimonials-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    margin: var(--space-6) 0 var(--space-12);
}

.testimonials-rating-stars {
    display: flex;
    gap: 4px;
}

.testimonials-rating-stars svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-500);
}

.testimonials-rating p {
    color: var(--silver);
    font-size: 14px;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.testimonial-card { background: var(--green-700); }

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-500);
}

.testimonial-quote {
    color: var(--silver);
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: var(--space-4);
}

.testimonial-author {
    color: var(--arch-white);
    font-weight: 700;
    font-size: 14px;
}

/* CTA SECTION */
.cta-section {
    background: var(--green-800);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(185, 153, 85, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: var(--space-12);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 400;
    line-height: 1.7;
    color: var(--silver);
}

/* FOOTER — obsidian */
footer {
    background: var(--green-900);
    color: var(--white);
    padding: var(--space-20) var(--space-6) var(--space-8);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(185, 153, 85, 0.18);
}

.footer-content {
    max-width: var(--container);
    margin: 0 auto var(--space-12);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-12);
}

/* Eyebrow do rodapé */
.footer-section h3 {
    color: var(--arch-white);
    margin-bottom: var(--space-6);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer-section p, .footer-section a {
    color: var(--silver);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--gold-500);
}

/* CTA de contato no rodapé — precisa reafirmar cor/peso/altura de linha porque
   ".footer-section a" (classe+elemento) tem mais especificidade que ".btn-primary"
   (classe só) e sobrescreveria o botão com o estilo de link comum do rodapé */
.footer-section .btn-whatsapp {
    padding: 12px 20px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.footer-section .btn-whatsapp:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(148, 163, 184, .7);
    font-size: 14px;
    font-weight: 400;
}

@media (min-width: 640px) {
    .footer-bottom { justify-content: space-between; }
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: var(--space-4);
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    line-height: 1.4 !important;
    margin-top: var(--space-2);
}

.footer-meta svg { flex-shrink: 0; color: var(--copper); }

.footer-meta-sub { color: var(--silver); opacity: 0.75; }

.art-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    border: 1px solid rgba(185, 153, 85, .3);
    border-radius: var(--radius-md);
    color: var(--copper);
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* WHATSAPP FLUTUANTE — verde (RV01 §8: reservado exclusivamente ao WhatsApp) */
.whatsapp-button {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    height: 60px;
    min-width: 60px;
    padding: 0;
    background: var(--wa-green);
    color: var(--white);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-fab);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999 !important;
    animation: slideInUp 0.6s ease-out 0.5s both;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
    flex-shrink: 0;
    margin: 0 15px;
}

.whatsapp-button .wa-label {
    max-width: 0;
    opacity: 0;
    transition: max-width 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
    margin-right: 0;
}

/* Rótulo expandido no desktop */
@media (min-width: 1024px) {
    .whatsapp-button:hover .wa-label {
        max-width: 200px;
        opacity: 1;
        margin-right: 22px;
    }
}

.whatsapp-button:hover {
    background: var(--wa-green-light);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 20px 40px rgba(22, 101, 52, .5);
}

/* BARRA FIXA MOBILE — WhatsApp (2/3, verde) + Ligar (outline cobre) */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: var(--space-3);
    gap: var(--space-3);
    background: rgba(21, 41, 34, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-bar a {
    height: 48px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-bar .bar-wpp {
    flex: 2;
    background: var(--copper);
    color: var(--white);
}

.mobile-bar .bar-wpp svg { fill: none; }

.mobile-bar .bar-call {
    flex: 1;
    background: transparent;
    color: var(--copper);
    border: 1.5px solid rgba(185, 153, 85, .3);
}

.mobile-bar .bar-call svg { fill: var(--copper); }

@media (max-width: 767px) {
    .mobile-bar { display: flex; }
    .whatsapp-button { display: none; }
    footer { padding-bottom: 90px; }
}

/* STAT CARD — graphite, borda translúcida, raio 8px */
.stat-card {
    animation: countUp 0.8s ease-out;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: var(--graphite);
    box-shadow: var(--shadow-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

/* Hover: borda dourada, sobe 4px, sombra nível 3 */
.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-3);
}

/* Números de destaque — Manrope extrabold, arch-white */
.stat-number {
    animation: countUp 1s ease-out;
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--accent-on-light);
    margin-bottom: var(--space-3);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
}

.stat-number .unit {
    font-size: 24px;
    font-weight: 600;
    margin-left: var(--space-1);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--warm-900);
    letter-spacing: 0.02em;
}

.stat-desc {
    font-size: 14px;
    color: var(--warm-700);
    margin-top: var(--space-3);
    line-height: 1.45;
}

/* ---------- FORMULÁRIO (DS: input 48px, raio 10px) ---------- */
.form-panel {
    background: rgba(255, 255, 255, 0.06);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.field label .req { color: var(--gold-500); }

.field input,
.field select,
.field textarea {
    width: 100%;
    height: 48px;
    padding: 0 var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    height: auto;
    min-height: 140px;
    padding: var(--space-3) var(--space-4);
    resize: vertical;
    line-height: 1.6;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E0A73E' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    background-size: 18px;
    padding-right: var(--space-12);
    cursor: pointer;
}

.field select option {
    background: var(--green-800);
    color: var(--white);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.45); }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(185, 153, 85, 0.3);
}

.field input:invalid:not(:placeholder-shown) {
    border-color: var(--error);
}

.form-note {
    text-align: center;
    margin-top: var(--space-6);
    color: rgba(148, 163, 184, .7);
    font-size: 14px;
}

/* Card claro de contato */
.contact-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--graphite);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-1);
    border: 1px solid var(--border);
}

/* Badge pill dourado */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--gold-50);
    color: var(--accent-on-light);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: var(--space-20) var(--space-6);
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .btn-tertiary {
        justify-content: center;
    }

    .trust-inline {
        gap: var(--space-3);
        flex-direction: column;
        align-items: center;
    }

    .ose-intro { padding: var(--space-8); }
    .form-panel { padding: var(--space-8); }
    .contact-card { padding: var(--space-8); }
}

/* ENHANCED CARD STYLES */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

/* Filete dourado de transição entre seções */
.rule-gold {
    height: 1px;
    background: var(--gold-500);
    opacity: 0.35;
    border: none;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* GSAP ANIMATIONS */
.gsap-fadeIn {
    opacity: 0;
}

.gsap-slideUp {
    opacity: 0;
    transform: translateY(40px);
}

.gsap-slideDown {
    opacity: 0;
    transform: translateY(-40px);
}

.gsap-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* ============================================================
   METODOLOGIAS NO HOVER DO CARD DE SERVIÇO
   O painel cobre o card (sem empurrar o grid) e lista as
   metodologias da frente, cada uma levando à sua página.
   ============================================================ */
.frente-metodologias {
    position: absolute;
    inset: 0;
    background: var(--green-800);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    overflow-y: auto;
}

/* Teclado também abre (Tab até o link do card) */
.frente-card:hover .frente-metodologias,
.frente-card:focus-within .frente-metodologias {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.frente-metodologias .met-titulo {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-500);
    margin-bottom: var(--space-4);
}

.frente-metodologias ul {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: 0;
    flex-grow: 1;
}

.frente-metodologias li { margin-bottom: 2px; }

.frente-metodologias li a {
    display: block;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    padding: var(--space-2) var(--space-3) var(--space-2) var(--space-6);
    border-radius: var(--radius-sm);
    position: relative;
    transition: background .2s ease, color .2s ease;
}

.frente-metodologias li a::before {
    content: '';
    position: absolute;
    left: var(--space-2);
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
}

.frente-metodologias li a::after { content: none; }

.frente-metodologias li a:hover {
    background: rgba(185, 153, 85, .12);
    color: var(--white);
}

.frente-metodologias .met-todas {
    font-weight: 600;
    font-size: 15px;
    color: var(--gold-500);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: auto;
}

.frente-metodologias .met-todas::after {
    content: '→';
    transition: transform .25s ease;
}

.frente-metodologias .met-todas:hover::after { transform: translateX(4px); }

/* Sem hover (toque): a lista vira conteúdo normal do card */
@media (hover: none) {
    .frente-metodologias {
        position: static;
        inset: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: var(--space-6) 0 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
        margin-top: var(--space-4);
        overflow: visible;
    }

    .frente-card > p { margin-bottom: var(--space-3); }
}
