/* ==========================================================================
   RAFAS PEÇAS — Design System
   Iluminação Automotiva de Alta Performance
   Paleta da marca preservada: #F26B1D / #D45A0F sobre base cinza fosco
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Marca (cores originais mantidas) */
    --primary: #F26B1D;
    --primary-dark: #D45A0F;
    --primary-light: #FF8C42;
    --primary-glow: rgba(242, 107, 29, 0.45);
    --primary-soft: rgba(242, 107, 29, 0.12);

    /* Superfícies — cinza fosco */
    --bg: #1A1B1E;
    --bg-deep: #151619;
    --surface: #212328;
    --surface-2: #272930;
    --surface-3: #2E3038;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.17);

    /* Texto */
    --white: #FFFFFF;
    --text: #E7E8EA;
    --muted: #A5A8AF;
    --muted-dim: #7B7E86;

    /* Elevação */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
    --shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.55);

    /* Métrica */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --header-h: 68px;

    /* Movimento */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s ease;
    --dur: 0.42s;
}

@property --ledAngle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* o cabeçalho some ao rolar, então basta uma folga visual */
    scroll-padding-top: 24px;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grão fino — dá o aspecto "fosco" e evita banding nos degradês */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.no-scroll {
    overflow: hidden;
}

img,
svg,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

::selection {
    background: var(--primary);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: 4px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dark) var(--surface);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    border: 2px solid var(--bg-deep);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ícones — sprite SVG inline, herdam a cor do texto */
.ico {
    width: 1.05em;
    height: 1.05em;
    flex: none;
    color: inherit;
    vertical-align: -0.15em;
}

/* Logo — imagem original da marca, sobre fundo escuro */
.logo-img {
    height: auto;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   3. TIPOGRAFIA / LAYOUT
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.018em;
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: clamp(56px, 7.5vw, 92px) 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(34px, 5vw, 52px);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 14px;
    border: 1px solid rgba(242, 107, 29, 0.24);
    border-radius: 100px;
    background: rgba(242, 107, 29, 0.08);
    margin-bottom: 15px;
}

.kicker::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px 1px var(--primary);
    animation: ledPulse 2.4s ease-in-out infinite;
}

@keyframes ledPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.section-title {
    font-size: clamp(1.55rem, 3.4vw, 2.25rem);
    margin-bottom: 12px;
}

.section-title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--primary-light), var(--primary) 55%, var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-sub {
    color: var(--muted);
    font-size: clamp(0.92rem, 1.7vw, 1rem);
    max-width: 560px;
    margin: 0 auto;
}

.rule {
    position: relative;
    width: 108px;
    height: 2px;
    margin: 18px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    overflow: hidden;
}

.rule::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: ruleScan 3.2s var(--ease-out) infinite;
}

@keyframes ruleScan {
    0% { left: -40%; }
    55%, 100% { left: 110%; }
}

.section-head.is-left {
    text-align: left;
    margin: 0 0 22px;
    max-width: none;
}

.section-head.is-left .rule,
.section-head.is-left .section-sub {
    margin-left: 0;
}

/* --------------------------------------------------------------------------
   4. BOTÕES
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color .3s ease, color .3s ease, border-color .3s ease;
    background: linear-gradient(135deg, var(--primary-light), var(--primary) 45%, var(--primary-dark));
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 8px 22px -10px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.38) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform 0.75s var(--ease-out);
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: translateX(120%);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -12px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(242, 107, 29, 0.5);
    color: var(--primary-light);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 14px 32px -14px var(--primary-glow);
}

.btn-wa {
    background: linear-gradient(135deg, #2FE070, #25D366 45%, #12A150);
    box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-wa:hover {
    box-shadow: 0 16px 34px -12px rgba(37, 211, 102, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-sm {
    padding: 10px 19px;
    font-size: 0.79rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--muted);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--muted-dim);
    color: var(--white);
    box-shadow: none;
}

/* --------------------------------------------------------------------------
   5. PRELOADER
   -------------------------------------------------------------------------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: radial-gradient(125% 95% at 88% 6%, #34363C 0%, #26282D 34%, #1D1E22 68%, #17181B 100%);
    transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader .logo-img {
    width: min(320px, 70vw);
    animation: introLogo 1.1s var(--ease-out) both;
}

@keyframes introLogo {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to { opacity: 1; transform: none; }
}

.preloader-bar {
    position: relative;
    width: 168px;
    height: 2px;
    margin: 28px auto 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar span {
    position: absolute;
    inset: 0;
    width: 45%;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), #FFB067, transparent);
    animation: loadSweep 1.15s var(--ease-out) infinite;
}

@keyframes loadSweep {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}

/* --------------------------------------------------------------------------
   6. HEADER / NAVEGAÇÃO
   -------------------------------------------------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), #FFB067);
    box-shadow: 0 0 12px var(--primary-glow);
    z-index: 1002;
    will-change: transform;
}

/* O cabeçalho existe apenas no topo: ao rolar ele desvanece por completo
   e para de interceptar cliques, nunca sobrepondo o conteúdo. */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: transform .5s var(--ease), visibility .35s;
    will-change: opacity;
}

