/* =============================================================
   DESIGN SYSTEM — Rafael Ferreira Advogados
   Paleta old money: navy profundo, branco puro, dourado fosco
   ============================================================= */
:root {
  --navy: #0A122A;
  --navy-2: #0E1A36;
  --navy-3: #142447;
  --white: #FFFFFF;
  --bone: #F7F5F0;          /* off-white sutil para seções claras */
  --gold: #C9A86A;          /* dourado old money fosco */
  --gold-soft: #B89255;
  --gold-glow: rgba(201, 168, 106, 0.25);
  --text: #16213E;
  --text-soft: #5A6378;
  --line: rgba(10, 18, 42, 0.10);
  --line-on-dark: rgba(255, 255, 255, 0.12);

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 4px;
  --radius-lg: 14px;
  --shadow-md: 0 10px 30px -10px rgba(10, 18, 42, 0.18);
  --shadow-xl: 0 30px 60px -20px rgba(10, 18, 42, 0.35);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================ RESET ================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ================ TIPOGRAFIA ================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }
em { color: var(--gold); font-style: italic; font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.lead {
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 60ch;
}

/* ================ LAYOUT ================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section__header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section__title { margin-bottom: 0.9rem; }
.section__subtitle { color: var(--text-soft); font-size: 1rem; }
.section__header .eyebrow { display: block; }

/* ================ BOTÕES ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn--gold::before {
  /* Brilho sutil deslizante */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px var(--gold-glow);
}
.btn--gold:hover::before { transform: translateX(120%); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--small { padding: 0.7rem 1.2rem; font-size: 0.75rem; }
.btn--block { width: 100%; }

/* ================ HEADER ================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: linear-gradient(180deg, rgba(10,18,42,0.45) 0%, rgba(10,18,42,0) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.header.is-scrolled {
  background: rgba(10, 18, 42, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  padding: 0.85rem 0;
  border-bottom-color: rgba(198, 162, 99, 0.18);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

/* Logo — nova identidade Rafael Ferreira Advogados */
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  line-height: 0;
  margin-left: -0.75rem;
}
@media (max-width: 900px) {
  .logo { margin-left: -0.4rem; }
}
@media (max-width: 480px) {
  .logo { margin-left: -0.25rem; }
}
.logo__img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.35));
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease), opacity 0.4s var(--ease);
}
.logo:hover .logo__img { transform: translateY(-1px); opacity: 0.92; }
.header--scrolled .logo__img { height: 44px; }
.logo__img--footer {
  height: 130px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.9);
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .logo__img { height: 44px; max-width: 200px; }
  .header--scrolled .logo__img { height: 40px; }
}
@media (max-width: 480px) {
  .logo__img { height: 38px; max-width: 170px; }
}

/* Nav */
.nav__list {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__link--cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: linear-gradient(135deg, #fdc66c 0%, #c9a86a 55%, #8a6a3a 100%);
  border: 1px solid rgba(201,168,106,0.9);
  box-shadow: 0 8px 22px -10px rgba(201,168,106,0.55), inset 0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  color: var(--navy);
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px -10px rgba(201,168,106,0.7);
}

/* Instagram no header — mesmo padrão premium */
.nav__social-item { display: flex; align-items: center; margin-left: 0.5rem; }
.nav__instagram {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(201,168,106,0.6);
  background: rgba(10,18,42,0.35);
  box-shadow: 0 6px 18px -10px rgba(201,168,106,0.4);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.nav__instagram svg { width: 18px; height: 18px; }
.nav__instagram:hover {
  background: linear-gradient(135deg, #fdc66c 0%, #c9a86a 55%, #8a6a3a 100%);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(201,168,106,0.7);
}

/* Hambúrguer */
.hamburger {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  position: absolute; left: 0; right: 0;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.4s var(--ease);
}
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 4px; }
.hamburger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); background: var(--gold); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); background: var(--gold); }

/* ================ HERO (Vídeo + Overlay sofisticado) ================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 9rem 0 5rem;
  background: var(--navy);
}

/* Retrato institucional (substitui o vídeo) */
.hero__portrait {
  position: absolute;
  inset: 0 0 0 auto;
  height: 100%;
  width: auto;
  max-width: 62%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  filter: saturate(98%) contrast(104%) brightness(0.98);
  pointer-events: none;
  animation: heroPortraitDrift 18s ease-in-out infinite alternate;
}
@keyframes heroPortraitDrift {
  from { transform: translateY(0) scale(1.00); }
  to   { transform: translateY(-0.8%) scale(1.02); }
}

