/* ═══════════════════════════════════════════
   HUGO MARANGONI — ADVOGADO
   Design: Deep navy / warm ivory / rich wine (bordô)
   Typefaces: Cormorant Garamond (display) + Inter (body)
═══════════════════════════════════════════ */

:root {
  --navy: #0d1b2a;
  --navy-light: #152233;
  --navy-mid: #1a2d45;
  --ivory: #f5f0e8;
  --ivory-warm: #ede7d8;
  --wine: #cf6478;
  --wine-light: #e8a0af;
  --wine-pale: #f3d6dc;
  --wine-deep: #7a2836;
  --white: #ffffff;
  --text-dark: #0d1b2a;
  --text-mid: #3a4a5c;
  --text-light: #8a9ab0;
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

/* ── Custom cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--wine);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.3s, height 0.3s;
}
.cursor.hovered { transform: translate(-50%, -50%) scale(0.3); opacity: 0.5; }
.cursor-follower.hovered { width: 56px; height: 56px; border-color: var(--wine); }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--wine);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s var(--ease) forwards;
}
.loader-bar {
  width: 160px; height: 1px;
  background: rgba(207,100,120,0.2);
  margin: 0 auto;
  overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%;
  background: var(--wine);
  animation: loadBar 1.8s var(--ease) 0.4s forwards;
  width: 0;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(12px); }
}
@keyframes loadBar { to { width: 100%; } }

/* ── Container ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */
.section-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--wine-light);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 3rem;
}
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto 3rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: none;
  border: none;
}
.btn-gold {
  background: var(--wine-deep);
  color: var(--ivory);
}
.btn-gold:hover {
  background: var(--wine);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(207,100,120,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,240,232,0.3);
}
.btn-ghost:hover {
  border-color: var(--wine);
  color: var(--wine);
}
.full-width { width: 100%; justify-content: center; }

/* ══════════ HEADER ══════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  padding: 1.5rem 0;
}
#header.scrolled {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(207,100,120,0.15);
}
.nav {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  cursor: none;
}
.logo-initials {
  width: 40px; height: 40px;
  border: 1px solid var(--wine);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--wine);
  letter-spacing: 0.05em;
  transition: background 0.3s;
}
.nav-logo:hover .logo-initials { background: rgba(207,100,120,0.1); }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.75);
  transition: color 0.2s;
  cursor: none;
}
.nav-links a:hover { color: var(--wine); }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--wine) !important;
  color: var(--wine) !important;
  padding: 0.5rem 1.2rem !important;
  letter-spacing: 0.1em;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--wine-deep) !important; color: var(--ivory) !important; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1px;
  background: var(--ivory); transition: 0.3s;
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--wine); }

/* ══════════ HERO ══════════ */
#hero {
  position: relative;
  height: 100dvh; min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.55) saturate(0.85);
}
.hero-poster {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  filter: brightness(0.55) saturate(0.85);
}
/* Efeito Ken Burns: zoom lento e contínuo, substitui a necessidade de vídeo */
.hero-kenburns {
  animation: heroKenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenburns {
  0%   { transform: scale(1) translate3d(0,0,0); }
  100% { transform: scale(1.14) translate3d(-1.5%,-2.5%,0); }
}
/* Textura de grão sutil sobre o hero — reforça o clima cinematográfico sem pesar no carregamento */
.hero-grain {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  .hero-kenburns { animation: none; }
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.2) 0%,
    rgba(13,27,42,0) 40%,
    rgba(13,27,42,0.6) 70%,
    rgba(13,27,42,1) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2rem 5rem;
  max-width: 700px;
  margin: 0 auto 0 calc((100vw - 1240px)/2 + 2rem);
}
@media(max-width:1280px){ .hero-content { margin-left: 2rem; } }

