/* ============================================================
   UDSON HENRIQUE — DESIGN SYSTEM PREMIUM v2.0
   Paleta: Preto #030308 | Verde Base #1d2c1b | Dourado #C19D5D
   Referência: Ashley Demo (BSL Themes) — editorial + minimalista
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --black:       #0a0f0a;
  --black-2:     #0c140c;
  --navy:        #1d2c1b;
  --green-glow:  rgba(29, 44, 27, 0.4);
  --gold:        #C19D5D;
  --gold-light:  #d4b47a;
  --gold-dark:   #9a7c43;
  --white:       #F5F3EE;
  --white-pure:  #ffffff;
  --offwhite:    #F0EDE7;
  --muted:       rgba(245,243,238,0.45);
  --muted-dark:  rgba(10,10,10,0.45);
  --border:      rgba(193,157,93,0.15);
  --border-light: rgba(0,0,0,0.08);
  --max-w:       1440px;
  --radius:      4px;
  --radius-pill: 100px;
  --ease:        cubic-bezier(.165,.84,.44,1);
  --ease-out:    cubic-bezier(.19,1,.22,1);
  --transition:  .4s var(--ease);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Tipografia — mistura de pesos (estilo Ashley exato: Outfit 100 + 500) */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
}
h1 .thin, h2 .thin, h3 .thin {
  font-weight: 100;
  color: rgba(245,243,238,0.38);
  letter-spacing: .01em;
}
h1 .dark-thin, h2 .dark-thin {
  font-weight: 100;
  color: rgba(10,10,10,0.28);
}

/* ── CURSOR CUSTOMIZADO ──────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .1s ease, width .3s ease, height .3s ease, opacity .3s ease;
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(193,157,93,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .3s ease, height .3s ease, opacity .3s ease;
}
.cursor.hovered { width: 6px; height: 6px; }
.cursor-follower.hovered { width: 56px; height: 56px; border-color: var(--gold); }

/* ── UTILITIES ───────────────────────────────────────── */
.container    { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 60px; }
.section-pad  { padding: 140px 0; }
.section-pad-sm { padding: 90px 0; }
.flex         { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2       { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.grid-3       { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.text-center  { text-align: center; }
.bg-white     { background: var(--offwhite); }
.bg-black     { background: var(--black); }

/* Labels de seção — estilo editorial */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.section-label::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.section-label.dark-label { color: rgba(10,10,18,0.5); }
.section-label.dark-label::before { background: rgba(10,10,18,0.3); }

/* Divisor leve */
.divider { width: 100%; height: 1px; background: var(--border); margin: 0; }
.divider-light { background: var(--border-light); }

/* ── BARRA LATERAL — HOMEPAGE / BACK TO TOP ─────────── */
.side-label {
  position: fixed;
  writing-mode: vertical-rl;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(245,243,238,.25);
  z-index: 100;
  transition: color .3s ease;
}
.side-label:hover { color: var(--gold); }
.side-label-left  { left: 28px; bottom: 40px; }
.side-label-right { right: 28px; bottom: 40px; transform: rotate(180deg); }
.side-label-right a { color: inherit; }

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 32px 0;
  transition: padding .4s ease, background .4s ease;
}
.navbar.scrolled {
  padding: 16px 0;
  background: rgba(13, 19, 12, .95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(193,157,93,.08);
}
.nav-logo img { height: 80px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 48px; }
.nav-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(245,243,238,.6);
  position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--white); }

/* Botão CTA navbar — pill estilo Ashley */
.nav-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--black);
  background: var(--gold);
  padding: 14px 28px; border-radius: var(--radius-pill);
  transition: var(--transition);
  margin-left: 16px;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--black); }
.nav-cta .arrow-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: transform .3s ease;
}
.nav-cta:hover .arrow-circle { transform: rotate(45deg); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── MOBILE MENU ──────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--black); backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 500;
  text-transform: uppercase; color: rgba(245,243,238,.6);
  letter-spacing: -.03em;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-close { position: absolute; top: 32px; right: 40px; font-size: 1.6rem; cursor: pointer; color: rgba(245,243,238,.4); background: none; border: none; }

/* ── GEOMETRIC BACKGROUND SHAPES ────────────────────── */
.geo-bg {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: 0.045;
}
.geo-bg svg { stroke: var(--gold); fill: none; stroke-width: 1; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 240px 0 160px;
  background: var(--navy);
}