.site-header.is-gone {
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.brand .logo-img {
    width: 118px;
    transition: transform .4s var(--ease), filter .4s var(--ease);
}

.brand:hover .logo-img {
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 14px var(--primary-glow));
}

.nav {
    display: none;
    align-items: center;
    gap: 4px;
}

.nav a {
    position: relative;
    display: block;
    padding: 9px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--muted);
    border-radius: 100px;
    transition: color .3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transform: translateX(-50%);
    transition: width .35s var(--ease);
}

.nav a:hover,
.nav a.is-active {
    color: var(--white);
}

.nav a:hover::after,
.nav a.is-active::after {
    width: 20px;
}

.header-cta {
    display: none;
}

.menu-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    z-index: 1001;
    transition: border-color .3s ease;
}

.menu-btn:hover {
    border-color: var(--primary);
}

.menu-btn span {
    position: absolute;
    left: 13px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform .38s var(--ease), opacity .25s ease, width .3s ease;
}

.menu-btn span:nth-child(1) { transform: translateY(-5.5px); }
.menu-btn span:nth-child(2) { width: 13px; }
.menu-btn span:nth-child(3) { transform: translateY(5.5px); }

.menu-btn.is-open span:nth-child(1) { transform: rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; width: 18px; }
.menu-btn.is-open span:nth-child(3) { transform: rotate(-45deg); }

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 24px 36px;
    background: rgba(21, 22, 25, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}

.mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-panel nav {
    display: flex;
    flex-direction: column;
}

.mobile-panel nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(16px);
    transition: color .3s ease;
}

.mobile-panel.is-open nav a {
    animation: navIn .5s var(--ease-out) forwards;
}

.mobile-panel.is-open nav a:nth-child(1) { animation-delay: .08s; }
.mobile-panel.is-open nav a:nth-child(2) { animation-delay: .14s; }
.mobile-panel.is-open nav a:nth-child(3) { animation-delay: .20s; }
.mobile-panel.is-open nav a:nth-child(4) { animation-delay: .26s; }

@keyframes navIn {
    to { opacity: 1; transform: translateY(0); }
}

.mobile-panel nav a .ico {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.mobile-panel nav a:hover {
    color: var(--primary);
}

.mobile-panel .btn {
    margin-top: 28px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   7. HERO — cinza fosco com degradê no canto superior direito
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-h) + 46px) 0 76px;
    /* cinza fosco, clareando suavemente rumo ao canto superior direito */
    background:
        radial-gradient(135% 105% at 93% -4%,
            #585C66 0%,
            #4B4E58 12%,
            #3F424B 26%,
            #35373F 42%,
            #2C2E35 60%,
            #26272D 78%,
            var(--bg) 100%);
}

/* ---- Camadas animadas de fundo ---- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Orbes de luz que flutuam lentamente */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    will-change: transform;
}

/* Clarão frio que reforça o degradê do canto superior direito */
.orb-1 {
    width: clamp(300px, 52vw, 700px);
    aspect-ratio: 1;
    top: -22%;
    right: -12%;
    background: radial-gradient(circle, rgba(196, 206, 224, 0.14), transparent 66%);
    animation: orbA 24s ease-in-out infinite alternate;
}