/* Overlays empilhadas — navy base + fade horizontal + vignette */
.hero__overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__overlay--navy {
  background: linear-gradient(180deg, rgba(10,18,42,0.35) 0%, rgba(10,18,42,0.20) 60%, rgba(10,18,42,0.45) 100%);
}
.hero__overlay--fade {
  background: linear-gradient(90deg,
    rgba(10,18,42,0.96) 0%,
    rgba(10,18,42,0.88) 28%,
    rgba(10,18,42,0.55) 48%,
    rgba(10,18,42,0.15) 65%,
    rgba(10,18,42,0.00) 82%);
}
.hero__overlay--vignette {
  background:
    radial-gradient(ellipse at 75% 45%, rgba(198,162,99,0.10), transparent 55%),
    radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.42) 100%),
    linear-gradient(to bottom, transparent 72%, rgba(10,18,42,0.55) 100%);
}

/* Conteúdo alinhado à esquerda, largura controlada */
.hero__content {
  position: relative; z-index: 2;
  max-width: 760px;
  margin-left: 0; /* alinhamento à esquerda dentro do container */
  text-align: left;
}

.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.8rem;
  font-weight: 500;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 0 2.8rem;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4.5rem; }

.hero__meta {
  display: flex;
  gap: 3.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero__meta span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.6rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Entrada elegante dos elementos do hero */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: heroIn 1.1s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Pulso sutil no CTA principal */
.btn--pulse {
  position: relative;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,162,99,0.55); }
  50%      { box-shadow: 0 0 0 14px rgba(198,162,99,0); }
}
.btn--pulse:hover { animation-play-state: paused; transform: translateY(-2px); }

/* ================ SOBRE ================ */
.sobre { background: var(--bone); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.sobre__media { position: relative; }
.sobre__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: var(--shadow-xl);
  position: relative; z-index: 2;
}
.sobre__media-frame {
  position: absolute;
  inset: 25px -25px -25px 25px;
  border: 1px solid var(--gold);
  z-index: 1;
}
.pillars { margin-top: 2.5rem; display: grid; gap: 1.8rem; }
.pillar { padding-left: 1.2rem; border-left: 1px solid var(--gold); }
.pillar h3 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.pillar p { color: var(--text-soft); margin: 0; font-size: 0.97rem; }

/* ================ EQUIPE ================ */
.equipe { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 28px 56px -22px rgba(10,18,42,0.25);
}
.team-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone);
  position: relative;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.04) saturate(1.02);
  transition: transform 0.8s var(--ease-out), filter 0.5s var(--ease);
}
.team-card--featured .team-card__photo img {
  object-position: center 12%;
  filter: contrast(1.06) saturate(1.05);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }

/* Sócio Fundador em destaque */
.team-card--featured {
  border-color: var(--gold);
  box-shadow: 0 18px 40px -22px rgba(10,18,42,0.28);
  position: relative;
}
.team-card--featured::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(196, 162, 92, 0.45);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
.team-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(196,162,92,0.55);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(10,18,42,0.78);
  backdrop-filter: blur(6px);
  z-index: 3;
}
.team-card__body {
  padding: 2rem 1.9rem 1.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.team-card__body h3 {
  font-size: 1.45rem;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.team-card__role {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
  font-weight: 600;
}
.team-card__oab {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  letter-spacing: 0.02em;
}

/* (Instagram nos cards de equipe removido por solicitação — manter footer apenas) */



/* ================ ÁREAS — Carrossel Premium ================ */
.areas {
  background:
    radial-gradient(circle at 20% 0%, rgba(201,168,106,0.08), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(201,168,106,0.05), transparent 50%),
    var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.areas::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.areas .container { position: relative; z-index: 1; }
.areas .eyebrow { color: var(--gold); }
.areas .section__title { color: var(--white); }
.areas .section__subtitle { color: rgba(255,255,255,0.65); }

.areas-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 1.5rem;
}

.areas-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.areas-carousel__track {
  display: flex;
  transition: transform 0.8s var(--ease-out);
  will-change: transform;
}
.area-slide {
  flex: 0 0 100%;
  padding: 0.5rem;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.area-slide:not(.is-active) { opacity: 0.35; transform: scale(0.97); }
.area-slide.is-active { opacity: 1; transform: scale(1); }

.area-slide__inner {
  position: relative;
  background: linear-gradient(155deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border: 1px solid rgba(201,168,106,0.18);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  min-height: 380px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease-out);
}
.area-slide__inner::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.area-slide__inner::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,106,0.08), transparent 65%);
  pointer-events: none;
  transition: transform 0.8s var(--ease-out);
}
.area-slide.is-active .area-slide__inner:hover {
  border-color: rgba(201,168,106,0.45);
  transform: translateY(-4px);
}
.area-slide.is-active .area-slide__inner:hover::after {
  transform: translate(-30px, 30px) scale(1.1);
}