/* Imagem de fundo com overlay forte */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-rio.png');
  background-size: cover; background-position: center;
  opacity: 0.18;
  filter: grayscale(10%) brightness(.75);
}

/* Radial glow dourado sutil */
.hero::after {
  content: '';
  position: absolute; right: -300px; top: -200px;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,157,93,.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Sincronizado com o container global centralizado */
.hero .container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }

/* Eyebrow tag wrap (dupla: alerta + label) */
.hero-tag-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }

/* Badge de urgência — alerta fiscal */
.hero-tag-alert {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,200,100,.9);
  background: rgba(255,180,50,.08);
  border: 1px solid rgba(255,180,50,.2);
  border-radius: 100px;
  padding: 6px 16px;
  width: fit-content;
}

/* Eyebrow tag minimalista */
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

/* Título massivo com pesos mistos — exato do Ashley */
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.0;
  margin-bottom: 36px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 100;
  color: rgba(245,243,238,.38);
}
.hero h1 .accent { color: var(--gold); font-weight: 500; }

.hero-sub {
  font-size: 16px;
  color: rgba(245,243,238,.55);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 56px;
  font-weight: 400;
}

/* Botões hero */
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Pill button — primário */
.btn-pill {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 18px 36px; border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-pill:hover { background: var(--gold-light); color: var(--black); transform: translateY(-3px); }
.btn-pill .ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
  transition: transform .35s var(--ease);
}
.btn-pill:hover .ico { transform: rotate(45deg); }

/* Ghost link button */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(245,243,238,.65);
  transition: var(--transition);
}
.btn-ghost .ico-circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(245,243,238,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover .ico-circle { border-color: var(--gold); background: var(--gold); color: var(--black); }

/* Scroll indicator circular rotativo */
.scroll-indicator {
  position: absolute; right: 80px; bottom: 60px; z-index: 2;
}
.scroll-ring {
  width: 90px; height: 90px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.scroll-ring-text {
  position: absolute; inset: 0;
  animation: rotateText 12s linear infinite;
}
.scroll-ring-text svg { width: 90px; height: 90px; }
.scroll-ring-text text {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; fill: rgba(245,243,238,.3);
}
.scroll-ring-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 14px;
  animation: icon-bounce 2.5s ease-in-out infinite;
}
@keyframes rotateText { to { transform: rotate(360deg); } }
@keyframes icon-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* Stats hero */
.hero-stats {
  display: flex; gap: 56px; margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(245,243,238,.07);
}
.hero-stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 6px;
}
.hero-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); line-height: 1;
}

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden; padding: 16px 0;
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--black);
  padding: 0 50px; flex-shrink: 0;
}
.marquee-track span::after { content: '✦'; margin-left: 50px; opacity: .4; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SEÇÃO SOBRE (light section) ─────────────────────── */
.section-light {
  background: var(--offwhite);
  color: var(--black);
}

.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.about-editorial-left {
  /* Alinhado com o eixo editorial de 60px */
  padding: 120px 80px 120px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-editorial-right {
  position: relative; overflow: hidden;
}
.about-editorial-right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
  transition: transform 8s ease;
}
.about-editorial:hover .about-editorial-right img { transform: scale(1.04); }

.about-badge {
  position: absolute; bottom: 48px; left: -28px;
  background: var(--gold);
  padding: 28px 32px;
  display: flex; flex-direction: column; align-items: center;
}
.about-badge strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--black); line-height: 1;
}
.about-badge span {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(3,3,8,.65);
  margin-top: 4px; text-align: center;
  max-width: 80px;
}

/* Título editorial (pesos mistos — idêntico ao Ashley) */
.editorial-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--black);
}
.editorial-title .thin {
  font-weight: 100;
  color: rgba(10,10,18,.3);
  letter-spacing: .005em;
}
.editorial-title.light-title { color: var(--white); }
.editorial-title.light-title .thin { color: rgba(245,243,238,.3); }

