﻿/* Office Perícia - Design System Style */

/* ==================== TOKENS / VARIÁVEIS ==================== */
:root {
    color-scheme: light only;
    /* Colors - Base & Surfaces */
    --canvas: #FAFAFA;
    --surface: #FFFFFF;
    --border: #E5E5E5;
    
    /* Colors - Text & Accents */
    --obsidian: #111111;
    --subtle: #737373;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    /* Effects & Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 2px 4px rgba(0,0,0,0.02), 0 8px 16px -4px rgba(0,0,0,0.04);
    --shadow-premium-hover: 0 12px 24px -8px rgba(0,0,0,0.08), 0 24px 48px -12px rgba(0,0,0,0.04);
    
    /* Borders */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-default: all 0.3s ease;
    --transition-slow: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--canvas);
    color: var(--obsidian);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ==================== SCROLLBAR PERSONALIZADA ==================== */
body::-webkit-scrollbar          { width: 10px; }
body::-webkit-scrollbar-track    { background: #0d111a; }
body::-webkit-scrollbar-thumb    {
    background-color: #A8815B;
    border-radius: 10px;
    border: 2px solid #0d111a;
}

/* ==================== SELEÇÃO DE TEXTO ==================== */
::selection {
    color: #ffffff;
    background: #A8815B;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

/* ==================== BACKGROUNDS & AMBIENT ==================== */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(15,23,42,0.8) 0%, transparent 70%);
}

.glow-top-right {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.glow-bottom-left {
    width: 500px;
    height: 500px;
    top: 40vh;
    left: -250px;
}

.fixed-technical-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 229, 229, 0.6);
    transition: var(--transition-default);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.navbar-logo {
    height: 5rem;
    width: auto;
    display: block;
}

.logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--obsidian);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.125rem;
}

.logo-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--obsidian);
    text-transform: uppercase;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    font-size: 0.6875rem; /* 11px */
    font-weight: 600;
    color: var(--subtle);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--obsidian);
}

.nav-link.is-active,
.mobile-nav-link.is-active {
    color: #A8815B;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--obsidian);
}

.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    background: #1eb857;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 14px rgba(37,211,102,0.35);
}
.btn-nav-whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 22px rgba(37,211,102,0.5);
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--obsidian);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 5.5rem;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-default);
    z-index: 40;
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--obsidian);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-whatsapp {
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9rem 2.5rem 5rem 2.5rem;
    overflow: hidden;
    z-index: 10;
    background-color: #FAFAFA;
    background-image:
        radial-gradient(ellipse 85% 75% at 75% 40%, rgba(168, 129, 91, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 30% 80%, rgba(30, 38, 64, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 5% 20%, rgba(168, 129, 91, 0.08) 0%, transparent 55%);
}

/* ==================== BACKGROUND SHAPES (HERO) ==================== */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
    animation: heroFadeUp 1.2s ease 1.8s forwards;
    pointer-events: none; /* Não bloqueia cliques */
}

/* Bolha principal — halo azul saturado atrás do notebook */
.shape-blob-1 {
    position: absolute;
    top: -15%;
    right: 0%;
    width: 75vw;
    height: 75vw;
    max-width: 950px;
    max-height: 950px;
    background: radial-gradient(circle, rgba(168, 129, 91, 0.30) 0%, rgba(168, 129, 91, 0.10) 45%, transparent 75%);
    border-radius: 50%;
    filter: blur(55px);
    animation: none;
}

/* Bolha inferior — ancora o rodapé da hero */
.shape-blob-2 {
    position: absolute;
    bottom: -25%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    max-width: 750px;
    max-height: 750px;
    background: radial-gradient(circle, rgba(30, 38, 64, 0.12) 0%, rgba(30, 38, 64, 0.05) 55%, transparent 100%);
    border-radius: 50%;
    filter: blur(65px);
    animation: none;
}

/* Bolha esquerda — suaviza o fundo por trás do texto */
.shape-blob-3 {
    position: absolute;
    top: 5%;
    left: -20%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(168, 129, 91, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(50px);
    animation: none;
}

@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.08) translate(-3%, 3%); }
    100% { transform: scale(0.92) translate(3%, -3%); }
}

/* Padrão de pontilhados sutil estilo Tech/Legaltech */
.pattern-dots {
    position: absolute;
    top: 12%;
    right: 40%;
    width: 25vw;
    height: 25vw;
    max-width: 350px;
    max-height: 350px;
    background-image: radial-gradient(rgba(15, 23, 42, 0.25) 2px, transparent 2px);
    background-size: 26px 26px;
    opacity: 0.8;
    border-radius: 50%;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
    animation: none;
}

@keyframes rotateDots {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* Reduzido para aproximar imagem e texto */
    align-items: center;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 20; /* Texto em primeiro plano */
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(229, 229, 229, 0.6);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: fit-content;
}

.status-dot-container {
    position: relative;
    display: flex;
    width: 0.5rem;
    height: 0.5rem;
}