.area-slide__icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 1.6rem;
  padding: 12px;
  border: 1px solid rgba(201,168,106,0.3);
  border-radius: 50%;
  display: inline-flex;
  background: rgba(201,168,106,0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s var(--ease);
}
.area-slide__icon svg { width: 100%; height: 100%; }
.area-slide.is-active .area-slide__inner:hover .area-slide__icon {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 0 0 6px rgba(201,168,106,0.08);
}

.area-slide__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.area-slide h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}
.area-slide p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0 0 1.6rem;
  max-width: 56ch;
}
.area-slide__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
.area-slide__bullets li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.area-slide__bullets li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.areas-carousel__nav {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,0.35);
  color: var(--gold);
  background: rgba(255,255,255,0.02);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(6px);
}
.areas-carousel__nav svg { width: 22px; height: 22px; }
.areas-carousel__nav:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 10px 30px -8px var(--gold-glow);
}
.areas-carousel__nav:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

.areas-carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.areas-carousel__dots button {
  width: 32px; height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.areas-carousel__dots button:hover { background: rgba(201,168,106,0.5); }
.areas-carousel__dots button.is-active {
  background: var(--gold);
  width: 56px;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ================ BLOG ================ */
.blog { background: var(--bone); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.post-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.post-card__media { aspect-ratio: 16/10; overflow: hidden; }
.post-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.post-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.post-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.post-card p { color: var(--text-soft); font-size: 0.95rem; flex: 1; margin: 0 0 1.2rem; }
.post-card__link {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.post-card__link:hover { color: var(--gold); letter-spacing: 0.22em; }

/* ================ UNIDADES ================ */
.unidades {
  background: linear-gradient(180deg, var(--white) 0%, var(--bone) 100%);
  position: relative;
}
.unidades::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 400px at 15% 0%, rgba(201,168,106,0.08), transparent 60%),
    radial-gradient(900px 400px at 85% 100%, rgba(10,18,42,0.05), transparent 60%);
  pointer-events: none;
}
.unidades > .container { position: relative; z-index: 1; }

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}
.unit-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.55s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.55s var(--ease);
  position: relative;
  box-shadow: 0 6px 20px -14px rgba(10,18,42,0.35);
  display: flex;
  flex-direction: column;
}
.unit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.75;
  z-index: 2;
}
.unit-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 0 0 var(--gold-glow);
  pointer-events: none;
  transition: box-shadow 0.5s var(--ease);
}
.unit-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -22px rgba(10,18,42,0.35);
}
.unit-card:hover::after { box-shadow: 0 0 40px 2px var(--gold-glow); }

.unit-card__map {
  aspect-ratio: 16/10;
  background: var(--bone);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.unit-card__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(45%) contrast(0.95);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.unit-card:hover .unit-card__map iframe { filter: grayscale(0%) contrast(1); transform: scale(1.02); }

.unit-card__body {
  padding: 1.9rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}
.unit-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201,168,106,0.4);
  border-radius: 999px;
  background: rgba(201,168,106,0.06);
  font-weight: 600;
}
.unit-card__body h3 {
  font-size: 1.45rem;
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.unit-card__body h3 span {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95em;
}
.unit-card__info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.unit-card__info li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.unit-card__info li:last-child { border-bottom: 0; padding-bottom: 0; }
.unit-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.unit-card__value {
  font-size: 0.98rem;
  color: var(--navy);
  line-height: 1.5;
}
.unit-card__value--hl {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.unit-card .btn { margin-top: auto; align-self: flex-start; }

/* ================ CONTATO ================ */
.contato {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contato::before {
  /* sutil textura dourada */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,168,106,0.08), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(201,168,106,0.05), transparent 50%);
  pointer-events: none;
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}
.contato .section__title { color: var(--white); }
.contato .lead { color: rgba(255,255,255,0.75); }

.contact-list { margin: 2.5rem 0; }
.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-on-dark);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.contact-list strong {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  width: 110px;
}

