/* ═══════════════════════════════════════════
   VS TATTOO STUDIO — style.css
═══════════════════════════════════════════ */
:root {
    --black:      #060606;
    --ink:        #0E0E0E;
    --charcoal:   #181818;
    --smoke:      #272727;
    --ash:        #3E3E3E;
    --silver:     #7A7A7A;
    --mist:       #B0ADA8;
    --white:      #EDE8DC;
    --gold:       #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark:  #8A6A1A;
    --gold-dim:   rgba(201,168,76,0.13);
    --gold-glow:  rgba(201,168,76,0.38);
    --gradient-gold: linear-gradient(135deg, #8A6A1A 0%, #C9A84C 40%, #E2C97E 60%, #C9A84C 80%, #8A6A1A 100%);

    /* FONTES ATUALIZADAS */
    --font-display: 'Oswald', sans-serif;
    --font-title:   'Cormorant Garamond', serif;
    --font-body:    'Inter', sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    font-size: 16px;
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

/* ═══ CURSOR ═══ */
.cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
    box-shadow: 0 0 8px rgba(201,168,76,0.6);
}
.cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.45); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}
body:hover .cursor { opacity: 1; }

/* ═══ NOISE ═══ */
body::before {
    content: ''; position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03; pointer-events: none; z-index: 9000;
}

/* ═══ LAYOUT ═══ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section { padding: 120px 0; position: relative; }
.text-center { text-align: center; }

.section-label {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    letter-spacing: 5px; text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 20px; display: inline-block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 700;
    letter-spacing: 2px; line-height: 1.1;
    color: var(--white); margin-bottom: 20px;
    text-transform: uppercase;
}
.section-sub { font-size: 16px; color: var(--silver); line-height: 1.8; max-width: 620px; }
.divider { width: 48px; height: 2px; background: var(--gradient-gold); margin: 24px 0; }
.divider-center { margin: 24px auto; }

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px; font-family: var(--font-body);
    font-size: 13px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; border: none; cursor: none;
    transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.08); transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
    background: var(--gradient-gold); color: #080808;
    font-weight: 700; box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn-primary.pulse { animation: btn-pulse 2.5s infinite; }
@keyframes btn-pulse {
    0%   { box-shadow: 0 0 0 0 var(--gold-glow); }
    60%  { box-shadow: 0 0 0 18px rgba(201,168,76,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 35px var(--gold-glow); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(201,168,76,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-2px); }

/* ═══ NAVBAR ═══ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: 88px; z-index: 1000;
    transition: all 0.4s var(--ease);
}
.navbar.scrolled {
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    display: flex; align-items: center;
    justify-content: space-between; height: 88px;
}

/* LOGO ATUALIZADA */
.nav-logo {
    display: flex; align-items: center;
    transition: opacity 0.3s var(--ease);
}
.nav-logo:hover { opacity: 0.85; }
.logo-img {
    height: 54px; width: auto;
    object-fit: contain; display: block;
    filter: brightness(1.05);
    transition: filter 0.3s var(--ease);
}
.logo-img:hover { filter: brightness(1.2); }
.logo-fallback {
    display: none;
    font-family: var(--font-display);
    font-size: 26px; letter-spacing: 3px;
    color: var(--white); align-items: center; gap: 6px;
}
.logo-fallback span {
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 11px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--silver);
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gradient-gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.hamburger {
    display: none; background: none; border: none;
    color: var(--white); font-size: 22px; cursor: none;
}