.hero-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1rem;
  opacity: 0;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-title em {
  font-style: italic;
  color: var(--wine-light);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.7);
  margin-bottom: 2.5rem;
  opacity: 0;
  max-width: 480px;
}
.hero-sub em {
  font-style: normal;
  font-weight: 600;
  color: var(--wine-light);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; right: 3rem;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,240,232,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(207,100,120,0.7), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

.hero-badge {
  position: absolute; bottom: 3rem; right: 3rem;
  z-index: 2;
  width: 100px; height: 100px;
  animation: spin 20s linear infinite, fadeIn 1s 2.8s backwards;
}
.hero-badge svg {
  width: 100%; height: 100%;
}
.hero-badge text {
  font-size: 9px;
  fill: var(--wine-light);
  font-family: 'Inter', sans-serif;
  letter-spacing: 3px;
}
.badge-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--wine-light);
  animation: spin 20s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ══════════ SOBRE ══════════ */
.section-sobre {
  position: relative;
  padding: 8rem 0;
  background: var(--navy);
  overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -30%;
  background: radial-gradient(ellipse at 20% 50%, rgba(207,100,120,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.sobre-img-frame {
  position: relative;
}
.sobre-img-frame img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.img-accent-line {
  position: absolute; top: 2rem; left: -1.5rem;
  width: 3px; height: calc(100% - 4rem);
  background: linear-gradient(to bottom, var(--wine), transparent);
}
.sobre-stat-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--wine-deep);
  padding: 1.5rem 2rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
}
.sobre-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.7);
  margin-bottom: 1.25rem;
}
.sobre-body strong { color: var(--ivory); }
.sobre-credentials { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.credential {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
}
.cred-icon { font-size: 1.1rem; }

/* ══════════ ESCRITÓRIO ══════════ */
.section-escritorio {
  padding: 8rem 0;
  background: var(--navy);
}
.escritorio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1rem 0 3rem;
}
.escritorio-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207,100,120,0.15);
}
.escritorio-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.escritorio-photo:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.05);
}
.escritorio-note {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.7);
}
.escritorio-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ══════════ PÁGINAS INTERNAS (cabeçalho) ══════════ */
.page-hero {
  padding: 12rem 0 4rem;
  background: var(--navy);
  text-align: center;
}
.page-hero .section-title { margin: 0 auto 1rem; }
.page-hero .section-subtitle { margin: 0 auto; }
.breadcrumb-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(207,100,120,0.4);
  transition: color 0.2s;
}
.breadcrumb-link:hover { color: var(--wine-light); }
.nav-links a.active { color: var(--wine); }

/* ══════════ PÁGINA DE ÁREA (detalhe) ══════════ */
.area-intro-grid {
  margin-bottom: 5rem;
}
.area-intro-photo img {
  aspect-ratio: 4/3;
  object-position: center;
}
.area-intro-icon {
  display: inline-flex;
  width: 40px; height: 40px;
  color: var(--wine);
  margin-bottom: 1.25rem;
}
.area-intro-icon svg { width: 100%; height: 100%; }
.area-scenarios {
  max-width: 640px;
  margin: 2rem auto 0;
}
.related-areas {
  text-align: center;
  padding-top: 3rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(207,100,120,0.1);
}
.related-areas p {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.25rem;
}
.related-areas .footer-links { justify-content: center; }