.socials { display: flex; gap: 1rem; flex-wrap: wrap; }
.socials a {
  min-width: 42px; height: 44px;
  padding: 0 0.4rem;
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  color: var(--gold);
  transition: all 0.4s var(--ease);
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Instagram com label */
.social-ig {
  padding: 0 1rem 0 0.55rem !important;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(201,168,106,0.18), rgba(201,168,106,0.04));
  border-color: rgba(201,168,106,0.55) !important;
}
.social-ig span { white-space: nowrap; }
.social-ig:hover {
  background: linear-gradient(135deg, #fdc66c 0%, #c9a86a 50%, #8a6a3a 100%) !important;
  color: var(--navy) !important;
}

/* Formulário — refinado */
.form {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(201,168,106,0.22);
  padding: 2.75rem 2.5rem;
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 60px -30px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.form:hover {
  border-color: rgba(201,168,106,0.38);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.form__row {
  margin-bottom: 1.35rem;
  position: relative;
}
.form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
  font-weight: 600;
  transition: color 0.3s var(--ease);
}
.form input,
.form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  resize: vertical;
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(255,255,255,0.35); }
.form input:hover,
.form textarea:hover {
  border-color: rgba(201,168,106,0.35);
  background: rgba(255,255,255,0.05);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(201,168,106,0.12);
}
.form__row:focus-within label { color: #fdc66c; }
.form input.is-invalid,
.form textarea.is-invalid {
  border-color: #e57373;
  box-shadow: 0 0 0 3px rgba(229,115,115,0.14);
}
.form__error {
  display: block;
  font-size: 0.78rem;
  color: #e57373;
  margin-top: 0.4rem;
  min-height: 1em;
}
.form .btn--block {
  margin-top: 0.6rem;
  width: 100%;
  padding: 1.05rem 1.5rem;
  letter-spacing: 0.16em;
  border-radius: 10px;
}
.form__feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.5em;
}
.form__feedback.is-success { color: var(--gold); }
.form__feedback.is-error { color: #e57373; }

/* Contact info list refinada */
.contact-list li {
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact-list li:hover { color: #fff; transform: translateX(4px); }

/* ================ FOOTER ================ */
.footer {
  background: #060B1C;
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer__col p, .footer__col li {
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer__col a { transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.logo__mark--footer, .logo__img--footer { display: inline-block; margin-bottom: 1rem; }

/* Footer Instagram — destaque premium */
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.2rem 0.85rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201,168,106,0.45);
  background: linear-gradient(135deg, rgba(201,168,106,0.16), rgba(201,168,106,0.04));
  color: var(--white);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.footer-ig__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdc66c 0%, #c9a86a 55%, #8a6a3a 100%);
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 8px 18px -8px rgba(201,168,106,0.55);
}
.footer-ig__icon svg { width: 20px; height: 20px; }
.footer-ig__text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-ig__label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.footer-ig__handle {
  font-size: 0.92rem;
  color: var(--white);
  margin-top: 0.18rem;
  letter-spacing: 0.02em;
}
.footer-ig:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,106,0.28), rgba(201,168,106,0.08));
  box-shadow: 0 18px 36px -18px rgba(201,168,106,0.6);
}
.footer-ig:hover .footer-ig__icon { transform: rotate(-4deg) scale(1.04); }

.footer__legal {
  border-top: 1px solid rgba(201,168,106,0.18);
  padding: 1.25rem 0 1.1rem;
}
.footer__legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.footer__legal-name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--gold, #c9a86a);
  font-weight: 500;
}
.footer__legal-info {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.62);
}
.footer__legal-sep { color: rgba(201,168,106,0.55); }
@media (max-width: 520px) {
  .footer__legal-info { font-size: 0.78rem; gap: 0.4rem; }
  .footer__legal-sep { display: none; }
  .footer__legal-info { flex-direction: column; }
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer__bottom p { margin: 0; }

/* ================ FLOAT BUTTONS ================ */
.float-btn {
  position: fixed;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 28px -10px rgba(10,18,42,0.45);
}
.float-btn--wpp {
  bottom: 1.8rem; right: 1.8rem;
  background: radial-gradient(circle at 30% 30%, #34d97a 0%, #25D366 45%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), 0 2px 6px rgba(0,0,0,0.15);
  overflow: visible;
}
.float-btn--wpp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: wpp-pulse 2.4s var(--ease) infinite;
}
.float-btn--wpp svg {
  width: 60%;
  height: 60%;
  position: relative;
  z-index: 1;
  display: block;
}
.float-btn--wpp svg path { fill: #ffffff; }
.float-btn--wpp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.7), 0 4px 10px rgba(0,0,0,0.18);
}
@keyframes wpp-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