/* ── SERVIÇOS — LISTA EDITORIAL ──────────────────────── */
.services-editorial {
  counter-reset: service;
}
.service-editorial-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}
.service-editorial-item:first-child { border-top: 1px solid var(--border-light); }
.service-editorial-item:hover { padding-left: 20px; }
.service-editorial-item:hover { border-bottom-color: rgba(193,157,93,.3); }
.service-editorial-num {
  font-family: 'Syne', sans-serif;
  font-size: .9rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
}
.service-editorial-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--black); letter-spacing: -.02em;
  margin-bottom: 6px;
}
.service-editorial-body p {
  font-size: 14px; color: rgba(10,10,18,.5); line-height: 1.6;
}
.service-editorial-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(10,10,18,.3);
  transition: var(--transition);
  flex-shrink: 0;
}
.service-editorial-item:hover .service-editorial-arrow {
  background: var(--gold); border-color: var(--gold);
  color: var(--black); transform: rotate(45deg);
}

/* Versão dark da lista de serviços */
.service-editorial-item.dark {
  border-bottom-color: rgba(193,157,93,.1);
}
.service-editorial-item.dark:first-child { border-top-color: rgba(193,157,93,.1); }
.service-editorial-item.dark .service-editorial-body h3 { color: var(--white); }
.service-editorial-item.dark .service-editorial-body p { color: var(--muted); }
.service-editorial-item.dark .service-editorial-arrow {
  border-color: rgba(193,157,93,.2);
  color: var(--muted);
}

/* ── CARDS SERVIÇO (detalhes) ─────────────────────────── */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
  background: var(--border-light);
}
.service-card-v2 {
  background: var(--offwhite);
  padding: 56px 44px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.service-card-v2::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card-v2:hover { background: var(--white-pure); }
.service-card-v2:hover::after { transform: scaleX(1); }
.service-card-v2:hover { transform: translateY(-6px); }

.sc-num {
  font-family: 'Syne', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 32px;
}
.service-card-v2 h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem; font-weight: 600; color: var(--black);
  letter-spacing: -.02em; margin-bottom: 16px;
}
.service-card-v2 p {
  font-size: 14px; color: rgba(10,10,18,.55); line-height: 1.75;
  margin-bottom: 28px;
}
.sc-list li {
  font-size: 13px; font-weight: 600; color: rgba(10,10,18,.6);
  padding: 5px 0;
  display: flex; align-items: center; gap: 10px;
}
.sc-list li::before { content: '→'; color: var(--gold); font-size: 12px; }

/* ── DIFERENCIAIS (seção preta com grid editorial) ─────── */
.diff-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(193,157,93,.1);
}
.diff-editorial-img {
  position: relative; overflow: hidden;
  min-height: 600px;
}
.diff-editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(.65);
  transition: transform 8s ease;
}
.diff-editorial:hover .diff-editorial-img img { transform: scale(1.04); }
.diff-editorial-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(3,3,8,0.9) 100%);
}

/* Grids Responsivos para Mobile/Tablet */
.service-editorial-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: flex-start; }
.service-cards-mini { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin-top: 60px; background: rgba(193,157,93,.08); }
.cta-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.cta-stats-grid { display: grid; gap: 2px; background: rgba(10,10,18,.1); }
.diff-editorial-img-badge {
  position: absolute; bottom: 48px; left: 48px;
}
.diff-editorial-img-badge strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.diff-editorial-img-badge span {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(245,243,238,.5);
}
.diff-editorial-content {
  background: var(--black-2);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.diff-list-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(193,157,93,.08);
}
.diff-list-item:last-child { border-bottom: none; }
.diff-list-num {
  font-family: 'Syne', sans-serif;
  font-size: .8rem; font-weight: 700; color: var(--gold);
  letter-spacing: .08em; flex-shrink: 0; margin-top: 4px;
}
.diff-list-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 8px;
}
.diff-list-text p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* ── MVV CARDS (Quem Somos) ───────────────────────────── */
.mvv-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(193,157,93,.08);
  margin-top: 80px;
}
.mvv-block {
  background: var(--black);
  padding: 60px 48px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.mvv-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.mvv-block:hover::before { transform: scaleX(1); }
.mvv-block-icon {
  font-size: 2rem; margin-bottom: 28px;
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(193,157,93,.2);
  display: flex; align-items: center; justify-content: center;
}
.mvv-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.mvv-block p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.mvv-block ul { padding: 0; }
.mvv-block ul li {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  padding: 8px 0;
  border-bottom: 1px solid rgba(193,157,93,.08);
  display: flex; align-items: flex-start; gap: 12px;
}
.mvv-block ul li:last-child { border-bottom: none; }
.mvv-block ul li strong { color: var(--white); font-weight: 600; }
.mvv-block ul li::before { content: '—'; color: var(--gold); font-weight: 600; flex-shrink: 0; }

/* ── INTERNAL HERO ───────────────────────────────────── */
.internal-hero {
  padding: 180px 0 100px;
  background: var(--black);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(193,157,93,.08);
}
.internal-hero::before {
  content: '';
  position: absolute; right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,157,93,.05), transparent 60%);
}
.internal-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted); margin-bottom: 28px;
}
.breadcrumb span { color: var(--gold); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }
.internal-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 500;
  color: var(--white); max-width: 800px;
}
.internal-hero h1 em {
  font-style: normal; font-weight: 100;
  color: rgba(245,243,238,.32);
}