.orb-2 {
    width: clamp(260px, 42vw, 560px);
    aspect-ratio: 1;
    left: -14%;
    bottom: -20%;
    background: radial-gradient(circle, rgba(150, 170, 205, 0.11), transparent 68%);
    animation: orbB 30s ease-in-out infinite alternate;
}

/* Único toque da cor da marca, discreto */
.orb-3 {
    width: clamp(240px, 38vw, 520px);
    aspect-ratio: 1;
    left: 30%;
    top: 52%;
    background: radial-gradient(circle, rgba(242, 107, 29, 0.11), transparent 70%);
    animation: orbC 36s ease-in-out infinite alternate;
}

@keyframes orbA {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(-6%, 8%, 0) scale(1.12); }
    100% { transform: translate3d(4%, -5%, 0) scale(0.94); }
}

@keyframes orbB {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(10%, -9%, 0) scale(1.15); }
    100% { transform: translate3d(-5%, 4%, 0) scale(0.96); }
}

@keyframes orbC {
    0%   { transform: translate3d(0, 0, 0) scale(0.95); }
    50%  { transform: translate3d(-12%, -10%, 0) scale(1.1); }
    100% { transform: translate3d(8%, 6%, 0) scale(1); }
}

/* Malha técnica sutil, mais visível no canto claro */
.hero-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(115% 88% at 88% 4%, #000 0%, rgba(0, 0, 0, 0.45) 42%, transparent 78%);
    mask-image: radial-gradient(115% 88% at 88% 4%, #000 0%, rgba(0, 0, 0, 0.45) 42%, transparent 78%);
    animation: gridDrift 32s linear infinite;
}

@keyframes gridDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 64px 64px, 64px 64px; }
}

/* Varredura diagonal de brilho */
.hero-sheen {
    position: absolute;
    top: -45%;
    left: -70%;
    width: 48%;
    height: 190%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.055), transparent);
    transform: rotate(14deg);
    animation: sheenSweep 12s ease-in-out infinite;
}

@keyframes sheenSweep {
    0%, 100% { transform: translateX(0) rotate(14deg); }
    55%, 70% { transform: translateX(330%) rotate(14deg); }
}

/* Partículas subindo */
.sparks {
    position: absolute;
    inset: 0;
}

.sparks i {
    position: absolute;
    bottom: -12px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 8px 1px rgba(242, 107, 29, 0.65);
    opacity: 0;
    animation-name: sparkRise;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
}

@keyframes sparkRise {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
    12%  { opacity: 0.85; }
    80%  { opacity: 0.45; }
    100% { transform: translate3d(14px, -92vh, 0) scale(0.4); opacity: 0; }
}

/* Leve escurecimento na base para casar com a seção seguinte */
.hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22%;
    background: linear-gradient(180deg, transparent, var(--bg));
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    width: min(260px, 58vw);
    margin: 0 auto 20px;
    filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.55));
}

.hero h1 {
    font-size: clamp(1.75rem, 4.4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 16px;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.5);
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, #FFD9B8 0%, var(--primary-light) 38%, var(--primary) 72%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lede {
    font-size: clamp(0.95rem, 1.9vw, 1.06rem);
    color: #CDD0D6;
    max-width: 560px;
    margin: 0 auto 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-actions .btn {
    min-width: 196px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 10px;
    margin-top: 32px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    font-size: 0.76rem;
    font-weight: 500;
    color: #D6D8DD;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: rgba(20, 21, 24, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badges .ico {
    color: var(--primary);
    width: 0.95rem;
    height: 0.95rem;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.62rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted-dim);
    transition: opacity .4s ease;
}

.scroll-cue-track {
    width: 23px;
    height: 37px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    position: relative;
}

.scroll-cue-track::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    margin-left: -1.5px;
    border-radius: 3px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: cueDrop 1.9s var(--ease-out) infinite;
}