.float-btn--top {
  bottom: 6rem; right: 1.8rem;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.float-btn--top svg { width: 20px; height: 20px; }
.float-btn--top.is-visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.float-btn--top:hover { background: var(--gold); color: var(--navy); }

/* ================ REVEAL (IntersectionObserver) ================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* atrasos escalonados em listas */
.team-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.team-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.team-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.team-card.reveal:nth-child(5) { transition-delay: 0.4s; }
.unit-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.unit-card.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ================ RESPONSIVO ================ */
@media (min-width: 1600px) {
  .container { max-width: 1280px; }
}
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .blog-grid, .units-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__media img { height: 460px; }
  .contato__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(85%, 360px);
    height: 100vh;
    background: var(--navy);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    border-left: 1px solid var(--line-on-dark);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .nav__link { font-size: 0.95rem; }
  .hamburger { display: block; }

  .hero { padding: 7rem 0 3rem; min-height: 92vh; }
  .hero__meta { gap: 1.8rem; flex-wrap: wrap; }
  .hero__meta strong { font-size: 1.7rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__portrait {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-position: 72% center;
    opacity: 0.55;
  }
  .hero__overlay--fade {
    background: linear-gradient(180deg,
      rgba(10,18,42,0.55) 0%,
      rgba(10,18,42,0.72) 55%,
      rgba(10,18,42,0.92) 100%);
  }
  .hero__content { max-width: 100%; }

  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .areas-carousel { grid-template-columns: 1fr; gap: 1rem; }
  .areas-carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; }
  .areas-carousel__nav--prev { left: -8px; }
  .areas-carousel__nav--next { right: -8px; left: auto; }
  .areas-carousel__nav:hover { transform: translateY(-50%) scale(1.05); }
  .area-slide__inner { padding: 2rem 1.5rem; min-height: auto; }
  .area-slide__bullets { flex-direction: column; gap: 0.5rem; }
  .blog-grid, .units-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .form { padding: 1.8rem 1.4rem; }
  .section__header { margin-bottom: 2.5rem; }
  .logo__text { display: none; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn--top { bottom: 5.5rem; }
}

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

/* =============================================================
   ÁREAS — Cards Premium (substitui carrossel)
   ============================================================= */
.areas-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.area-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border: 1px solid rgba(201,168,106,0.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.5);
}
.area-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
}
.area-card::after {
  content: '';
  position: absolute; top: -40%; right: -30%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,168,106,0.10), transparent 65%);
  pointer-events: none;
  transition: transform 0.9s var(--ease-out);
}
.area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,106,0.45);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,106,0.15);
}
.area-card:hover::before { opacity: 1; }
.area-card:hover::after { transform: translate(-40px, 40px) scale(1.1); }

.area-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.area-card__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: rgba(201,168,106,0.4);
  letter-spacing: 0.05em;
  line-height: 1;
}
.area-card__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  padding: 10px;
  border: 1px solid rgba(201,168,106,0.3);
  border-radius: 50%;
  background: rgba(201,168,106,0.06);
  transition: transform 0.5s var(--ease-out);
}
.area-card__icon svg { width: 100%; height: 100%; }
.area-card:hover .area-card__icon { transform: rotate(-6deg) scale(1.08); }

.area-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.area-card > p {
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0 0 1.4rem;
}
.area-card__bullets { margin-bottom: 2rem; }
.area-card__bullets li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  padding-bottom: 0.5rem;
}
.area-card__bullets li::before {
  content: '';
  position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.area-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(201,168,106,0.18);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
  align-self: stretch;
  justify-content: space-between;
}
.area-card__cta svg { width: 20px; height: 20px; transition: transform 0.4s var(--ease-out); }
.area-card:hover .area-card__cta { color: var(--white); }
.area-card:hover .area-card__cta svg { transform: translateX(6px); color: var(--gold); }