.status-dot-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #94a3b8; /* slate-400 */
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-dot {
    position: relative;
    display: inline-flex;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    background-color: var(--slate-800);
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.status-text {
    font-size: 0.625rem; /* 10px */
    font-weight: 700;
    color: var(--subtle);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--obsidian);
    line-height: 1.1;
    margin: 0;
    min-height: 4.5em; /* Previne pulo de layout no mobile se a frase animada quebrar linha */
}

.headline-smaller {
    font-size: 0.8em; /* Reduz a fonte dessa linha em relação ao restante do H1 */
    font-weight: 500; /* Levemente menos pesado para dar hierarquia visual */
    position: relative;
    top: -0.25em; /* Sobe a linha um pouco, aproximando do texto acima */
    display: inline-block; /* Necessário para que o deslocamento visual funcione perfeitamente */
}

.text-transparent-gradient {
    color: #A8815B;
    display: inline-block;
}

.animated-line-wrapper {
    display: inline;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #737373;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: baseline;
    position: relative;
    top: 0.1em;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subheadline {
    font-size: 1rem;
    color: var(--subtle);
    line-height: 1.6;
    font-weight: 300;
    max-width: 32rem;
    margin-top: -1.25rem; /* Puxa o subtítulo mais para perto do título principal, compensando o gap do container */
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: -0.5rem;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--obsidian);
    background-color: var(--canvas);
    border: 1px solid var(--border);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-md);
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