/* ══════════ AREAS ══════════ */
.section-areas {
  padding: 8rem 0;
  background: var(--navy-light);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(207,100,120,0.1);
}
.area-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  opacity: 0;
}
.area-card:hover { background: var(--navy-mid); }
.area-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--wine), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card-media {
  margin: -2.5rem -2rem 1.5rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.area-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) contrast(1.05) brightness(0.85);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.area-card:hover .area-card-media img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.05) brightness(0.95);
}
.area-card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0) 35%, var(--navy) 100%);
}
#areas .area-card-media::after {
  background: linear-gradient(to bottom, rgba(245,240,232,0) 35%, var(--white) 100%);
}
.area-icon {
  width: 48px; height: 48px;
  color: var(--wine);
  margin-bottom: 1.5rem;
}
.area-icon svg { width: 100%; height: 100%; }
.area-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.area-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.area-line {
  position: absolute; top: 0; right: 0;
  width: 1px; height: 100%;
  background: rgba(207,100,120,0.1);
}
.area-link {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  cursor: none;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.area-link span { display: inline-block; transition: transform 0.25s var(--ease); }
.area-link:hover { gap: 0.7rem; color: var(--wine-light); }
.area-link:hover span { transform: translateX(3px); }
#areas .area-link { color: var(--wine-deep); }
#areas .area-link:hover { color: var(--navy); }

/* ══════════ DIFERENCIAIS ══════════ */
.section-diferenciais {
  position: relative;
  padding: 8rem 0;
  background: var(--navy-mid);
  overflow: hidden;
}
.parallax-dark {
  position: absolute; inset: -30%;
  background: radial-gradient(ellipse at 80% 50%, rgba(207,100,120,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.nums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(207,100,120,0.15);
}
.num-item {
  text-align: center;
  opacity: 0;
}
.num-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--wine-light);
  line-height: 1;
}
.num-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--wine);
  vertical-align: super;
}
.num-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}
.diferenciais-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.dif-card { opacity: 0; }
.dif-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(207,100,120,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.dif-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.dif-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ══════════ QUOTE ══════════ */
.section-quote {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.quote-parallax-bg {
  position: absolute; inset: -50%;
  background: 
    linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  pointer-events: none;
}
.quote-parallax-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(207,100,120,0.08) 0%, transparent 60%);
}
.big-quote {
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ivory);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  opacity: 0;
}
.quote-mark {
  display: block;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--wine);
  margin-bottom: 1rem;
  font-style: normal;
  opacity: 0.4;
}
.quote-author {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 2rem;
}

/* ══════════ DEPOIMENTOS ══════════ */
.section-depoimentos {
  padding: 8rem 0;
  background: var(--navy-light);
  overflow: hidden;
}
.testimonials-track {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.testimonials-inner {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s var(--ease);
}
.testimonial-card {
  width: calc(33.333% - 1rem);
  flex-shrink: 0;
  background: var(--navy);
  border: 1px solid rgba(207,100,120,0.1);
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--wine);
  opacity: 0.15;
  position: absolute; top: 1rem; right: 1.5rem;
}
.test-stars {
  font-size: 0.9rem;
  color: var(--wine);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.75);
  margin-bottom: 2rem;
  font-style: italic;
}
.test-author {
  display: flex; align-items: center; gap: 1rem;
}
.test-avatar {
  width: 44px; height: 44px;
  background: var(--wine-deep);
  color: var(--ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.test-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ivory);
}
.test-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}
.testimonials-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2.5rem;
}
.testimonials-nav button {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(207,100,120,0.3);
  color: var(--wine);
  font-size: 1.1rem;
  cursor: none;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.testimonials-nav button:hover {
  background: var(--wine-deep);
  color: var(--ivory);
}
.testimonials-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(207,100,120,0.3);
  transition: background 0.3s, transform 0.3s;
  cursor: none;
}
.dot.active { background: var(--wine); transform: scale(1.4); }

/* ══════════ SEÇÕES CLARAS (creme) — respiro visual ══════════
   Áreas de Atuação e Depoimentos ganham fundo creme/branco,
   como as fotos de referência, para quebrar o breu contínuo. */
#areas, #depoimentos {
  background: var(--ivory);
}
#areas .section-eyebrow,
#depoimentos .section-eyebrow { color: var(--wine-deep); }
#areas .section-title,
#depoimentos .section-title { color: var(--navy); }
#areas .section-title em,
#depoimentos .section-title em { color: var(--wine-deep); }
#areas .section-subtitle,
#depoimentos .section-subtitle { color: var(--text-mid); }

#areas .areas-grid { background: rgba(122,40,54,0.12); }
#areas .area-card {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(13,27,42,0.06);
}
#areas .area-card:hover { background: var(--ivory-warm); }
#areas .area-card::before { background: linear-gradient(to right, var(--wine-deep), transparent); }
#areas .area-icon { color: var(--wine-deep); }
#areas .area-card h3 { color: var(--navy); }
#areas .area-card p { color: var(--text-mid); }
#areas .area-line { background: rgba(122,40,54,0.12); }