/* =============================================================
   PÁGINAS INTERNAS — Banner / Breadcrumb / Cards de Serviço
   ============================================================= */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,168,106,0.15), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.page-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,0.4), transparent);
}
.page-hero .container { position: relative; z-index: 1; }

/* Article hero with portrait on the right */
.page-hero--article { padding-bottom: 6rem; }
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: center;
}
.page-hero__text { min-width: 0; }
.page-hero--article h1 { max-width: 22ch; }
.page-hero__portrait {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 360px;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: radial-gradient(120% 95% at 65% 40%, #000 45%, rgba(0,0,0,0.85) 62%, rgba(0,0,0,0.35) 82%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(120% 95% at 65% 40%, #000 45%, rgba(0,0,0,0.85) 62%, rgba(0,0,0,0.35) 82%, rgba(0,0,0,0) 100%);
}
.page-hero__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.page-hero__portrait::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(10,18,42,0.75) 14%, rgba(10,18,42,0.25) 38%, rgba(10,18,42,0) 60%),
    linear-gradient(180deg, rgba(10,18,42,0.55) 0%, rgba(10,18,42,0) 32%, rgba(10,18,42,0) 62%, var(--navy) 100%),
    linear-gradient(270deg, var(--navy) 0%, rgba(10,18,42,0) 22%);
  pointer-events: none;
}
.page-hero__portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 65% 42%, rgba(10,18,42,0) 55%, rgba(10,18,42,0.55) 85%, var(--navy) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .page-hero__portrait { min-height: 320px; max-height: 420px; }
  .page-hero__portrait img { object-position: center 18%; }
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  margin: 0 0 1.2rem;
  max-width: 18ch;
  line-height: 1.1;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 62ch;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* Cards de serviços especializados */
.services-section { background: var(--bone); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 28px 60px -28px rgba(10,18,42,0.25);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  width: 42px; height: 42px;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,106,0.35);
  border-radius: 50%;
  padding: 9px;
  background: rgba(201,168,106,0.05);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.7rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.4rem;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.service-card__link:hover { color: var(--gold); gap: 0.9rem; }

/* =============================================================
   PÁGINA FINAL DO ARTIGO
   ============================================================= */
.article-section { background: var(--white); padding: clamp(4rem,8vw,6rem) 0; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.article-body {
  min-width: 0;
}
.article-author {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a122a 0%, #0f1b3d 100%);
  border: 1px solid rgba(201, 168, 106, 0.28);
  box-shadow: 0 20px 50px -30px rgba(10, 18, 42, 0.6);
}
.article-author__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a122a;
}
.article-author__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.article-author__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,42,0) 45%, rgba(10,18,42,0.92) 100%),
    radial-gradient(120% 60% at 50% 0%, rgba(10,18,42,0) 55%, rgba(10,18,42,0.35) 100%);
  pointer-events: none;
}
.article-author__body {
  padding: 1.4rem 1.5rem 1.6rem;
  color: #f5f2ea;
  text-align: left;
}
.article-author__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.55rem;
}
.article-author__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
.article-author__role {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 242, 234, 0.72);
  margin: 0 0 1.2rem;
}
.article-author__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,106,0) 0%, rgba(201,168,106,0.55) 50%, rgba(201,168,106,0) 100%);
  margin: 0 0 1.1rem;
}
.article-author__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.article-author__cta:hover { color: #e6c98a; transform: translateX(2px); }
.article-author__cta svg { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; gap: 2.25rem; max-width: 820px; }
  .article-author { position: static; max-width: 420px; margin: 0 auto; width: 100%; }
  .article-author__media { aspect-ratio: 4 / 3; }
  .article-author__media img { object-position: center 15%; }
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy);
  margin: 2.8rem 0 1rem;
  letter-spacing: -0.01em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.85;
  margin: 0 0 1.2rem;
}
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body .article__intro {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--text-soft);
  font-weight: 300;
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 2.5rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin: 2.5rem 0;
}
.info-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.info-card p { font-size: 0.92rem; color: var(--text-soft); margin: 0; line-height: 1.65; }

