/* ============================================================
   Vale & Castro Advocacia — Folha de Estilos Principal
   Identidade: Azul petróleo + Dourado + Off-white. Elegante,
   moderno, com tipografia serifada nos títulos.
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:      #0B1726;
  --navy-mid:  #152236;
  --gold:      #C8A45D;
  --gold-light:#DFC083;
  --cream:     #F8F5EF;
  --cream-dark:#EDE9E1;
  --text:      #2B2B2B;
  --text-light:#6B7280;
  --white:     #FFFFFF;
  --wa:        #25D366;

  --serif: Georgia, "Times New Roman", serif;
  --sans:  "Inter", Arial, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(11,23,38,.07);
  --shadow:    0 4px 20px rgba(11,23,38,.10);
  --shadow-lg: 0 12px 40px rgba(11,23,38,.15);

  --transition: .25s ease;
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 400; letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 400; }
h4 { font-size: 1.1rem; }
p  { color: var(--text); }

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding-block: 5rem; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p, .section--navy .eyebrow { color: rgba(255,255,255,.75); }
.section--navy .eyebrow { color: var(--gold-light); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); gap: 1.5rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-wa {
  background: var(--wa);
  color: var(--white);
}
.btn-wa:hover { background: #20b958; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { color: var(--navy); }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.2;
}
.site-logo span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  letter-spacing: .02em;
}
.site-nav a:hover, .site-nav a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1rem; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding-block: 7rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero[style*="--hero-bg"] {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero[style*="--hero-bg"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,23,38,.65);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 0;
}
.hero[style*="--hero-bg"] .hero-inner,
.hero[style*="--hero-bg"] .hero-stats {
  position: relative;
  z-index: 1;
}

/* Signature element: diagonal gold line */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: linear-gradient(135deg, transparent 40%, rgba(200,164,93,.06) 40%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,164,93,.12);
  border: 1px solid rgba(200,164,93,.25);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual: decorative card */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,164,93,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(4px);
}
.hero-card-quote {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.hero-card-quote::before { content: '\201C'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: .15em; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding-block: 2rem;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; stroke: var(--gold); }

/* ── SOBRE RESUMO ────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--serif);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-image-badge strong { font-size: 2rem; display: block; line-height: 1; }
.about-image-badge span  { font-size: .8rem; font-family: var(--sans); font-weight: 600; }

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1.25rem; color: var(--text-light); }
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-block: 1.5rem;
}
.about-value-tag {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 100px;
  letter-spacing: .03em;
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 380px; margin-inline: auto; }
}

/* ── DRA. ELISA ──────────────────────────────────────────── */
.elisa-section {
  background: var(--navy);
  overflow: hidden;
}
.elisa-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.elisa-image {
  position: relative;
}
.elisa-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: grayscale(20%);
}
.elisa-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,164,93,.25);
  pointer-events: none;
}
.elisa-text .eyebrow { color: var(--gold); }
.elisa-text h2 { color: var(--white); margin-bottom: 1rem; }
.elisa-text p  { color: rgba(255,255,255,.7); margin-bottom: 1rem; line-height: 1.8; }
.elisa-highlights {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-block: 1.5rem;
}
.elisa-highlight {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.elisa-highlight-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: .5rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .elisa-inner { grid-template-columns: 1fr; }
  .elisa-image { max-width: 320px; margin-inline: auto; }
}

/* ── ÁREAS DE ATUAÇÃO ────────────────────────────────────── */
.area-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.area-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.area-card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: var(--transition);
}
.area-card-icon svg { width: 22px; height: 22px; flex-shrink: 0; display: block; max-width: 22px; max-height: 22px; }
.area-card:hover .area-card-icon { background: var(--navy); color: var(--gold); }
.area-card h3 { font-size: 1.05rem; color: var(--navy); }
.area-card p  { font-size: .88rem; color: var(--text-light); line-height: 1.6; flex: 1; }