#depoimentos .testimonial-card {
  background: var(--white);
  border-color: rgba(122,40,54,0.14);
  box-shadow: 0 1px 3px rgba(13,27,42,0.06);
}
#depoimentos .testimonial-card::before { color: var(--wine-deep); }
#depoimentos .test-stars { color: var(--wine-deep); }
#depoimentos .testimonial-card p { color: var(--text-mid); }
#depoimentos .test-author strong { color: var(--navy); }
#depoimentos .test-author span { color: var(--text-mid); }
#depoimentos .testimonials-nav button {
  border-color: rgba(122,40,54,0.3);
  color: var(--wine-deep);
}
#depoimentos .dot { background: rgba(122,40,54,0.25); }
#depoimentos .dot.active { background: var(--wine-deep); }

/* ══════════ BADGE AVALIAÇÃO GOOGLE ══════════ */
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 0.9rem;
  margin: 0 auto 3rem;
  padding: 0.9rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(122,40,54,0.14);
  box-shadow: 0 1px 3px rgba(13,27,42,0.06);
  text-decoration: none;
  cursor: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.google-rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(13,27,42,0.1);
}
.grb-stars { color: var(--wine-deep); font-size: 0.95rem; letter-spacing: 0.1em; }
.grb-text { font-size: 0.85rem; color: var(--text-mid); white-space: nowrap; }
.grb-text strong { color: var(--navy); }
.grb-link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--wine-deep);
  white-space: nowrap;
}
.section-header.center .google-rating-badge { display: inline-flex; }
@media (max-width: 480px) {
  .google-rating-badge { flex-wrap: wrap; justify-content: center; text-align: center; }
}

/* ══════════ BLOG ══════════ */
.section-blog-list {
  padding: 6rem 0 8rem;
  background: var(--navy);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--navy-light);
  border: 1px solid rgba(207,100,120,0.12);
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(207,100,120,0.4); }
.blog-card-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--wine);
  padding: 1.5rem 1.75rem 0;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--ivory);
  padding: 0.6rem 1.75rem 0;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.88rem; line-height: 1.7;
  color: var(--text-light);
  padding: 0.75rem 1.75rem 1.75rem;
}
.blog-card .area-link { padding: 0 1.75rem 1.75rem; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--ivory);
  margin: 2.5rem 0 1rem;
}
.article-body h2 em { font-style: italic; color: var(--wine-light); }
.article-body p {
  font-size: 1rem; line-height: 1.85;
  color: rgba(245,240,232,0.75);
  margin-bottom: 1.25rem;
}
.article-body ol, .article-body ul {
  margin: 0 0 1.5rem 1.25rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.85;
}
.article-body li { margin-bottom: 0.6rem; }
.article-body li strong { color: var(--ivory); }
.article-disclaimer {
  margin-top: 3rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy-light);
  border-left: 2px solid var(--wine);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}
.article-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ══════════ FAQ ══════════ */
.section-faq {
  padding: 8rem 0;
  background: var(--navy);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--navy-light);
  border: 1px solid rgba(207,100,120,0.12);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 1.75rem;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 1.75rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--wine);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--wine-light); }
.faq-item p {
  padding: 0 3rem 1.5rem 1.75rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .faq-item summary { padding: 1.25rem 2.5rem 1.25rem 1.25rem; font-size: 1.05rem; }
  .faq-item p { padding: 0 2.5rem 1.25rem 1.25rem; }
}