/* =============================================================
   Highlights — destaques jurídicos
   ============================================================= */
.highlights-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--bone) 100%);
  padding: clamp(4rem,8vw,6rem) 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.highlight-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10,18,42,0.08);
  border-radius: 4px;
  padding: 2.25rem 1.75rem 1.75rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.highlight-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: .85;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(10,18,42,0.25);
  border-color: rgba(201,168,106,0.4);
}
.highlight-card__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: .85rem;
}
.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 .65rem;
  font-weight: 500;
}
.highlight-card p { color: var(--text-soft); font-size: .95rem; line-height: 1.7; margin: 0; }

/* =============================================================
   Process — método de trabalho
   ============================================================= */
.process-section {
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem,8vw,6rem) 0;
}
.process-section .eyebrow { color: var(--gold); }
.process-section .section__title,
.process-section .section__title em { color: var(--white); }
.process-section .section__subtitle { color: rgba(255,255,255,0.7); }
.process-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto 0;
  max-width: 880px;
  display: grid;
  gap: 1rem;
}
.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,106,0.15);
  border-radius: 4px;
  transition: border-color .35s ease, background .35s ease, transform .35s ease;
}
.process-item:hover {
  border-color: rgba(201,168,106,0.45);
  background: rgba(255,255,255,0.05);
  transform: translateX(4px);
}
.process-item__step {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.process-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 .35rem;
  color: var(--white);
  font-weight: 500;
}
.process-item p { color: rgba(255,255,255,0.72); font-size: .95rem; line-height: 1.65; margin: 0; }

/* Focus / Info cards reused on light bg */
.focus-section { background: var(--bone); padding: clamp(4rem,8vw,6rem) 0; }

/* =============================================================
   FAQ — Accordion
   ============================================================= */
.faq-section {
  background: var(--bone);
  padding: clamp(4rem,8vw,6rem) 0;
}
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.faq__item.is-open {
  border-color: var(--gold);
  box-shadow: 0 14px 30px -18px rgba(201,168,106,0.4);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease);
}
.faq__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon { background: var(--gold); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::before { background: var(--white); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq__a-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* =============================================================
   CTA final
   ============================================================= */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem,6vw,4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,106,0.12), transparent 60%);
  pointer-events: none;
}
.cta-strip .container { position: relative; }
.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 0.8rem;
}
.cta-strip h2 em { color: var(--gold); font-style: italic; }
.cta-strip p {
  color: rgba(255,255,255,0.7);
  margin: 0 0 1.8rem;
  font-size: 1.02rem;
}

/* =============================================================
   REVEAL — variações suaves
   ============================================================= */
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* atrasos escalonados */
.area-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.area-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.info-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.info-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.info-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.faq__item.reveal:nth-child(2) { transition-delay: 0.08s; }
.faq__item.reveal:nth-child(3) { transition-delay: 0.16s; }
.faq__item.reveal:nth-child(4) { transition-delay: 0.24s; }

/* =============================================================
   RESPONSIVO — Páginas internas
   ============================================================= */
@media (max-width: 1024px) {
  .areas-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .areas-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 9rem 0 4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .faq__q { font-size: 1rem; padding: 1.1rem 1.2rem; }
}

/* =============================================================
   BLOG — Cards de categoria (Home)
   ============================================================= */
.blog { background: var(--bone); }
.blog-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.blog-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2rem;
  overflow: hidden;
  color: inherit;
  transition: transform 0.55s var(--ease-out),
              border-color 0.4s var(--ease),
              box-shadow 0.5s var(--ease);
  isolation: isolate;
}
.blog-cat::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.4s var(--ease);
}
.blog-cat::after {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,106,0.10), transparent 70%);
  z-index: -1;
  transition: transform 0.7s var(--ease-out);
}
.blog-cat:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,106,0.55);
  box-shadow: 0 32px 70px -30px rgba(10,18,42,0.3);
}
.blog-cat:hover::before { transform: scaleX(1); opacity: 1; }
.blog-cat:hover::after { transform: scale(1.25); }

.blog-cat__icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,106,0.4);
  border-radius: 50%;
  padding: 12px;
  background: rgba(201,168,106,0.06);
  transition: background 0.4s var(--ease), transform 0.5s var(--ease-out);
}
.blog-cat__icon svg { width: 100%; height: 100%; }
.blog-cat:hover .blog-cat__icon { background: var(--navy); color: var(--gold); transform: rotate(-4deg) scale(1.05); border-color: var(--navy); }