/* ═══ HERO ═══ */
#hero {
    min-height: 100vh; display: flex; align-items: center;
    min-height: 100svh;
    padding: 120px 0 100px; position: relative; overflow: hidden;
}
#hero::before {
    content: ''; position: absolute; top: -10%; right: -5%;
    width: 45%; height: 120%;
    background: linear-gradient(180deg, #C9A84C 0%, #5A4010 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.06; pointer-events: none;
}
#hero::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
}
.hero-layout {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.58fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}
.hero-inner { min-width: 0; }
.hero-video { width: 100%; max-width: 360px; min-width: 0; justify-self: end; }
.hero-video-frame {
    padding: 6px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 8px;
    background: var(--ink);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(201,168,76,0.06);
}
.hero-video-player {
    display: block;
    width: 100%; height: auto; aspect-ratio: 9 / 16;
    object-fit: contain; background: #000;
    border-radius: 3px; cursor: auto;
}
.hero-video figcaption {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 16px;
    color: var(--mist); font-size: 10px;
    letter-spacing: 2px; text-transform: uppercase;
}
.hero-video figcaption span { width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-eyebrow-line { width: 24px; height: 1px; background: var(--gradient-gold); flex-shrink: 0; }
.hero-eyebrow span {
    font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* HERO TITLE ATUALIZADO */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.3vw, 68px);
    font-weight: 700;
    letter-spacing: 1px; line-height: 1.1;
    color: var(--white); margin-bottom: 12px;
    text-transform: uppercase;
}
.hero-title .outline {
    -webkit-text-stroke: 1px rgba(201,168,76,0.22); color: transparent;
}
.hero-title .red {
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* HERO SUBTITLE ATUALIZADO */
.hero-subtitle {
    font-family: var(--font-title);
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 600; font-style: italic;
    letter-spacing: 3px; color: var(--silver);
    margin: 24px 0 32px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-ctas .btn { padding: 16px 22px; font-size: 11px; letter-spacing: 1.5px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.stat-num { font-family: var(--font-display); font-size: 40px; letter-spacing: 2px; color: var(--white); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 11px; color: var(--silver); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.scroll-indicator span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--ash); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ═══ MARQUEE ═══ */
.marquee-strip { background: var(--charcoal); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
    font-family: var(--font-display); font-size: 14px; letter-spacing: 4px;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    white-space: nowrap; padding: 0 32px; display: flex; align-items: center; gap: 32px;
}
.marquee-dot { width: 5px; height: 5px; background: var(--gold-dark); border-radius: 50%; flex-shrink: 0; }

/* ═══ SOBRE ═══ */
#sobre { background: var(--ink); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-img-wrap { position: relative; }
.sobre-img-accent { position: absolute; bottom: -20px; right: -20px; width: 140px; height: 140px; border: 1px solid var(--gold); opacity: 0.3; }
.sobre-img-accent2 { position: absolute; top: -12px; left: -12px; width: 60px; height: 60px; background: var(--gold); opacity: 0.12; }
.sobre-text p { color: var(--silver); line-height: 1.9; margin-bottom: 20px; font-size: 15px; }
.sobre-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.badge-item { padding: 8px 18px; border: 1px solid rgba(201,168,76,0.3); background: var(--gold-dim); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

/* ═══ ESTILOS ═══ */
#estilos { background: var(--black); }
.estilos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.estilo-card { background: var(--charcoal); padding: 32px; position: relative; overflow: hidden; transition: all 0.4s var(--ease); border: 1px solid rgba(255,255,255,0.04); }
.estilo-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-gold); transition: width 0.4s var(--ease); }
.estilo-card:hover::before { width: 100%; }
.estilo-card:hover { background: var(--smoke); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.05); }
.estilo-card:hover div[style*="opacity:0.4"] { opacity: 0.7 !important; }
.estilo-num { font-family: var(--font-display); font-size: 48px; color: rgba(255,255,255,0.04); line-height: 1; margin-bottom: 12px; transition: color 0.4s; }
.estilo-card:hover .estilo-num { color: var(--gold-dim); }
.estilo-icon { font-size: 28px; margin-bottom: 16px; }
.estilo-card h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; margin-bottom: 10px; color: var(--white); }
.estilo-card p { font-size: 14px; color: var(--silver); line-height: 1.8; }

/* ═══ GALERIA ═══ */
#galeria { background: var(--ink); overflow: hidden; }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 3px; margin-top: 60px; }
.galeria-item { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.04); overflow: hidden; position: relative; cursor: none; }
.galeria-item:first-child { grid-column: span 2; grid-row: span 2; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.galeria-item:hover img { transform: scale(1.04); }
.galeria-overlay { position: absolute; inset: 0; background: rgba(184,151,42,0.1); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s; }
.galeria-overlay span { font-family: var(--font-display); font-size: 16px; letter-spacing: 4px; color: #fff; }
.galeria-item:hover .galeria-overlay { opacity: 1; }

/* ═══ PROCESSO ═══ */
#processo { background: var(--black); }
.processo-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.processo-list::before { content: ''; position: absolute; top: 28px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), var(--ash), transparent); z-index: 0; }
.processo-step { position: relative; z-index: 1; padding: 0 24px; text-align: center; }
.processo-num {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(201,168,76,0.25), inset 0 0 0 1px rgba(201,168,76,0.4);
}
.processo-step h4 { font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; margin-bottom: 10px; }
.processo-step p { font-size: 13px; color: var(--silver); line-height: 1.7; }

/* ═══ DEPOIMENTOS ═══ */
#depoimentos { background: var(--ink); }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.depo-card { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.05); padding: 36px; position: relative; transition: all 0.4s var(--ease); }
.depo-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: var(--font-display); font-size: 80px; color: var(--gold); opacity: 0.12; line-height: 1; }
.depo-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.06); }
.stars { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; display: block; }
.depo-text { font-size: 14px; line-height: 1.85; color: var(--mist); margin-bottom: 28px; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 14px; }
.depo-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.45);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 14px;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    flex-shrink: 0;
}
.depo-name { font-weight: 600; font-size: 14px; }
.depo-detail { font-size: 12px; color: var(--silver); margin-top: 2px; }

