/* ══════════════════════════════════════════════════
   VINICIUS RIBEIRO — ADVOCACIA CRIMINAL
   Design: Dark luxury · Gold accents · Editorial
   ══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --gold-dark:   #9A7B2E;
  --black:       #080808;
  --dark:        #0F0F0F;
  --dark-2:      #161616;
  --dark-3:      #1E1E1E;
  --gray:        #2C2C2C;
  --gray-mid:    #555;
  --gray-text:   #999;
  --white:       #F5F0E8;
  --white-dim:   rgba(245,240,232,.08);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.76,0,.24,1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ── SELEÇÃO ── */
::selection { background: var(--gold); color: var(--black); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ══════════════════════════════════════════════════
   CURSOR PERSONALIZADO
══════════════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,.5);
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              border-color .3s, opacity .3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--gold);
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ══════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: var(--r-sm);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.95); }
}

.loader-bar {
  width: 180px;
  height: 1px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.loader-bar span {
  position: absolute;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderBar 1.4s ease-in-out infinite;
}
@keyframes loaderBar {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ══════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ══════════════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,.25);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(201,168,76,.4); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,240,232,.2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 18px 40px; font-size: .9rem; }

/* ══════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-size: .95rem;
  color: var(--gray-text);
  max-width: 520px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }
.italic { font-style: italic; }

/* ══════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.header.scrolled {
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(201,168,76,.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: var(--r-sm);
  transition: transform .3s;
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.7);
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-link--cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: background .3s, transform .3s;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 100px 40px 40px;
    transition: right .4s var(--ease-out);
    border-left: 1px solid rgba(201,168,76,.12);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-link--cta { margin-top: 24px; text-align: center; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 30%, rgba(201,168,76,.04) 0%, transparent 60%);
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 38%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.15), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 28px;
}
.hero-name {
  display: block;
  background: linear-gradient(135deg, var(--white) 0%, rgba(245,240,232,.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-name.italic {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(245,240,232,.6);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 44px;
}
.hero-subtitle em { color: var(--gold); font-style: italic; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero image */
.hero-image { position: relative; }

.hero-image-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.18),
    0 0 0 4px rgba(201,168,76,.04),
    0 40px 100px rgba(0,0,0,.75);
}
.hero-image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.06) brightness(.92) saturate(.9);
  transition: transform 8s ease, filter .6s;
  display: block;
}
.hero-image-frame:hover img {
  transform: scale(1.02);
  filter: contrast(1.08) brightness(.96) saturate(1);
}

.hero-image-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,8,8,.55) 0%, transparent 28%),
    linear-gradient(270deg, rgba(8,8,8,.25) 0%, transparent 20%),
    linear-gradient(180deg, rgba(8,8,8,.3) 0%, transparent 22%, transparent 55%, rgba(8,8,8,.6) 100%);
  border-radius: inherit;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--r-md);
  padding: 18px 24px;
  box-shadow: 0 8px 32px rgba(201,168,76,.3);
  animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.hero-badge-txt {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4;
}
.hero-scroll-indicator span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-image-frame img { height: 420px; }
  .hero-badge { left: 10px; bottom: -16px; }
  .hero-lines::before { display: none; }
}

/* ══════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════ */
.stats {
  padding: 60px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.08);
}

.stat-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--dark-2);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .6s var(--ease-out);
}
.stat-item.visible::before { width: 40px; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
}
.stat-item p {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════ */
.sobre {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}
.sobre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual { position: relative; }

.sobre-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sobre-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(1.05);
  transition: filter .6s;
}
.sobre-img-wrap:hover img { filter: grayscale(0%) contrast(1.08); }

.sobre-img-border {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: calc(var(--r-lg) + 8px);
  pointer-events: none;
}
.sobre-img-border::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  right: 8px; bottom: 8px;
  border: 1px solid rgba(201,168,76,.08);
  border-radius: var(--r-lg);
}

.sobre-oab {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-md);
  padding: 20px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.sobre-oab-inner { text-align: center; }
.sobre-oab-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.sobre-oab-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
}

.sobre-text { }

.sobre-bio p {
  color: rgba(245,240,232,.7);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: .95rem;
}

.sobre-valores {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,240,232,.06);
}

.valor-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.valor-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.12);
  transition: background .3s, border-color .3s;
  color: var(--gold);
}
.valor-icon svg { width: 22px; height: 22px; }
.valor-item:hover .valor-icon {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}