.blog-cat__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.blog-cat h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--navy);
  margin: 0 0 0.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.blog-cat__desc {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.blog-cat__topics {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.blog-cat__topics li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.3rem;
  font-size: 0.9rem;
  color: var(--text);
}
.blog-cat__topics li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.blog-cat__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  padding-top: 0.4rem;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.blog-cat__cta svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-out); }
.blog-cat:hover .blog-cat__cta { color: var(--gold); gap: 0.9rem; }
.blog-cat:hover .blog-cat__cta svg { transform: translateX(4px); }

.blog-cat.reveal:nth-child(2) { transition-delay: 0.12s; }
.blog-cat.reveal:nth-child(3) { transition-delay: 0.24s; }

/* =============================================================
   BLOG — Lista de artigos (página de categoria)
   ============================================================= */
.blog-list-section { background: var(--white); }
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 980px;
  margin: 2.5rem auto 0;
}
.article-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.55s var(--ease-out),
              border-color 0.4s var(--ease),
              box-shadow 0.5s var(--ease);
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,106,0.5);
  box-shadow: 0 28px 60px -28px rgba(10,18,42,0.28);
}
.article-card__media {
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,168,106,0.22), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.article-card__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.article-card__icon {
  position: relative;
  width: 70px; height: 70px;
  color: var(--gold);
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,106,0.4);
  border-radius: 50%;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  transition: transform 0.6s var(--ease-out);
}
.article-card:hover .article-card__icon { transform: scale(1.08) rotate(-4deg); }
.article-card__icon svg { width: 100%; height: 100%; }

.article-card__body { padding: 1.8rem 2rem; display: flex; flex-direction: column; }
.article-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 0.6rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.article-card p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  flex: 1;
}
.article-card__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.article-card__link:hover { color: var(--gold); gap: 0.9rem; }
.article-card__link svg { transition: transform 0.4s var(--ease-out); }
.article-card__link:hover svg { transform: translateX(4px); }

/* =============================================================
   ARTIGO — CTA institucional final
   ============================================================= */
.article-cta {
  background: linear-gradient(180deg, var(--bone) 0%, var(--white) 100%);
  padding: clamp(4rem,7vw,5rem) 0;
}
.article-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem;
  box-shadow: var(--shadow-md);
}
.article-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--navy);
  margin: 0.3rem 0 0.8rem;
}
.article-cta h2 em { color: var(--gold); font-style: italic; }
.article-cta p { color: var(--text-soft); margin: 0; font-size: 1rem; line-height: 1.7; }
.article-cta__actions { display: flex; flex-direction: column; gap: 0.8rem; }
.btn--navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn--navy:hover { background: var(--navy-3); transform: translateY(-2px); }
.btn--wpp {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #25D366; color: #fff;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: filter 0.3s var(--ease), transform 0.35s var(--ease);
}
.btn--wpp:hover { filter: brightness(0.93); transform: translateY(-2px); }

/* =============================================================
   ARTIGO — Relacionados
   ============================================================= */
.related-section { background: var(--bone); padding: clamp(4rem,8vw,6rem) 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  color: inherit;
  transition: transform 0.45s var(--ease-out), border-color 0.35s var(--ease), box-shadow 0.5s var(--ease);
}
.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -26px rgba(10,18,42,0.25);
}
.related-card__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,106,0.35);
  border-radius: 50%;
  padding: 10px;
  background: rgba(201,168,106,0.06);
}
.related-card__icon svg { width: 100%; height: 100%; }
.related-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.related-card__link {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* =============================================================
   BLOG — Responsivo
   ============================================================= */
@media (max-width: 1024px) {
  .blog-cats { grid-template-columns: 1fr; max-width: 560px; margin: 3rem auto 0; }
  .article-cta__inner { grid-template-columns: 1fr; padding: 2rem; }
  .article-cta__actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .article-card { grid-template-columns: 1fr; }
  .article-card__media { aspect-ratio: 16/8; }
  .article-card__body { padding: 1.5rem 1.4rem; }
  .article-cta__actions { flex-direction: column; }
  .article-cta__actions .btn--navy,
  .article-cta__actions .btn--wpp { width: 100%; }
}