/* ── PROCESSO ────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent, var(--gold));
  opacity: .3;
}
.process-step { text-align: center; padding: 2rem 1rem; }
.process-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .75rem;
}
.process-step h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.process-step p  { font-size: .88rem; color: var(--text-light); }

@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

/* ── BLOG CARDS ─────────────────────────────────────────── */
.post-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-body  { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card-cat   { font-size: .75rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.post-card-title { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: .75rem; line-height: 1.4; }
.post-card-excerpt { font-size: .87rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.post-card-meta  { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; font-size: .78rem; color: var(--text-light); }
.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ── SINGLE POST ─────────────────────────────────────────── */
.post-header { background: var(--navy); padding-block: 4rem; }
.post-header .eyebrow { color: var(--gold); }
.post-header h1 { color: var(--white); max-width: 20ch; margin-block: 1rem; }
.post-header .breadcrumb a { color: rgba(255,255,255,.6); }
.post-header .breadcrumb a:hover { color: var(--gold); }
.post-header .breadcrumb .sep { color: rgba(255,255,255,.35); margin-inline: .4rem; }
.post-meta-bar, .post-header-meta {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cat-pill {
  background: rgba(200,164,93,.15);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
}

.post-featured-img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

.post-content-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: 1180px;
  margin-inline: auto;
  padding: 3.5rem 1.5rem 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .post-content-wrap { grid-template-columns: 1fr; padding: 2.5rem 1.25rem 3.5rem; }
}

.post-content { max-width: none; margin-inline: 0; padding-block: 0; }
.post-content h2 { margin-block: 2rem 1rem; }
.post-content h3 { margin-block: 1.5rem .75rem; }
.post-content p  { margin-bottom: 1.25rem; line-height: 1.8; }
.post-content ul { margin-bottom: 1.25rem; padding-left: 1.5rem; list-style: disc; }
.post-content ul li { margin-bottom: .4rem; line-height: 1.7; }
.post-content strong { color: var(--navy); }

.post-share {
  border-top: 1px solid var(--cream-dark);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.post-share h4 { font-size: 1rem; margin: 0; margin-right: .5rem; }
.share-btns { display: flex; gap: .6rem; flex-wrap: wrap; }

.post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-box h4 {
  font-size: 1rem;
  padding-bottom: .75rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.sidebar-related { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-related-item { display: flex; gap: .8rem; align-items: center; }
.sidebar-related-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--cream);
  color: var(--text-light);
}
.sidebar-related-item h5 {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}
.sidebar-related-item:hover h5 { color: var(--gold); }

/* Variantes de botão usadas nas páginas de artigo/área (nomenclatura BEM) */
.btn--wpp { background: var(--wa); color: var(--white); }
.btn--wpp:hover { background: #20b958; }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-mid); }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn--outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: .55rem 1.1rem; font-size: .8rem; }

/* ── BLOG LIST PAGE ──────────────────────────────────────── */
.blog-filter {
  background: var(--cream);
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.blog-filter-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-cats {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.filter-cat {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--text);
  font-size: .82rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: 100px;
  transition: var(--transition);
}
.filter-cat:hover, .filter-cat.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.blog-search {
  margin-left: auto;
  display: flex;
  gap: .5rem;
}
.blog-search input {
  padding: .5rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: .88rem;
  background: var(--white);
  outline: none;
  transition: var(--transition);
  width: 200px;
}
.blog-search input:focus { border-color: var(--navy); width: 260px; }

/* ── PAGINATION ──────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding-top: 2.5rem;
}
.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.pagination a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  gap: 1rem;
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,164,93,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 { color: var(--white); margin-bottom: 1rem; }
.cta-final p  { color: rgba(255,255,255,.65); max-width: 48ch; margin-inline: auto; margin-bottom: 2.5rem; }
.cta-final .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FORMULÁRIO ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--navy); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-check input[type="checkbox"] { margin-top: .15rem; accent-color: var(--navy); flex-shrink: 0; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  display: none;
}
.form-success.show { display: block; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  display: none;
}
.form-error.show { display: block; }

/* ── PÁGINA INTERNA ─────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-block: 4rem;
}
.page-hero .eyebrow { margin-bottom: .5rem; }
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.6rem); }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 50ch; margin-top: .75rem; }

.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold); }

/* ── CONTATO ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
}
.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--navy); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding-block: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h4 { font-family: var(--serif); color: var(--white); font-size: 1.1rem; margin-bottom: .75rem; }
.footer-brand p  { font-size: .85rem; line-height: 1.7; max-width: 28ch; color: rgba(255,255,255,.65); }
.footer-col h5 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 70ch; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.45); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 54px;
  height: 54px;
  background: var(--wa);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 200;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }

/* ── ÁREA INTERNA ────────────────────────────────────────── */
.area-content { max-width: 800px; }
.area-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.area-content h3 { margin-top: 1.75rem; margin-bottom: .75rem; color: var(--navy); }
.area-content p  { margin-bottom: 1.1rem; color: var(--text-light); line-height: 1.8; }
.area-content ul { margin-bottom: 1.1rem; padding-left: 1.25rem; }
.area-content ul li { margin-bottom: .4rem; color: var(--text-light); line-height: 1.7; list-style: none; position: relative; padding-left: 1.1rem; }
.area-content ul li::before { content: ''; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.area-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.area-cta-box h3 { color: var(--white); margin-bottom: .75rem; }
.area-cta-box p  { color: rgba(255,255,255,.65); margin-bottom: 1.75rem; }

/* ── ABOUT FULL PAGE ─────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.value-card h4 { color: var(--navy); margin-bottom: .4rem; font-size: 1rem; }
.value-card p  { font-size: .82rem; color: var(--text-light); }
.value-card-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

/* ── AGENDAMENTO ─────────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.schedule-info h2 { margin-bottom: 1rem; }
.schedule-info p  { color: var(--text-light); margin-bottom: 1.25rem; }
.schedule-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.schedule-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.schedule-step-num {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: .9rem;
  flex-shrink: 0;
}
.schedule-step-text strong { display: block; color: var(--navy); font-size: .9rem; }
.schedule-step-text span  { font-size: .83rem; color: var(--text-light); }
.schedule-disclaimer {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: .82rem;
  color: var(--text-light);
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .schedule-grid { grid-template-columns: 1fr; }
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: 3.5rem; }
.section-header p { color: var(--text-light); margin-top: .75rem; line-height: 1.7; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── LOADING / PLACEHOLDER ───────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  aspect-ratio: 3/4;
}
.img-placeholder svg { width: 48px; height: 48px; opacity: .3; }

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── FOOTER MAP ──────────────────────────────────────────── */
.footer-map {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
}
.footer-map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-map-info h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .75rem;
}
.footer-map-info p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.footer-map-info a {
  font-size: .82rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .25rem;
}
.footer-map-iframe {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
}
.footer-map-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}
@media (max-width: 768px) {
  .footer-map-inner { grid-template-columns: 1fr; }
  .footer-map-iframe { height: 180px; }
}

/* ── CONTATO PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-col {}
.contact-info-col {}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  background: var(--white);
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,23,38,.06); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form .form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 5px; color: var(--navy); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .15s, box-shadow .15s;
  text-decoration: none;
  color: var(--text);
}
.contact-card:hover { border-color: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.contact-card--wa { border-color: #c3f0d4; background: #f0fdf4; }
.contact-card--wa:hover { border-color: #25D366; }
.contact-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card strong { display: block; font-size: .9rem; color: var(--navy); }
.contact-card span { font-size: .8rem; color: var(--text-light); }
.contact-map { border-radius: 12px; overflow: hidden; height: 220px; border: 1px solid var(--cream-dark); }
.contact-map iframe { width: 100%; height: 100%; border: none; }
.btn-lg { padding: 13px 24px; font-size: 1rem; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ── DRA. ELISA PAGE ─────────────────────────────────────── */
.elisa-page-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.elisa-page-photo { position: sticky; top: 90px; }
.elisa-photo-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  margin-bottom: 16px;
}
.elisa-contact-card { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 900px) {
  .elisa-page-grid { grid-template-columns: 1fr; gap: 2rem; }
  .elisa-page-photo { position: static; display: grid; grid-template-columns: 160px 1fr; gap: 16px; align-items: start; }
  .elisa-photo-img { aspect-ratio: 3/4; max-height: 200px; }
}
@media (max-width: 540px) {
  .elisa-page-photo { grid-template-columns: 1fr; }
  .elisa-photo-img { max-height: 260px; }
}

/* ── AREAS PAGE ──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 16px;
}
.area-card-full {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.area-card-full:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.area-card-full-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cream); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background .15s, color .15s;
}
.area-card-full:hover .area-card-full-icon { background: var(--navy); color: var(--gold); }
.area-card-full-icon svg { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.area-card-full-body h3 { font-size: .95rem; color: var(--navy); margin-bottom: 4px; }
.area-card-full-body p  { font-size: .82rem; color: var(--text-light); line-height: 1.55; margin-bottom: 8px; }
.area-card-full-link { font-size: .78rem; font-weight: 600; color: var(--gold); }
@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE GLOBAL IMPROVEMENTS ─────────────────────────── */
@media (max-width: 768px) {
  .section { padding-block: 3rem; }
  .hero { padding-block: 4rem 3rem; }
  .page-hero { padding-block: 2.5rem 2rem; }
  .about-split { gap: 2.5rem; }
  .elisa-inner { gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .cta-final .cta-buttons { flex-direction: column; align-items: center; }
  .cta-final .cta-buttons .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
  .hero-stat-num { font-size: 1.2rem; }
}

/* ── SHARED FORM GRIDS ──────────────────────────────────── */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── CONTACT PAGE GRID ───────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  /* Agendar lateral */
  .agendar-grid { grid-template-columns: 1fr !important; }
  .agendar-grid > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 500px) {
  .agendar-grid > div:last-child { grid-template-columns: 1fr; }
  .process-steps { gap: .75rem; }
}

/* ── ESCRITORIO PAGE ─────────────────────────────────────── */
@media (max-width: 860px) {
  .about-split > div:last-child { order: -1; }
}
@media (max-width: 680px) {
  section .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  section .container > div[style*="grid-template-columns:1fr 380px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── LAYOUT UTILITY GRIDS (responsive) ─────────────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.agendar-main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 860px) {
  .two-col-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .agendar-main-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2         { grid-template-columns: 1fr; }
}

/* ── FORM ELEMENTS (contato/agendar) ────────────────────── */
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,23,38,.07);
}
textarea.form-control {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
select.form-control { cursor: pointer; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  margin-top: .15rem;
  accent-color: var(--navy);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

/* ============================================================
   ÁREAS DE ATUAÇÃO — cards quadrados v3
   ============================================================ */

/* Stats bar acima do grid */
.areas-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
.areas-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  text-align: center;
}
.areas-stat strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .2rem;
}
.areas-stat span { font-size: .76rem; color: var(--text-light); }
.areas-stat-sep {
  width: 1px; height: 36px;
  background: var(--cream-dark);
  flex-shrink: 0;
}

/* Grid de cards quadrados */
.areas-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Card quadrado */
.area-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 28px 22px 22px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  /* força proporcao quadrada */
  aspect-ratio: 1 / 1;
}
.area-card-v2:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
/* Linha dourada no topo ao hover */
.area-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.area-card-v2:hover::before { transform: scaleX(1); }

/* Ícone */
.area-card-v2-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.area-card-v2:hover .area-card-v2-icon {
  background: var(--navy);
  color: var(--gold);
}
.area-card-v2-icon svg { width: 22px; height: 22px; display: block; }

/* Conteúdo cresce para preencher */
.area-card-v2-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.area-card-v2-content h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.area-card-v2-content p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* Rodapé do card */
.area-card-v2-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}
.area-card-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .79rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap .2s;
}
.area-card-v2:hover .area-card-v2-link { gap: 9px; }