@keyframes cueDrop {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    75%, 100% { transform: translateY(14px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   8. FAIXA DE DESTAQUES
   -------------------------------------------------------------------------- */
.ticker {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, var(--bg-deep), var(--surface) 50%, var(--bg-deep));
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 34s linear infinite;
}

.ticker-group {
    display: flex;
    flex-shrink: 0;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8E9199;
    white-space: nowrap;
}

.ticker-item .ico {
    width: 0.85em;
    height: 0.85em;
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   9. SERVIÇOS
   -------------------------------------------------------------------------- */
.services {
    background:
        radial-gradient(65% 45% at 50% 0%, rgba(242, 107, 29, 0.05) 0%, transparent 62%),
        var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(242, 107, 29, 0.13), transparent 62%);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 107, 29, 0.45);
    box-shadow: var(--shadow-lg), 0 0 38px -18px var(--primary-glow);
}

.service-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #16171A;
    flex-shrink: 0;
}

.service-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.service-card:hover .service-media > img {
    transform: scale(1.06);
}

/* Imagem ausente — sem depender de serviço externo */
.media-missing {
    background:
        radial-gradient(70% 70% at 50% 40%, rgba(242, 107, 29, 0.14) 0%, transparent 68%),
        linear-gradient(160deg, var(--surface-3) 0%, var(--bg-deep) 100%);
}

.media-missing::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F26B1D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3a6 6 0 0 0-3.6 10.8c.6.45.9 1.15.9 1.9V17h5.4v-1.3c0-.75.3-1.45.9-1.9A6 6 0 0 0 12 3z'/%3E%3Cpath d='M9.4 20h5.2'/%3E%3C/svg%3E") center / 50px 50px no-repeat;
}

.about-frame.media-missing {
    aspect-ratio: 4 / 3;
}

.service-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h3 {
    font-size: 1.12rem;
    color: var(--white);
    margin-bottom: 11px;
    transition: color .3s ease;
}

.service-card:hover .service-body h3 {
    color: var(--primary-light);
}

.service-body p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.68;
    flex: 1;
}

.price-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 7px 14px;
    margin-bottom: 13px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(242, 107, 29, 0.16), rgba(242, 107, 29, 0.05));
    border: 1px solid rgba(242, 107, 29, 0.32);
    font-size: 0.8rem;
    color: #FFCBA4;
}

.price-tag strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--primary-light);
}

.price-tag small {
    font-size: 0.68rem;
    color: var(--muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.79rem;
    color: var(--primary);
    transition: gap .3s var(--ease), color .3s ease;
}

.service-link:hover {
    gap: 13px;
    color: var(--primary-light);
}

.media-tag {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 14;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line-strong);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E9EBEE;
    pointer-events: none;
    transition: opacity .35s ease;
}

.media-tag .ico {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--primary);
}

.compare.is-touched .media-tag {
    opacity: 0;
}

/* --------------------------------------------------------------------------
   10. COMPARADOR ANTES / DEPOIS
   -------------------------------------------------------------------------- */
.compare {
    --pos: 50%;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #16171A;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
}

.compare img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.compare .cmp-after {
    z-index: 1;
}

.compare .cmp-before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.cmp-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 2px;
    margin-left: -1px;
    z-index: 12;
    background: linear-gradient(180deg, transparent, var(--primary) 12%, #FFE2CB 50%, var(--primary) 88%, transparent);
    box-shadow: 0 0 10px 1px var(--primary-glow);
    pointer-events: none;
}

.cmp-handle {
    position: absolute;
    top: 50%;
    left: var(--pos);
    z-index: 13;
    width: 38px;
    height: 38px;
    margin: -19px 0 0 -19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-light), var(--primary) 50%, var(--primary-dark));
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.55), 0 0 18px -2px var(--primary-glow);
    cursor: grab;
    transition: transform .25s var(--ease);
}

.cmp-handle .ico {
    width: 17px;
    height: 17px;
}

.compare:hover .cmp-handle {
    transform: scale(1.08);
}

.cmp-handle:active {
    cursor: grabbing;
    transform: scale(0.96);
}

.cmp-handle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.cmp-handle::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    opacity: 0;
    animation: handleRing 2.6s var(--ease-out) infinite;
}

.compare.is-touched .cmp-handle::after {
    animation: none;
    opacity: 0;
}

@keyframes handleRing {
    0% { transform: scale(0.85); opacity: 0.8; }
    70%, 100% { transform: scale(1.5); opacity: 0; }
}

.cmp-label {
    position: absolute;
    bottom: 11px;
    z-index: 11;
    padding: 5px 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 100px;
    pointer-events: none;
}