/* ==================== HERO ENTRANCE ANIMATIONS ==================== */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeRight {
    from { opacity: 0; transform: translateX(48px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes beamGrow {
    from { transform: scaleY(0); opacity: 0; }
    to   { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-headline, .hero-subheadline, .hero-actions, .hero-visual, .hero-sidebar, .hero-sidebar-beam {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.hero-headline    { animation: heroFadeUp    0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; will-change: opacity, transform; }
.hero-subheadline { animation: heroFadeUp    0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both; will-change: opacity, transform; }
.hero-actions     { animation: heroFadeUp    0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; will-change: opacity, transform; }
.hero-visual      { animation: heroFadeRight 1.4s  cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both; will-change: opacity, transform; }

/* CTA em caixa alta */
.btn-main-cta .btn-text {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8125rem;
}

/* ==================== BUTTONS (FINEX / DS STYLE) ==================== */
.btn-finex {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius-full);
    isolation: isolate;
    transition: var(--transition-default);
    overflow: hidden;
    --speed: 4s;
    --spread: 90deg;
    --cut: 1px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-main-cta {
    width: 100%;
    padding: 1.15rem 2rem;
}

.btn-finex.btn-dark {
    --shimmer-color: rgba(168, 129, 91, 0.4);
    --bg: rgba(30, 38, 64, 0.95);
    box-shadow: 0 8px 40px rgba(30, 38, 64, 0.25);
}

.btn-finex.btn-dark:hover {
    box-shadow: 0 0 40px 8px rgba(30, 38, 64, 0.3);
    transform: scale(1.02);
}

.btn-nav-whatsapp-legacy {
    padding: 0.35rem 1rem; /* kept for reference only */
}

.btn-nav-whatsapp-legacy:hover {
    transform: scale(0.95);
}

.btn-finex-shimmer {
    position: absolute;
    inset: -200%;
    width: 400%;
    height: 400%;
    animation: rotate-gradient var(--speed) linear infinite;
    background: conic-gradient(from calc(270deg - (var(--spread) * 0.5)), transparent 0, var(--shimmer-color) var(--spread), transparent var(--spread));
    z-index: -3;
}

.btn-finex-bg {
    position: absolute;
    inset: var(--cut);
    border-radius: var(--radius-full);
    background: var(--bg);
    backdrop-filter: blur(8px);
    z-index: -2;
}

.btn-finex-beam {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2), transparent);
    animation: borderBeamRotation var(--speed) infinite linear;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-finex-inner {
    position: absolute;
    inset: 1px;
    border-radius: var(--radius-full);
    z-index: 0;
    backdrop-filter: blur(8px);
    background: rgba(30, 38, 64, 0.95);
}

.btn-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--surface);
    font-size: 0.875rem;
    font-weight: 700;
}

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: background-color 0.3s;
}

.btn-finex:hover .btn-icon-wrapper {
    background-color: rgba(255,255,255,0.2);
}

@keyframes rotate-gradient {
    to { transform: rotate(360deg); }
}

@keyframes borderBeamRotation {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ==================== HERO VISUAL ==================== */
.hero-visual {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

/* Glow atmosférico atrás do notebook */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(147, 197, 253, 0.5) 0%, rgba(186, 224, 253, 0.2) 50%, transparent 75%);
    filter: blur(45px);
    z-index: 0;
    border-radius: 50%;
    animation: pulseGlow 5s ease-in-out infinite alternate;
    pointer-events: none;
}

.visual-container {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    z-index: 2;
}

/* Sombra projetada sob o notebook */
.visual-container::before {
    content: '';
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(15, 23, 42, 0.28) 0%, transparent 70%);
    filter: blur(22px);
    z-index: -1;
    border-radius: 50%;
}

@keyframes pulseGlow {
    0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

/* Removendo o aspecto de card duro para integrar a imagem com o site */
.visual-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* ==================== FLOATING BADGES (CHIPS NA IMAGEM) ==================== */
.floating-badge {
    position: absolute;
    z-index: 30;
    pointer-events: none; /* Pra não atrapalhar o mouse do usuário */
}

.badge-1 {
    top: 15%;
    left: 0%;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-2 {
    bottom: 20%;
    right: -5%;
    animation: floatBadge 5.5s ease-in-out infinite alternate-reverse;
}

.glass-chip {
    background-color: rgba(255, 255, 255, 0.95); /* Um pouco mais opaco para destacar mais do fundo */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06); /* Sombra mais "crisp" para destacar */
    padding: 0.4rem 0.85rem; /* Diminuiu o padding */
    font-size: 0.7rem; /* Diminuiu a fonte */
    font-weight: 800; /* Mais grossa para não sumir */
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem; /* Diminuiu o espaço interno */
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

/* Sombra aplicada diretamente na silhueta da imagem */
.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    transition: transform 0.5s ease-out;
}

.visual-container:hover .hero-image {
    transform: scale(1.03) rotate(-1deg);
}

.image-overlay, .visual-bg-card {
    display: none; /* Removendo elementos decorativos opacos que "prendiam" a imagem */
}

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid rgba(168, 129, 91, 0.35);
    color: #A8815B;
    text-decoration: none;
    opacity: 0;
    animation:
        scrollFadeIn  0.8s ease 1.6s forwards,
        scrollBounce  2s   ease-in-out 2.5s infinite;
    transition: border-color 0.3s, color 0.3s;
    z-index: 10;
}

.scroll-indicator:hover {
    border-color: #A8815B;
    color: #1E2640;
}

@keyframes scrollFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ==================== MARQUEE / SLIDER INFINITO ==================== */
.marquee-divider {
    border-top: 1px solid rgba(229,229,229,0.6);
    border-bottom: 1px solid rgba(229,229,229,0.6);
    background-color: var(--surface);
    padding: 1rem 0;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.marquee-mask {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-width: 100%;
    animation: marquee-scroll 40s linear infinite;
    padding-right: 3rem;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.marquee-item {
    font-size: 0.75rem; /* 12px */
    font-family: 'JetBrains Mono', monospace, sans-serif;
    font-weight: 700;
    color: var(--subtle);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* ==================== HERO SIDEBAR STATS ==================== */
.hero-sidebar {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0.75rem;
    z-index: 20;
    gap: 0.375rem;
}

/* Separador vertical com beam deslizante */
.hero-sidebar-beam {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: var(--border);
    overflow: hidden;
    transform-origin: top center;
    animation: beamGrow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.95s both;
}

.hero-sidebar-beam::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent, #1E2640, transparent);
    transform: translateY(-100%);
    animation: beam-drop-light 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes beam-drop-light {
    0%   { transform: translateY(-100%); opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Card de cada stat */
.sidebar-stat {
    cursor: pointer;
    width: 100%;
    padding: 1rem 1rem 1rem 1.25rem;
    border-radius: 0.875rem;
    border: 1px solid transparent;
    transition: background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    animation: sidebar-stat-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.sidebar-stat:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: translateX(-3px);
}

.sidebar-stat:nth-child(2) { animation-delay: 1.1s; }
.sidebar-stat:nth-child(3) { animation-delay: 1.3s; }
.sidebar-stat:nth-child(4) { animation-delay: 1.5s; }

@keyframes sidebar-stat-in {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Valor principal */
.sidebar-stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: -0.04em;
    color: #A8815B;
    transition: color 0.35s ease;
    line-height: 1;
}

.sidebar-stat:hover .sidebar-stat-value {
    color: var(--obsidian);
}

/* Label */
.sidebar-stat-label {
    display: block;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A8815B;
    margin-top: 0.45rem;
    padding-left: 0.5rem;
    border-left: 2px solid transparent;
    transition: color 0.35s ease, border-left-color 0.35s ease, padding-left 0.35s ease;
    line-height: 1.45;
}

.sidebar-stat:hover .sidebar-stat-label {
    color: var(--subtle);
    border-left-color: var(--slate-800);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation-duration: 120s;
    }
    .typing-cursor {
        animation: none;
        opacity: 1;
    }
}

/* ==================== MEDIA QUERIES (RESPONSIVENESS) ==================== */

/* Tablet and Desktop */
@media (min-width: 768px) {
    .navbar-links, .nav-phone, .btn-nav-whatsapp {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .navbar-container {
        padding: 0 3rem;
    }
    .navbar-brand {
        margin-left: 2rem;
    }
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .hero-headline {
        font-size: 2.25rem; /* 36px */
        min-height: 3.4em; /* No desktop/tablet costuma caber em 3 linhas */
    }
    .hero-subheadline {
        font-size: 1.125rem; /* 18px */
    }
    .btn-main-cta {
        width: auto;
    }
    .hero-actions {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    .hero-chips {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero-visual {
        display: flex;
        justify-content: flex-end;
        z-index: 0;
    }
    .visual-container {
        width: 128%;
        margin-left: -28%;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 3rem 5rem 3rem;
    }
    .hero-container {
        grid-template-columns: 6fr 6fr; /* Divide o espaço perfeitamente no meio */
        padding: 0 3rem; /* Adiciona o padding lateral (esquerda do texto e direita da imagem) empurrando eles para o centro */
        gap: 0; /* Permite que um elemento invada o outro */
    }
    .hero-headline {
        font-size: 2.75rem; /* 44px */
    }
    .hero-visual {
        justify-content: flex-end; /* Encosta a imagem na borda direita do container interno */
        z-index: 0; /* Garante que fique em segundo plano */
    }
    .visual-container {
        width: 158%;
        margin-left: -48%;
    }
}

@media (min-width: 1280px) {
    .hero-headline {
        font-size: 2.4rem;
    }
    .hero-subheadline {
        font-size: 1rem;
    }
    .hero-container {
        grid-template-columns: 6fr 4fr 2fr;
        padding: 0 3rem;
    }
    .hero-content {
        padding-left: 2rem;
    }
    .hero-sidebar {
        display: flex;
        transform: translateX(2rem);
    }
    .visual-container {
        width: 180%;
        margin-left: 0;
        transform: translateX(13%);
    }
}

/* ==================== SEÇÃO 2: EXPERIÊNCIA COMPROVADA ==================== */
.exp-section {
    position: relative;
    background-color: #1E2640;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    padding: 6rem 2.5rem 7rem;
    overflow: hidden;
    z-index: 10;
}

/* Glow bronze */
.exp-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168,129,91,0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* Container principal */
.exp-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
}

/* Coluna esquerda */
.exp-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

/* Eyebrow */
.exp-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.exp-eyebrow::before {
    content: '';
    display: block;
    width: 1.75rem;
    height: 2px;
    background-color: #A8815B;
    border-radius: 2px;
    flex-shrink: 0;
}

.exp-eyebrow-text {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #A8815B;
}

/* Título */
.exp-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0;
}

/* Subtítulo */
.exp-subtitle {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    font-weight: 300;
    max-width: 400px;
    margin: 0;
}

/* CTA da seção 2 */
.exp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(168,129,91,0.45);
    background: transparent;
    color: #A8815B;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    width: fit-content;
    margin-top: 0.5rem;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.exp-cta:hover {
    background: rgba(168,129,91,0.12);
    border-color: rgba(168,129,91,0.75);
    color: #C49A6E;
}

/* Badge "+12 anos" */
.exp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem 0.4rem 0.625rem;
    border-radius: 9999px;
    border: 1px solid rgba(168,129,91,0.3);
    background: rgba(168,129,91,0.08);
    font-size: 0.75rem;
    font-weight: 700;
    color: #A8815B;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-top: 0.5rem;
}

.exp-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A8815B;
    flex-shrink: 0;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.45; transform: scale(0.8); }
}

/* Coluna direita */
.exp-right {
    width: 100%;
}

/* Wrapper com borda e cut-corner */
.exp-grid-wrapper {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    border-top-left-radius: 0.875rem;
    border-bottom-left-radius: 0.875rem;
    border-bottom-right-radius: 0.875rem;
    border-top-right-radius: 0;
    overflow: hidden;
}

/* Triângulo de corte (top-right) */
.exp-cut-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 44px solid #1E2640;
    border-left: 44px solid transparent;
    z-index: 10;
    pointer-events: none;
}

/* Grid 2×2 — hairline bronze entre células */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: rgba(168,129,91,0.2);
    padding: 1px;
}

/* Cards */
.stat-card {
    background-color: #192036;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background-color 0.35s ease;
}

.stat-card:hover {
    background-color: #1e2945;
}

/* Ícone */
.stat-card-icon {
    color: rgba(168,129,91,0.75);
    margin-bottom: 0.375rem;
    transition: color 0.35s ease;
}

.stat-card:hover .stat-card-icon {
    color: #A8815B;
}

/* Número grande */
.stat-card-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    line-height: 1;
}