/* Pilares "mesmo compromisso" */
.areas-pilares {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.areas-pilar {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.areas-pilar-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.areas-pilar h3 { font-size: .9rem; font-weight: 700; color: var(--navy); }
.areas-pilar p  { font-size: .83rem; color: var(--text-light); line-height: 1.65; }

/* Responsivo áreas */
@media (max-width: 1100px) {
  .areas-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .areas-stats-bar { gap: 0; }
  .areas-stat { padding: 0 1.5rem; }
  .areas-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-pilares    { grid-template-columns: repeat(2, 1fr); }
  .area-card-v2 { aspect-ratio: unset; }
}
@media (max-width: 480px) {
  .areas-stats-bar { flex-direction: column; gap: 1rem; }
  .areas-stat-sep { width: 40px; height: 1px; }
  .areas-stat { padding: 0; }
  .areas-cards-grid { grid-template-columns: 1fr; }
  .areas-pilares    { grid-template-columns: 1fr; }
}

/* ============================================================
   DRA. ELISA — layout compacto v3
   ============================================================ */

/* Hero com foto menor e proporcionada */
.elisa-hero {
  background: var(--navy);
  overflow: hidden;
}
.elisa-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: flex-end;
  padding-block: 4rem 0;
}
.elisa-hero-text { padding-bottom: 3.5rem; }
.elisa-hero-text .breadcrumb { margin-bottom: 1rem; }
.elisa-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .9rem;
}
.elisa-hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 1.5rem;
}
/* Badges */
.elisa-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 1.75rem;
}
.elisa-badge {
  display: inline-block;
  background: rgba(200,164,93,.1);
  border: 1px solid rgba(200,164,93,.28);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 11px;
  border-radius: 100px;
  letter-spacing: .03em;
}
.elisa-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Foto — menor, sem tomar tela toda */
.elisa-hero-photo {
  position: relative;
  align-self: flex-end;
}
.elisa-hero-img {
  width: 100%;
  /* Altura controlada — não preenche a viewport toda */
  max-height: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}