.cmp-label.is-before {
    left: 11px;
    border: 1px solid var(--line-strong);
    color: #B9BDC4;
}

.cmp-label.is-after {
    right: 11px;
    border: 1px solid rgba(242, 107, 29, 0.55);
    color: var(--primary-light);
}

/* --------------------------------------------------------------------------
   11. SOBRE
   -------------------------------------------------------------------------- */
.about {
    background:
        radial-gradient(48% 38% at 90% 6%, rgba(242, 107, 29, 0.07) 0%, transparent 62%),
        var(--bg-deep);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.9s var(--ease);
}

.about-frame:hover img {
    transform: scale(1.04);
}

.years-badge {
    position: absolute;
    top: -14px;
    left: -6px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--primary-light), var(--primary) 50%, var(--primary-dark));
    box-shadow: 0 14px 32px -12px var(--primary-glow), inset 0 2px 0 rgba(255, 255, 255, 0.28);
    color: #fff;
    text-align: center;
    line-height: 1;
}

.years-badge b {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
}

.years-badge span {
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.92;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 13px;
    font-size: 0.95rem;
    line-height: 1.76;
}

.about-content p.is-lead {
    font-size: 1.04rem;
    color: #E2E3E6;
}

.about-quote {
    margin-top: 22px;
    padding: 15px 19px;
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: linear-gradient(90deg, rgba(242, 107, 29, 0.1), transparent);
    color: #E0E1E4;
    font-style: italic;
}

.about-quote p {
    margin: 0;
    color: inherit;
    font-size: 0.95rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.stat {
    padding: 17px 10px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.025);
    transition: border-color .35s ease, transform .35s var(--ease), background-color .35s ease;
}