/* ── SERVICE BLOCK (página serviços) ─────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px; padding: 60px 0;
  border-bottom: 1px solid rgba(193,157,93,.1);
  align-items: flex-start;
  transition: var(--transition);
}
.service-block:first-of-type { border-top: 1px solid rgba(193,157,93,.1); }
.service-block:hover { padding-left: 16px; }

.service-block-num {
  font-family: 'Syne', sans-serif;
  font-size: .85rem; font-weight: 700;
  color: var(--gold); letter-spacing: .1em;
  padding-top: 6px;
}
.service-block-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem; font-weight: 600; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 16px;
}
.service-block-content h2.dark { color: var(--black); }
.service-block-content .pain {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin-bottom: 24px; max-width: 720px;
}
.service-block-content .pain.dark-text { color: rgba(10,10,18,.55); }
.service-block-content ul { display: flex; flex-wrap: wrap; gap: 10px; }
.service-block-content ul li {
  font-size: 13px; font-weight: 600;
  color: rgba(245,243,238,.7);
  padding: 7px 16px;
  border: 1px solid rgba(193,157,93,.2);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 8px;
}
.service-block-content ul li.dark { color: rgba(10,10,18,.65); border-color: rgba(10,10,18,.15); }
.service-block-content ul li::before { content: '↗'; color: var(--gold); font-size: 11px; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px; align-items: flex-start;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,243,238,.4); margin-bottom: 10px;
}
.form-control {
  width: 100%; padding: 16px 20px;
  background: rgba(245,243,238,.04);
  border: 1px solid rgba(193,157,93,.15);
  border-radius: var(--radius); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 15px;
  transition: var(--transition);
}
.form-control::placeholder { color: rgba(245,243,238,.2); }
.form-control:focus { outline: none; border-color: var(--gold); background: rgba(193,157,93,.04); }
textarea.form-control { resize: vertical; min-height: 160px; }
select.form-control option { background: var(--black); }

.contact-info-panel {
  position: sticky; top: 120px;
  padding: 56px 48px;
  background: rgba(193,157,93,.05);
  border: 1px solid rgba(193,157,93,.12);
  border-radius: var(--radius);
}
.contact-info-panel h3 {
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  letter-spacing: -.02em; margin-bottom: 8px;
}
.contact-info-panel .sub {
  font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 40px;
}
.info-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(193,157,93,.08);
}
.info-row:last-of-type { border-bottom: none; }
.info-ico {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(193,157,93,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.info-row-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.info-row-val { font-size: 14.5px; color: var(--white); }

.wa-band {
  margin-top: 32px;
  background: var(--gold);
  padding: 24px 28px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px;
}
.wa-band-icon { font-size: 2rem; }
.wa-band p { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--black); margin-bottom: 2px; }
.wa-band a { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--black); }

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  padding: 140px 0;
  background: var(--gold);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; right: -200px; bottom: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 500; color: var(--black);
  letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: 28px;
}
.cta-section h2 em {
  font-style: normal; font-weight: 300;
  color: rgba(10,10,18,.45);
}
.cta-section p {
  font-size: 16px; color: rgba(29,44,27,.6);
  max-width: 480px; line-height: 1.75; margin-bottom: 48px;
}
.btn-cta-dark {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); background: var(--black);
  padding: 20px 40px; border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-cta-dark .ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: transform .35s var(--ease);
}
.btn-cta-dark:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(3,3,8,.25); }
.btn-cta-dark:hover .ico { transform: rotate(45deg); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { 
  background: #050805 url('../images/bg-footer.jpg') no-repeat center bottom / cover; 
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(193,157,93,.07); 
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, #0a0f0a 0%, rgba(10,15,10,.85) 100%);
  z-index: 1;
}
.footer > * { position: relative; z-index: 2; }
.footer-top { padding: 100px 0 70px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 60px; }
.footer-brand img { height: 75px; width: auto; margin-bottom: 24px; filter: brightness(1.1); }
.footer-brand p { font-size: 14px; color: rgba(245,243,238,.45); line-height: 1.8; max-width: 290px; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(245,243,238,.4); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 8px; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
}
.footer-contact-row .ic { color: var(--gold); font-size: 13px; margin-top: 2px; }
.footer-contact-row span { font-size: 13.5px; color: rgba(245,243,238,.4); line-height: 1.5; }

.footer-bottom {
  background: #050805; border-top: 1px solid rgba(255,255,255,.03);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(245,243,238,.2); }

/* ── WA FLOAT ────────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 60px; right: 100px; z-index: 9999;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(193,157,93,.4);
  opacity: 0; visibility: hidden; transform: scale(.5) translateY(20px);
  transition: all .5s cubic-bezier(.175,.885,.32,1.275);
  font-size: 1.6rem;
}
#wa-float.visible { opacity: 1; visibility: visible; transform: scale(1) translateY(0); }
#wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--gold); z-index: -1;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }
#wa-float:hover { transform: scale(1.1) !important; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .about-editorial { grid-template-columns: 1fr; }
  .about-editorial-right { min-height: 480px; }
  .about-editorial-left { padding: 80px 40px; }
  .diff-editorial { grid-template-columns: 1fr; }
  .diff-editorial-img { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .mvv-row { grid-template-columns: 1fr; gap: 24px; }
  .service-editorial-grid { grid-template-columns: 1fr; gap: 60px; }
  .service-editorial-grid > div:first-child { position: relative !important; top: 0 !important; }
}

@media (max-width: 900px) {
  .section-pad { padding: 100px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 60px; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 24px; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .scroll-indicator { display: none; }
  .service-editorial-item { grid-template-columns: 60px 1fr auto; gap: 20px; }
  .service-cards-mini { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero { padding-top: 160px; }
  .hero h1 { font-size: 2.8rem; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 24px; }
  .hero-sub { font-size: 15px; margin-bottom: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-pill { justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .service-editorial-item { grid-template-columns: 1fr auto; padding: 24px 0; }
  .service-editorial-num { display: none; }
  .internal-hero { padding: 140px 0 70px; }
  .side-label { display: none; }
  .cta-section { padding: 90px 0; }
  .diff-editorial-content { padding: 60px 32px; }
  #wa-float { width: 56px; height: 56px; right: 20px; bottom: 20px; }
}

/* ── WORDPRESS COMPATIBILITY FIXES ────────────────────────────────────
   Corrige interferências do WordPress: Admin Bar, body_class, margins.
   ──────────────────────────────────────────────────────────────────── */

/* Remove margem do admin bar para não quebrar o hero full-height */
html body.admin-bar { margin-top: 0 !important; }
html body.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  html body.admin-bar .navbar { top: 46px; }
}

/* Garante que o body sempre seja full-width e sem overflow lateral */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Remove padding/margin padrão do WordPress no body */
body.page,
body.home,
body.blog,
body.single,
body.archive {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove styles do editor do WordPress que podem vazar para o front-end */
.wp-block-template-part,
.wp-site-blocks,
.wp-block-group,
.entry-content > *:not(.alignfull):not(.alignwide) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Garante que links e parágrafos dentro do conteúdo do WP não herdem cores erradas */
.entry-content a { color: var(--gold); }
.entry-content p { color: rgba(10,10,18,0.6); line-height: 1.8; margin-bottom: 1.2em; }

/* Fix: WordPress injeta <p> em torno de imagens, limpar */
.wp-caption { max-width: 100%; }

/* Fix: Garante que o hero sempre ocupe 100vw mesmo dentro do WP */
.hero,
.marquee-strip,
.section-light,
.cta-section,
.footer {
  width: 100%;
  max-width: 100vw;
  position: relative;
  left: 0;
  right: 0;
}