.elisa-photo-placeholder {
  background: rgba(255,255,255,.04);
  border: 2px dashed rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.15);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 420px;
  aspect-ratio: 4/5;
}
/* Float card sobre a foto */
.elisa-float-card {
  position: absolute;
  bottom: 20px;
  left: -16px;
  background: var(--white);
  border-radius: 100px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.elisa-float-dot {
  width: 8px; height: 8px;
  background: var(--wa);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .65; }
}

/* Barra de credenciais */
.elisa-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.elisa-credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 18px;
  border-right: 1px solid var(--cream-dark);
}
.elisa-credential:last-child { border-right: none; }
.elisa-credential-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.elisa-credential strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.elisa-credential span {
  font-size: .76rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* About 2 colunas */
.elisa-about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.elisa-about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 1.1rem;
  line-height: 1.3;
}
.elisa-about-bio {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
/* Checklist */
.elisa-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.elisa-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text);
  line-height: 1.5;
}
.elisa-check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

/* Card Advocacia Dinâmica */
.elisa-dinamica-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 14px;
}
.elisa-dinamica-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .9rem;
  line-height: 1.25;
}
.elisa-dinamica-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}
.elisa-dinamica-pilares {
  display: flex;
  gap: 8px;
  margin-top: 1.4rem;
}
.elisa-dinamica-pilar {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,164,93,.18);
  border-radius: 10px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.elisa-dinamica-pilar-icon { color: var(--gold-light); opacity: .85; }