/* Label da categoria */
.stat-card-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A8815B;
    line-height: 1.4;
}

/* Card 4 — Expertise (fundo branco) */
.stat-card--expertise {
    background-color: #FFFFFF;
}

.stat-card--expertise:hover {
    background-color: #F8F8F8;
}

.stat-card--expertise .stat-card-icon {
    color: #1E2640;
}

.stat-card--expertise:hover .stat-card-icon {
    color: #A8815B;
}

.stat-card-title-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.9);
}

.stat-card--expertise .stat-card-title-text {
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    text-transform: none;
    color: #111111;
}

.stat-card-body {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.stat-card--expertise .stat-card-body {
    font-size: 0.9375rem;
    color: rgba(17,17,17,0.58);
    line-height: 1.7;
}

/* --- Scroll Reveal --- */
.exp-left[data-pain-reveal],
.stat-card[data-pain-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

.exp-left[data-pain-reveal].is-visible,
.stat-card[data-pain-reveal].is-visible {
    animation: painReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes painReveal {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsividade --- */
@media (min-width: 640px) {
    .exp-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .exp-section {
        padding: 8rem 3rem 9rem;
    }
    .exp-container {
        flex-direction: row;
        gap: 6rem;
        align-items: center;
        padding: 0 3rem;
    }
    .exp-left {
        width: 33.333%;
        flex-shrink: 0;
    }
    .exp-right {
        flex: 1;
        min-width: 0;
    }
    .exp-title {
        font-size: 2.75rem;
    }
}

/* ==========================================
   DIFERENCIAIS — VERSÃO C  (CARD MARQUEE)
   ========================================== */

/* 1ª camada: seção — navy nas primeiras 5rem (zona de invasão), depois branca */
.difC-section {
    background-color: #FAFAFA;
    background-image:
        linear-gradient(to bottom, #1E2640 5rem, transparent 5rem),
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    padding: 0 2rem 6rem;
    position: relative;
    z-index: 20;
    scroll-margin-top: 10rem;
}

.difC-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 2ª camada: container escuro arredondado — sobe para invadir seção anterior */
.difC-box {
    background: #A8815B;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    margin-top: -5rem;
}

/* Dot grid sutil dentro do box */
.difC-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Cabeçalho dentro do box */
.difC-box-header {
    padding: 2rem 2.5rem 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Dot-grid texture */
.difC-box-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* Decorative ring — side direita */
.difC-box-header::after {
    content: '';
    position: absolute;
    right: -5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    border: 3rem solid rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 0;
}

.difC-header-left {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.difC-controls {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.difC-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.difC-btn:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

/* Badge "Nossos Diferenciais" */
.difC-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.05);
    position: relative;
    width: fit-content;
    flex-shrink: 0;
}

/* border-gradient-dark no badge */
.difC-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(225deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.difC-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #A8815B;
    flex-shrink: 0;
    animation: badgePulse 2.5s ease-in-out infinite;
}

.difC-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.difC-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    letter-spacing: -0.02em;
    min-width: 0;
}

/* Área do marquee — overflow oculto dentro do box */
.difC-marquee-outer {
    overflow: hidden;
    padding: 1.75rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.difC-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    will-change: transform;
}

.difC-track-end {
    width: 2rem;
    flex-shrink: 0;
}

/* Card individual dentro do box — estilo Dark Mode Modules (DS2) */
.difC-card {
    width: 350px;
    flex-shrink: 0;
    background: linear-gradient(225deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.0) 100%), #04192E;
    border-radius: 1.5rem;
    padding: 2rem 2.25rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
}

/* border-gradient-dark idêntico ao DS2 — linha diagonal no centro */
.difC-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(225deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.difC-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(225deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.0) 100%), #04192E;
}

.difC-card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.difC-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(168,129,91,0.12);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A8815B;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.difC-card:hover .difC-card-icon {
    background: rgba(168,129,91,0.22);
}

.difC-card-num {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: -0.03em;
    color: rgba(168,129,91,0.5);
    line-height: 1;
}

.difC-card-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    min-width: 0;
    padding-top: 0.1rem;
}

.difC-card-body {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    flex: 1;
}

@media (min-width: 1024px) {
    .difC-section { padding: 0 3rem 5rem; }
    .difC-container { padding: 0 3rem; }
    .difC-box-header { padding: 2rem 3rem 1.75rem; }
    .difC-title { font-size: 1.75rem; }
    .difC-marquee-outer { padding: 1.75rem 2rem 2rem; }
}

/* ==========================================
   DIFERENCIAIS — ANIMAÇÕES DE ENTRADA
   ========================================== */
@keyframes difcFadeSlideUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes difcFadeSlideLeft {
    from { opacity: 0; transform: translateX(-18px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes difcFadeSlideRight {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Estado inicial oculto */
.difC-badge,
.difC-title,
.difC-controls,
.difC-card { opacity: 0; }

/* Ativados quando .dif-animated é adicionado ao .difC-box */
.dif-animated .difC-badge {
    animation: difcFadeSlideLeft 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.dif-animated .difC-title {
    animation: difcFadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.dif-animated .difC-controls {
    animation: difcFadeSlideRight 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.dif-animated .difC-card:nth-child(1) { animation: difcFadeSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }
.dif-animated .difC-card:nth-child(2) { animation: difcFadeSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both; }
.dif-animated .difC-card:nth-child(3) { animation: difcFadeSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both; }
.dif-animated .difC-card:nth-child(4) { animation: difcFadeSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.68s both; }
.dif-animated .difC-card:nth-child(5) { animation: difcFadeSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.78s both; }
.dif-animated .difC-card:nth-child(6) { animation: difcFadeSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.88s both; }


/* ==========================================
   BADGE REUTILIZÁVEL — SEÇÕES CLARAS
   ========================================== */
.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    border-radius: 9999px;
    background: rgba(168,129,91,0.08);
    border: 1px solid rgba(168,129,91,0.22);
    margin-bottom: 1.25rem;
    width: fit-content;
    position: relative;
}

.sec-badge-dot {
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 50%;
    background: #A8815B;
    flex-shrink: 0;
    animation: badgePulse 2.5s ease-in-out infinite;
}

.sec-badge-text {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #A8815B;
}

/* ==========================================
   SERVIÇOS
   ========================================== */
.serv-section {
    background-color: #E3E3E6;
    background-image:
        radial-gradient(ellipse 65% 50% at 7% 12%, rgba(168,129,91,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 93% 88%, rgba(30,38,64,0.08) 0%, transparent 60%),
        radial-gradient(rgba(0,0,0,0.028) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 26px 26px;
    padding: 3.5rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 5.5rem;
}

/* Círculos decorativos de fundo */
.serv-section::before {
    content: '';
    position: absolute;
    top: -8rem;
    right: -6rem;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    border: 1px solid rgba(168,129,91,0.08);
    pointer-events: none;
    z-index: 0;
}
.serv-section::after {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: -5rem;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    border: 1px solid rgba(30,38,64,0.05);
    pointer-events: none;
    z-index: 0;
}

.serv-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* ——— Header editorial ——— */
.serv-header {
    margin-bottom: 2rem;
}

.serv-label-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
}

.serv-label-line {
    width: 2rem;
    height: 1px;
    background: #A8815B;
    flex-shrink: 0;
}

.serv-label-text {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #A8815B;
}

.serv-header-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.serv-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0;
}

.serv-subtitle {
    font-size: 0.9375rem;
    color: #737373;
    line-height: 1.65;
    margin: 0;
    max-width: 42ch;
}

.serv-header-stat {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    width: fit-content;
}

.serv-stat-num {
    font-size: 2.75rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.05em;
    line-height: 1;
}

.serv-stat-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.35;
}

/* Divisória bronze */
.serv-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #A8815B, rgba(168,129,91,0.2), transparent);
    margin-top: 1.25rem;
}

/* ——— Grid ——— */
.serv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* ——— Card ——— */
.serv-card {
    background: #FFFFFF;
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02), 0 8px 16px -4px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

/* Bronze top-line */
.serv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, #A8815B, transparent);
    border-radius: 1.25rem 1.25rem 0 0;
}

.serv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.09), 0 24px 48px -12px rgba(0,0,0,0.05);
    border-color: rgba(168,129,91,0.22);
}

.serv-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.serv-num-badge {
    font-size: 0.6875rem;
    font-weight: 800;
    font-family: monospace;
    color: #A8815B;
    background: rgba(168,129,91,0.08);
    border: 1px solid rgba(168,129,91,0.18);
    border-radius: 0.375rem;
    padding: 0.2rem 0.45rem;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.serv-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
}

.serv-card-title-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #737373;
    letter-spacing: -0.01em;
}

.serv-card-lead {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.7;
    margin: 0;
}

.serv-card-body {
    font-size: 0.8125rem;
    color: #737373;
    line-height: 1.75;
    margin: 0;
}

/* CTA */
.serv-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    opacity: 0;
}

.serv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    background: #04192E;
    color: #FFFFFF;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(4,25,46,0.22);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.serv-cta-btn svg {
    transition: transform 0.2s ease;
}