.stat:hover {
    border-color: rgba(242, 107, 29, 0.42);
    background: rgba(242, 107, 29, 0.05);
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.45rem, 3.2vw, 1.95rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(150deg, #FFD3B0, var(--primary) 60%, var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    margin-top: 8px;
    font-size: 0.63rem;
    color: var(--muted-dim);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   12. CTA
   -------------------------------------------------------------------------- */
.cta {
    background: var(--bg);
}

.cta-panel {
    position: relative;
    padding: clamp(32px, 5vw, 56px) clamp(22px, 4.5vw, 52px);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(80% 130% at 50% 0%, rgba(242, 107, 29, 0.15) 0%, transparent 62%),
        linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--ledAngle),
        transparent 0deg 200deg,
        rgba(242, 107, 29, 0.5) 260deg,
        #FFB067 300deg,
        #fff 315deg,
        var(--primary) 330deg,
        transparent 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ledSpin 5s linear infinite;
    pointer-events: none;
}

@keyframes ledSpin {
    to { --ledAngle: 360deg; }
}

.cta-panel p {
    max-width: 600px;
    margin: 0 auto 26px;
    color: var(--muted);
    font-size: 0.98rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   13. CONTATO
   -------------------------------------------------------------------------- */
.contact {
    background:
        radial-gradient(55% 40% at 50% 100%, rgba(242, 107, 29, 0.06) 0%, transparent 62%),
        var(--bg-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-card {
    position: relative;
    padding: 26px 20px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform .45s var(--ease);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 107, 29, 0.4);
    box-shadow: var(--shadow), 0 0 34px -18px var(--primary-glow);
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 15px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary-light);
    background: linear-gradient(140deg, rgba(242, 107, 29, 0.2), rgba(242, 107, 29, 0.05));
    border: 1px solid rgba(242, 107, 29, 0.28);
    transition: transform .45s var(--ease), background .35s ease, color .35s ease;
}

.contact-icon .ico {
    width: 23px;
    height: 23px;
}

.contact-card:hover .contact-icon {
    transform: translateY(-2px) rotate(-6deg) scale(1.05);
    background: linear-gradient(140deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.contact-card h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.contact-card .highlight {
    display: block;
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    color: var(--primary-light);
}

.contact-card .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    transition: gap .3s var(--ease);
}

.contact-card:hover .card-cta {
    gap: 11px;
}

/* --------------------------------------------------------------------------
   14. RODAPÉ
   -------------------------------------------------------------------------- */
.site-footer {
    background: #121316;
    border-top: 1px solid var(--line);
    padding: 54px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 38px;
}

.footer-brand .logo-img {
    width: 170px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--muted-dim);
    font-size: 0.88rem;
    max-width: 320px;
    line-height: 1.7;
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    transition: transform .35s var(--ease), background-color .3s ease, color .3s ease, border-color .3s ease;
}

.social a .ico {
    width: 18px;
    height: 18px;
}

.social a:hover {
    transform: translateY(-3px);
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-col h4 {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 17px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col li {
    margin-bottom: 10px;
    color: var(--muted-dim);
    font-size: 0.87rem;
    line-height: 1.6;
}

.footer-col a {
    color: var(--muted);
    transition: color .3s ease, padding-left .3s var(--ease);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-note {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted-dim);
    font-size: 0.79rem;
}

.footer-note a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s ease;
}

.footer-note a:hover {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   15. AÇÕES FLUTUANTES
   -------------------------------------------------------------------------- */
.float-stack {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
}

.fab {
    position: relative;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: var(--shadow);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), opacity .35s ease, visibility .35s, background-color .3s ease;
}

.fab .ico {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.fab-wa {
    background: linear-gradient(140deg, #2FE070, #25D366 45%, #128C7E);
}

.fab-wa::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: fabRing 2.8s var(--ease-out) infinite;
}

@keyframes fabRing {
    0% { transform: scale(1); opacity: 0.75; }
    70%, 100% { transform: scale(1.6); opacity: 0; }
}

.fab-wa:hover {
    transform: scale(1.07);
}

.fab-top {
    width: 42px;
    height: 42px;
    color: var(--text);
    background: rgba(38, 40, 46, 0.92);
    border: 1px solid var(--line-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.fab-top .ico {
    width: 17px;
    height: 17px;
}

.fab-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. MODAL DE PRIVACIDADE
   -------------------------------------------------------------------------- */
.privacy-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(10, 11, 13, 0.86);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s var(--ease), visibility .45s;
}

.privacy-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.privacy-modal {
    width: min(480px, 100%);
    padding: 34px 28px 30px;
    text-align: center;
    border-radius: 22px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    box-shadow: var(--shadow-lg);
    transform: translateY(22px) scale(0.97);
    transition: transform .5s var(--ease-out);
}

.privacy-overlay.is-open .privacy-modal {
    transform: none;
}

.privacy-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(140deg, var(--primary-light), var(--primary) 50%, var(--primary-dark));
    box-shadow: 0 14px 30px -12px var(--primary-glow), inset 0 2px 0 rgba(255, 255, 255, 0.26);
}

.privacy-icon .ico {
    width: 27px;
    height: 27px;
}

.privacy-modal h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.privacy-modal p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.privacy-modal .privacy-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-modal .privacy-link:hover {
    color: var(--primary-light);
}

.privacy-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-buttons .btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   17. REVELAÇÃO NO SCROLL
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-34px);
    transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
    transition-delay: var(--delay, 0ms);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   18. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
    .privacy-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .privacy-buttons .btn {
        width: auto;
        min-width: 152px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 680px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 28px;
    }

    .footer-note {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .compare,
    .service-media {
        height: 250px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .years-badge {
        width: 100px;
        height: 100px;
        top: -18px;
        left: -18px;
    }

    .years-badge b {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    :root {
        --header-h: 80px;
    }

    .nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-btn,
    .mobile-panel {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
        gap: 34px;
    }

    .brand .logo-img {
        width: 142px;
    }

    .float-stack {
        right: 24px;
        bottom: 24px;
    }
}

@media (max-width: 400px) {
    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   19. ACESSIBILIDADE — movimento reduzido
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .reveal,
    .reveal-left {
        opacity: 1 !important;
        transform: none !important;
    }

    .ticker-track {
        animation: none;
        transform: none;
    }

    .sparks,
    .hero-sheen {
        display: none;
    }

    .preloader .logo-img {
        opacity: 1;
        transform: none;
    }
}

/* Impressão */
@media print {
    .site-header,
    .float-stack,
    .preloader,
    .privacy-overlay,
    .hero-bg,
    .scroll-cue,
    .scroll-progress,
    .ticker {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