.elisa-dinamica-pilar span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
/* Card contato rápido */
.elisa-contact-quick {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 18px;
}

/* Responsivo Dra Elisa */
@media (max-width: 1024px) {
  .elisa-hero-inner { grid-template-columns: 1fr 280px; gap: 2.5rem; }
  .elisa-credentials { grid-template-columns: repeat(2, 1fr); }
  .elisa-credential:nth-child(2) { border-right: none; }
  .elisa-credential:nth-child(3),
  .elisa-credential:nth-child(4) { border-top: 1px solid var(--cream-dark); }
  .elisa-credential:nth-child(4) { border-right: none; }
  .elisa-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 760px) {
  .elisa-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.5rem 0;
  }
  .elisa-hero-text { padding-bottom: 0; }
  .elisa-hero-photo { max-width: 260px; }
  .elisa-hero-img,
  .elisa-photo-placeholder { max-height: 320px; }
  .elisa-float-card { display: none; }
}
@media (max-width: 540px) {
  .elisa-credentials { grid-template-columns: 1fr; }
  .elisa-credential { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .elisa-credential:last-child { border-bottom: none; }
  .elisa-hero-photo { max-width: 200px; }
}

/* ============================================================
   CRÉDITO LURAZ — linha sutil no rodapé
   ============================================================ */
.footer-luraz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .02em;
}
.footer-luraz a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: rgba(255,255,255,.35);
  font-size: .65rem;
  transition: color .2s;
}
.footer-luraz a:hover { color: rgba(255,255,255,.65); }
.footer-luraz a:hover img { opacity: .75; }
.footer-luraz img {
  height: 15px;
  width: auto;
  object-fit: contain;
  opacity: .45;
  transition: opacity .2s;
  vertical-align: middle;
}