.serv-cta-btn:hover {
    background: #1E2640;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(4,25,46,0.32);
}

.serv-cta-btn:hover svg {
    transform: translateX(4px);
}

/* ——— Animação de entrada — fade puro ——— */
@keyframes servFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.serv-header,
.serv-card,
.serv-cta { opacity: 0; }

.serv-animated .serv-header {
    animation: servFadeIn 0.7s ease 0.05s both;
}
.serv-animated .serv-card:nth-child(1) { animation: servFadeIn 0.6s ease 0.15s both; }
.serv-animated .serv-card:nth-child(2) { animation: servFadeIn 0.6s ease 0.24s both; }
.serv-animated .serv-card:nth-child(3) { animation: servFadeIn 0.6s ease 0.33s both; }
.serv-animated .serv-card:nth-child(4) { animation: servFadeIn 0.6s ease 0.42s both; }
.serv-animated .serv-card:nth-child(5) { animation: servFadeIn 0.6s ease 0.51s both; }
.serv-animated .serv-card:nth-child(6) { animation: servFadeIn 0.6s ease 0.60s both; }
.serv-animated .serv-cta              { animation: servFadeIn 0.6s ease 0.72s both; }

/* ——— Responsivo ——— */
@media (min-width: 768px) {
    .serv-header-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
    .serv-header-left { flex: 1; }
    .serv-header-right { flex: 1; padding-top: 0.25rem; }
    .serv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .serv-section { padding: 4rem 3rem 6rem; }
    .serv-container { padding: 0 3rem; }
    .serv-title { font-size: 3.25rem; }
    .serv-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}