/* ═══ FAQ ═══ */
#faq { background: var(--black); }
.faq-wrap { max-width: 780px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 500; padding: 24px 0; cursor: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; transition: color 0.3s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--gold); transition: all 0.3s var(--ease); }
.faq-item.active .faq-icon { transform: rotate(45deg); border-color: var(--gold); background: var(--gold-dim); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); color: var(--silver); }
.faq-a-inner { padding-bottom: 24px; font-size: 15px; line-height: 1.85; }

/* ═══ CTA FINAL ═══ */
#cta-final { background: var(--ink); text-align: center; overflow: hidden; }
#cta-final::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-box { position: relative; z-index: 1; padding: 80px 40px; border: 1px solid rgba(201,168,76,0.25); max-width: 820px; margin: 0 auto; }
.cta-box::before, .cta-box::after { content: ''; position: absolute; width: 60px; height: 60px; border-color: var(--gold-light); border-style: solid; opacity: 0.45; }
.cta-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.cta-box::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.cta-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); font-weight: 700; letter-spacing: 3px; line-height: 1; margin-bottom: 24px; }
.cta-sub { font-size: 16px; color: var(--silver); max-width: 560px; margin: 0 auto 40px; line-height: 1.8; }
.cta-note { font-size: 12px; color: var(--ash); margin-top: 20px; letter-spacing: 1px; }

/* ═══ FOOTER ═══ */
footer { background: #030303; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; color: var(--ash); }
.footer-logo span { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-copy { font-size: 12px; color: var(--ash); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--ash); letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══ ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ═══ SHIMMER / GLITCH ═══ */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.nav-logo:hover .logo-img { filter: brightness(1.25); }

/* ═══ RESPONSIVE ═══ */
@media (min-width: 769px) and (max-height: 850px) {
    #hero { padding: 112px 0 64px; }
    .hero-title { font-size: clamp(40px, min(5.1vw, 6.9svh), 60px); }
    .hero-eyebrow { margin-bottom: 20px; }
    .hero-subtitle { margin: 20px 0 24px; }
    .hero-ctas { margin-bottom: 24px; }
    .hero-stats { padding-top: 20px; }
    .hero-video { max-width: clamp(230px, calc((100svh - 210px) * 0.5625), 360px); }
    .scroll-indicator { bottom: 16px; }
    .scroll-line { height: 24px; }
}
@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .nav-links a { letter-spacing: 2px; }
    .estilos-grid { grid-template-columns: repeat(2, 1fr); }
    .galeria-grid { grid-template-columns: repeat(2, 1fr); }
    .galeria-item:first-child { grid-column: span 2; }
    .processo-list { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .processo-list::before { display: none; }
    .depo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    section { padding: 80px 0; }
    .navbar, .nav-inner { height: 80px; }
    .logo-img { height: 42px; }
    #hero { padding: 112px 0 64px; }
    .hero-layout { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .hero-video { justify-self: center; }
    .hero-title { font-size: clamp(36px, 7.5vw, 58px); }
    .hero-eyebrow { margin-bottom: 24px; }
    .hero-eyebrow span { letter-spacing: 2px; }
    .scroll-indicator { display: none; }
    .nav-links {
        position: absolute; top: 80px; left: 0; right: 0;
        background: rgba(8,8,8,0.97); backdrop-filter: blur(20px);
        flex-direction: column; padding: 32px; gap: 28px;
        border-bottom: 1px solid rgba(255,255,255,0.06); display: none;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; cursor: pointer; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { justify-content: center; cursor: pointer; }
    .hero-stats { gap: 16px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .estilos-grid { grid-template-columns: 1fr; }
    .galeria-grid { grid-template-columns: 1fr 1fr; }
    .processo-list { grid-template-columns: 1fr; }
    .depo-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .btn { cursor: pointer; }
    .faq-q { cursor: pointer; }
}
@media (max-width: 480px) {
    .hero-layout { padding-inline: 20px; }
    .hero-title { font-size: clamp(32px, 9vw, 43px); letter-spacing: 0; }
    .hero-eyebrow { gap: 8px; }
    .hero-eyebrow span { font-size: 9px; letter-spacing: 1.5px; }
    .hero-subtitle { letter-spacing: 2px; }
    .hero-stats .stat-num { font-size: clamp(24px, 7vw, 32px); letter-spacing: 1px; }
    .hero-stats .stat-label { font-size: 9px; letter-spacing: 1px; }
    .section-title { font-size: 32px; }
    .galeria-grid { grid-template-columns: 1fr; }
    .galeria-item:first-child { grid-column: span 1; }
    .cta-box { padding: 48px 24px; }
}