/* Sobre — credentials card (replaces duplicate photo) */
.sobre-credentials-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.sobre-credentials-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.sobre-cred-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.sobre-cred-monogram {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: .05em;
}
.sobre-cred-name {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.sobre-cred-title {
  display: block;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.sobre-cred-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,.3), transparent);
  margin-bottom: 24px;
}
.sobre-cred-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sobre-cred-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-sm);
  transition: border-color .3s, background .3s;
}
.sobre-cred-item:hover {
  border-color: rgba(201,168,76,.2);
  background: rgba(201,168,76,.04);
}
.sobre-cred-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.sobre-cred-label {
  display: block;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 2px;
}
.sobre-cred-value {
  display: block;
  font-size: .88rem;
  color: var(--white);
  font-weight: 400;
}
.valor-item div strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--white);
}
.valor-item div span {
  font-size: .8rem;
  color: var(--gray-text);
}

@media (max-width: 860px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-wrap img { height: 400px; }
  .sobre-oab { right: 16px; bottom: 16px; }
}

/* ══════════════════════════════════════════════════
   ATUAÇÃO
══════════════════════════════════════════════════ */
.atuacao {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.atuacao::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--dark-2);
  border: 1px solid rgba(245,240,232,.06);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
  cursor: default;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.area-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s var(--ease-out);
}
.area-card:hover {
  border-color: rgba(201,168,76,.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.area-card:hover::before { opacity: 1; }
.area-card:hover::after { transform: scaleX(1); }

.area-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--r-sm);
  color: var(--gold);
  flex-shrink: 0;
}
.area-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.area-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--white);
  transition: color .3s;
}
.area-card:hover h3 { color: var(--gold-light); }
.area-card p {
  font-size: .85rem;
  color: var(--gray-text);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   MÍDIA / VÍDEOS
══════════════════════════════════════════════════ */
.midia {
  padding: 120px 0;
  background: var(--black);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(245,240,232,.06);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.video-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--dark-3);
}
.yt-thumb-link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
}
.yt-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out), filter .4s;
  filter: brightness(.85);
}
.yt-thumb-link:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}
.yt-play-btn svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.5));
  transition: transform .3s var(--ease-out);
}
.yt-thumb-link:hover .yt-play-btn svg {
  transform: scale(1.12);
}

.video-info {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-tag {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.video-info p {
  font-size: .88rem;
  color: rgba(245,240,232,.6);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .videos-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,168,76,.08) 0%, rgba(154,123,46,.04) 50%, transparent 100%),
    var(--dark-2);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 40px;
}

/* ══════════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════════ */
.contato {
  padding: 120px 0;
  background: var(--dark);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--dark-2);
  border: 1px solid rgba(245,240,232,.06);
  border-radius: var(--r-md);
  transition: border-color .3s, background .3s, transform .3s var(--ease-out);
  cursor: pointer;
}
.contato-item:hover {
  border-color: rgba(201,168,76,.2);
  background: rgba(201,168,76,.04);
  transform: translateX(4px);
}

.contato-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(201,168,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.2);
  transition: background .3s;
}
.contato-icon svg { width: 20px; height: 20px; }
.contato-item:hover .contato-icon { background: rgba(201,168,76,.18); }

.contato-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 2px;
}
.contato-value {
  display: block;
  font-size: .9rem;
  color: var(--white);
  font-weight: 400;
}

.contato-mapa {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.contato-mapa iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

@media (max-width: 860px) {
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: var(--black); }

.footer-top {
  padding: 80px 0 60px;
  border-top: 1px solid rgba(201,168,76,.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: var(--r-sm);
  margin-bottom: 16px;
}
.footer-brand p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(245,240,232,.6);
}
.footer-brand p em { color: var(--gold); font-style: italic; }

.footer-nav h4, .footer-areas h4, .footer-social h4 {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-nav ul, .footer-areas ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav li a, .footer-areas li {
  font-size: .85rem;
  color: var(--gray-text);
  transition: color .3s;
}
.footer-nav li a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--gray-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .3s;
}
.social-link:last-child { border-bottom: none; }
.social-link:hover { color: var(--gold); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: .75rem;
  color: var(--gray-mid);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  left: auto;
  top: auto;
  z-index: 9900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  overflow: visible;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: 0;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 480px) {
  .whatsapp-float { bottom: 20px; right: 20px; left: auto; width: 52px; height: 52px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVIDADE GERAL
══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; }
  .btn { padding: 12px 22px; font-size: .78rem; }
  .sobre, .atuacao, .midia, .contato { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
}

/* ══════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════ */
@media print {
  .header, .whatsapp-float, .loader, .cursor-dot, .cursor-ring { display: none; }
  body { background: white; color: black; }
}