/* ==========================================
   DEPOIMENTOS
   ========================================== */
.dep-section {
    background-color: #04192E;
    background-image:
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(168,129,91,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(168,129,91,0.06) 0%, transparent 60%),
        radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 28px 28px;
    padding: 5rem 2rem 6rem;
    position: relative;
    scroll-margin-top: 5.5rem;
}

.dep-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.dep-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
}

.dep-stars-row {
    font-size: 1.375rem;
    color: #A8815B;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

/* badge na versão escura */
.dep-badge-light.sec-badge {
    background: rgba(168,129,91,0.12);
    border-color: rgba(168,129,91,0.3);
}

.dep-badge-light .sec-badge-text {
    color: rgba(168,129,91,0.9);
}

.dep-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.dep-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
}

.dep-widget {
    min-height: 200px;
}

@media (min-width: 1024px) {
    .dep-section   { padding: 6rem 3rem 7rem; }
    .dep-container { padding: 0 3rem; }
    .dep-title     { font-size: 3rem; }
}


/* ==========================================
   PERITO
   ========================================== */
.perito-section {
    background-color: #F6F1EC;
    background-image: radial-gradient(rgba(168,129,91,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    padding: 5rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 5.5rem;
}

/* Marca d'água editorial */
.perito-bg-watermark {
    position: absolute;
    top: 50%;
    left: -0.5rem;
    transform: translateY(-50%);
    font-size: clamp(5rem, 20vw, 18rem);
    font-weight: 900;
    color: rgba(168,129,91,0.05);
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    z-index: 0;
}

.perito-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Título */
.perito-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #04192E;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 1.25rem 0 1.5rem;
}

/* Traço bronze decorativo */
.perito-rule {
    width: 3rem;
    height: 2px;
    background: linear-gradient(to right, #A8815B, transparent);
    margin-bottom: 1.75rem;
}

/* Bio */
.perito-bio { display: flex; flex-direction: column; gap: 1rem; }

.perito-bio p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(4,25,46,0.65);
    margin: 0;
}

.perito-bio strong {
    color: #04192E;
    font-weight: 600;
}

/* Chips de credenciais */
.perito-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 2rem;
}