/* ══════════ CONTATO ══════════ */
.section-contato {
  padding: 8rem 0;
  background: var(--navy);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contato-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.contato-infos { display: flex; flex-direction: column; gap: 1.25rem; }
.contato-map {
  border: 1px solid rgba(207,100,120,0.15);
  filter: grayscale(35%) contrast(1.05);
  transition: filter 0.4s;
  overflow: hidden;
}
.contato-map:hover { filter: grayscale(0%) contrast(1.05); }
.contato-map iframe { display: block; }
.contato-info {
  display: flex; align-items: flex-start; gap: 1rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.contato-info:hover { transform: translateX(4px); }
.ci-icon { font-size: 1.2rem; margin-top: 2px; }
.contato-info strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.2rem;
}
.contato-info span {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contato-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(207,100,120,0.15);
  color: var(--ivory);
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(207,100,120,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group option { background: var(--navy); }

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(207,100,120,0.1);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(207,100,120,0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 1rem;
}
.footer-logo .logo-initials {
  width: 44px; height: 44px;
  border: 1px solid rgba(207,100,120,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--wine);
}
.footer-logo strong {
  display: block;
  font-size: 1rem;
  color: var(--ivory);
}
.footer-logo span {
  font-size: 0.75rem;
  color: var(--text-light);
}
.footer-links {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--wine); }
.footer-social {
  display: flex; gap: 1rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(207,100,120,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--wine);
  color: var(--wine);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(138,154,176,0.6);
}

/* ══════════ REVEAL ANIMATIONS ══════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-side {
  opacity: 0;
  transform: translateX(-30px);
}
.reveal-up.visible,
.reveal-side.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

/* ══════════ FALLBACK SEM GSAP ══════════
   Se o CDN do GSAP não carregar, js/main.js adiciona esta classe na <html>
   e libera tudo que dependeria da animação — evita conteúdo invisível. */
html.no-gsap .reveal-up,
html.no-gsap .reveal-side,
html.no-gsap .area-card,
html.no-gsap .num-item,
html.no-gsap .dif-card,
html.no-gsap .hero-eyebrow,
html.no-gsap .hero-title,
html.no-gsap .hero-sub,
html.no-gsap .hero-actions,
html.no-gsap .hero-scroll-hint,
html.no-gsap .big-quote {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════ SCROLLBAR ══════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--wine); border-radius: 2px; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .sobre-grid { gap: 3rem; }
  .escritorio-gallery { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .nums-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .diferenciais-cards { grid-template-columns: 1fr; gap: 2rem; }
  .contato-grid { gap: 3rem; }
  .testimonial-card { width: calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-img-col { order: -1; }
  .sobre-img-frame img { aspect-ratio: 4/3; }
  .escritorio-gallery { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .nums-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .contato-grid { grid-template-columns: 1fr; }
  .testimonial-card { width: 85%; }
  .hero-badge { display: none; }
  .hero-scroll-hint { right: 1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════ MODAL WHATSAPP ══════════ */
.wa-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeInOverlay 0.3s ease;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

.wa-modal {
  background: var(--navy-light);
  border: 1px solid rgba(207,100,120,0.2);
  padding: 2.5rem;
  max-width: 520px; width: 100%;
  position: relative;
  animation: slideUpModal 0.4s var(--ease);
}
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--text-light); font-size: 1rem;
  cursor: pointer; padding: 0.4rem;
  transition: color 0.2s;
}
.wa-modal-close:hover { color: var(--wine); }
.wa-modal-icon { font-size: 2rem; margin-bottom: 1rem; }
.wa-modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.wa-modal p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.wa-options { display: flex; flex-direction: column; gap: 0.75rem; }
.wa-option {
  display: flex; align-items: center; gap: 1rem;
  background: var(--navy);
  border: 1px solid rgba(207,100,120,0.1);
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}
.wa-option:hover {
  border-color: var(--wine);
  background: rgba(207,100,120,0.06);
  transform: translateX(4px);
}
.wa-opt-icon { font-size: 1.5rem; flex-shrink: 0; }
.wa-option strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}
.wa-option span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.4;
}

/* WhatsApp trigger style */
.wa-trigger { cursor: pointer; }
.wa-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--wine-deep);
  padding: 0.25rem 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Form hint */
.form-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}