.perito-cred {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    background: rgba(4,25,46,0.05);
    border: 1px solid rgba(4,25,46,0.12);
    font-size: 0.8125rem;
    color: rgba(4,25,46,0.75);
    white-space: nowrap;
}

.perito-cred-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A8815B;
    flex-shrink: 0;
}

/* ---- Coluna da foto ---- */
.perito-photo-col { position: relative; }

.perito-photo-wrap {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
}

/* Anel decorativo grande */
.perito-deco-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 118%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(168,129,91,0.18);
    pointer-events: none;
    z-index: 0;
}

.perito-deco-ring::before {
    content: '';
    position: absolute;
    inset: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(168,129,91,0.08);
}

/* Retângulo inclinado atrás da foto */
.perito-deco-tilt {
    position: absolute;
    inset: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(168,129,91,0.22);
    transform: rotate(3deg);
    z-index: 0;
    background: rgba(168,129,91,0.025);
}

/* Wrapper com borda em gradiente bronze (máscara) */
.perito-frame-wrap {
    position: relative;
    border-radius: 16px;
    z-index: 1;
}

.perito-frame-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(145deg, rgba(168,129,91,0.85) 0%, rgba(168,129,91,0.25) 45%, rgba(168,129,91,0.0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* Frame com sombra — recorta a imagem */
.perito-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 70px rgba(4,25,46,0.18),
        0 6px 18px rgba(4,25,46,0.1);
    aspect-ratio: 3 / 4;
    position: relative;
}

/* Imagem */
.perito-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Fade escuro na base da foto */
.perito-img-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48%;
    background: linear-gradient(to top, rgba(4,25,46,0.6) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Chip flutuante — anos de experiência (canto inferior esquerdo) */
.perito-stat-chip {
    position: absolute;
    bottom: 0.75rem;
    left: -0.25rem;
    z-index: 4;
    background: rgba(4,25,46,0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.perito-stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.04em;
}

.perito-stat-num span { color: #A8815B; }

.perito-stat-label {
    font-size: 0.725rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Tag flutuante — credencial (canto superior direito) */
.perito-tag {
    position: absolute;
    top: 1.5rem;
    right: 0.25rem;
    z-index: 4;
    background: rgba(4,25,46,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(168,129,91,0.35);
    border-radius: 9999px;
    padding: 0.4rem 0.9rem 0.4rem 0.625rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.725rem;
    color: rgba(255,255,255,0.88);
    white-space: nowrap;
}

.perito-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #A8815B;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(168,129,91,0.8);
}

/* ---- Animações de entrada ---- */
@keyframes peritoFadeLeft {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes peritoFadeRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

.perito-content,
.perito-photo-col { opacity: 0; }

.perito-animated .perito-content {
    animation: peritoFadeLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.perito-animated .perito-photo-col {
    animation: peritoFadeRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* ---- Responsivo ---- */
@media (min-width: 1024px) {
    .perito-section   { padding: 6rem 3rem 7rem; }
    .perito-container {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
        padding: 0 3rem;
    }
    .perito-content   { flex: 1 1 0; }
    .perito-photo-col { flex: 0 0 42%; max-width: 42%; }
    .perito-title     { font-size: 3rem; }
    .perito-photo-wrap { padding: 1.5rem 2rem 3rem 1.5rem; }
}


/* ==========================================
   FAQ — PERGUNTAS FREQUENTES
   ========================================== */
.faq-section {
    background-color: #FFFFFF;
    padding: 5rem 2rem 6rem;
    scroll-margin-top: 5.5rem;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Coluna visual esquerda */
.faq-visual {
    display: flex;
    flex-direction: column;
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

.faq-big-word {
    font-size: clamp(3.5rem, 14vw, 9rem);
    font-weight: 800;
    color: rgba(4,25,46,0.15);
    letter-spacing: -0.03em;
    line-height: 0.92;
    margin: 0;
}

.faq-script-word {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.75rem, 5.5vw, 3.75rem);
    font-weight: 700;
    color: #A8815B;
    line-height: 1.3;
    margin: 0.5rem 0 0.25rem;
}

/* Linha separadora bronze (pseudo) */
.faq-item::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, #A8815B 0%, transparent 70%);
}

.faq-item:last-child::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, #A8815B 0%, transparent 70%);
}

/* Resumo — linha clicável */
.faq-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0.25rem 1.25rem 0;
    cursor: pointer;
    list-style: none;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }

/* Ícone +/− */
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 50%;
    border: 1px solid rgba(168,129,91,0.4);
    color: #A8815B;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
    line-height: 1;
}

.faq-icon::before { content: '+'; }

.faq-item[open] .faq-icon::before { content: '−'; }

.faq-item[open] .faq-icon {
    background: rgba(168,129,91,0.1);
    border-color: #A8815B;
}

/* Texto da pergunta */
.faq-q-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #04192E;
    line-height: 1.55;
    flex: 1;
    transition: color 0.2s ease;
}

.faq-item[open] .faq-q-text { color: #A8815B; }

/* Resposta */
.faq-ans {
    padding: 0 0.25rem 1.5rem 2.625rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: faqReveal 0.25s ease forwards;
}

@keyframes faqReveal {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-ans p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(4,25,46,0.65);
    margin: 0;
}

.faq-ans strong { color: #04192E; font-weight: 600; }

.faq-ans ul {
    padding-left: 1.125rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-ans li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(4,25,46,0.65);
}

.faq-ans li::marker { color: #A8815B; }

.faq-link {
    color: #A8815B;
    text-decoration: none;
    border-bottom: 1px solid rgba(168,129,91,0.3);
    transition: border-color 0.2s;
}
.faq-link:hover { border-color: #A8815B; }

/* Hover state na linha da pergunta */
.faq-q:hover .faq-q-text { color: #A8815B; }
.faq-q:hover .faq-icon { border-color: #A8815B; }

/* Responsivo */
@media (min-width: 1024px) {
    .faq-section    { padding: 7rem 3rem 8rem; }
    .faq-container  {
        flex-direction: row;
        align-items: flex-start;
        gap: 6rem;
        padding: 0 3rem;
    }
    .faq-visual     { flex: 0 0 32%; position: sticky; top: 7rem; }
    .faq-accordion  { flex: 1 1 0; }
    .faq-big-word   { font-size: clamp(3.5rem, 6.5vw, 9rem); }
    .faq-script-word { font-size: clamp(1.75rem, 2.8vw, 3.5rem); }
    .faq-q-text     { font-size: 1rem; }
}


/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background-color: #04192E;
    background-image:
        radial-gradient(ellipse 60% 50% at 0% 0%, rgba(168,129,91,0.08) 0%, transparent 55%),
        radial-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 100% 100%, 26px 26px;
    color: rgba(255,255,255,0.7);
}

/* Linha bronze no topo */
.foot-topline {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #A8815B 30%, #A8815B 70%, transparent 100%);
    opacity: 0.5;
}

/* Área principal */
.foot-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Coluna Brand */
.foot-brand { display: flex; flex-direction: column; gap: 1.25rem; }

.foot-logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.foot-logo-img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.foot-logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.foot-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-width: 28ch;
    margin: 0;
}

/* Botão WhatsApp */
.foot-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.3);
    color: rgba(37,211,102,0.9);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, border-color 0.2s;
}
.foot-wa-btn:hover {
    background: rgba(37,211,102,0.2);
    border-color: rgba(37,211,102,0.5);
}

/* Colunas genéricas */
.foot-col { display: flex; flex-direction: column; gap: 1.125rem; }

.foot-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.foot-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.foot-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.foot-links a:hover { color: #A8815B; }

/* Lista de contato com ícones */
.foot-contact-list li { display: flex; }
.foot-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}
.foot-contact-list svg { flex-shrink: 0; opacity: 0.5; }
.foot-contact-list a:hover svg { opacity: 1; }

/* Barra inferior */
.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.foot-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.28);
    margin: 0;
    text-align: center;
}

/* Responsivo */
@media (min-width: 768px) {
    .foot-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
        padding: 5rem 3rem 4rem;
    }
    .foot-brand        { flex: 0 0 38%; }
    .foot-col          { flex: 1; }
    .foot-bottom-inner { padding: 1.375rem 3rem; }
}
