/* ===================================================
   OASJ Advogados Associados — Direito de Família
   Tema: Preto & Dourado
   =================================================== */

/* ===== VARIÁVEIS ===== */
:root {
  --preto:         #0a0a0a;
  --preto-card:    #111111;
  --preto-hover:   #1a1a1a;
  --dourado:       #C9A236;
  --dourado-claro: #E8C96A;
  --dourado-escuro:#9A7928;
  --texto:         #F0EDE8;
  --texto-muted:   #9A9080;
  --borda:         rgba(201, 162, 54, 0.18);
  --borda-hover:   rgba(201, 162, 54, 0.45);
  --whatsapp:      #25D366;
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.3s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--preto);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ===== UTILITÁRIOS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--texto);
  margin-bottom: 12px;
}

.section-title span { color: var(--dourado); }

.section-subtitle {
  color: var(--texto-muted);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.divider-gold {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  border-radius: 2px;
  margin: 14px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
  color: #000;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 54, 0.35);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--dourado);
  color: var(--dourado);
}

.btn-outline:hover {
  background: var(--dourado);
  color: #000;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--borda);
  color: var(--texto-muted);
}

.btn-ghost:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  transform: translateY(-2px);
}

section { padding: 88px 0; }


/* ===================================================
   PRÉ-HEADER (TOPBAR)
   =================================================== */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--borda);
  padding: 8px 0;
  font-size: 0.78rem;
  color: var(--texto-muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--texto-muted);
}

.topbar-item a {
  color: var(--texto-muted);
  transition: color var(--transition);
}

.topbar-item a:hover {
  color: var(--dourado);
}

.topbar-phone svg {
  color: #e53e3e;
  stroke: #e53e3e;
}

.topbar-link {
  transition: color var(--transition);
}

.topbar-link:hover {
  color: var(--dourado);
}

.topbar-online {
  color: #4ade80;
  font-weight: 500;
}

.topbar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
}


/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  border-bottom: 1px solid var(--borda);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 70px;
  width: auto;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dourado);
  letter-spacing: 3px;
}

.logo-sub {
  font-size: 0.58rem;
  color: var(--texto-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-size: 0.88rem;
  color: var(--texto-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}


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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(201,162,54,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(201,162,54,0.05) 0%, transparent 55%),
    var(--preto);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 1;
  background-image:
    linear-gradient(rgba(201,162,54,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,54,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}

.hero-line {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 40%, rgba(201,162,54,0.04) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,54,0.08);
  border: 1px solid var(--borda);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--dourado);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dourado);
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  margin-bottom: 22px;
  color: var(--texto);
}

.hero-title em {
  font-style: normal;
  color: var(--dourado);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--texto-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--borda);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--dourado);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--texto-muted);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dourado), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ===================================================
   ÁREAS DE ATUAÇÃO
   =================================================== */
.areas {
  background: var(--preto-card);
}

.areas-header {
  text-align: center;
  margin-bottom: 56px;
}

.areas-header .divider-gold {
  margin: 14px auto 18px;
}

.areas-header .section-subtitle {
  margin: 0 auto 0;
}

.areas-foto {
  margin-bottom: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--borda);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.areas-foto img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

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

.area-card {
  background: var(--preto);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.area-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,54,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.area-card:hover {
  border-color: var(--borda-hover);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,162,54,0.1);
}

.area-card:hover::after { opacity: 1; }

.area-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.area-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--dourado);
  opacity: 0.35;
  line-height: 1;
  font-weight: 700;
}

.area-icon {
  width: 44px; height: 44px;
  background: rgba(201,162,54,0.08);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.area-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texto);
}

.area-desc {
  font-size: 0.86rem;
  color: var(--texto-muted);
  line-height: 1.65;
  flex: 1;
}

.area-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dourado);
  font-size: 0.84rem;
  font-weight: 600;
  border: 1.5px solid var(--borda);
  border-radius: var(--radius);
  padding: 9px 16px;
  transition: all var(--transition);
  margin-top: 8px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.area-link:hover {
  border-color: var(--dourado);
  background: rgba(201,162,54,0.08);
  gap: 12px;
}

.area-link svg {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}

.area-link:hover svg { transform: translateX(3px); }


/* ===================================================
   SOBRE O ESPECIALISTA
   =================================================== */
.sobre {
  background: var(--preto);
}

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

.sobre-foto {
  position: relative;
}

.foto-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.foto-frame::before {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  bottom: -20px; left: 20px;
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.foto-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--preto-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foto-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--texto-muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 20px;
}

.foto-placeholder-icon {
  font-size: 3.5rem;
  opacity: 0.25;
}

.foto-badge {
  position: absolute;
  bottom: 28px;
  right: -28px;
  z-index: 2;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  color: #000;
  border-radius: var(--radius);
  padding: 18px 22px;
  font-weight: 700;
  box-shadow: 0 10px 32px rgba(201,162,54,0.35);
  text-align: center;
  min-width: 110px;
}

.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1;
}

.badge-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
  font-weight: 700;
}

.sobre-content {}

.sobre-content .section-title { margin-bottom: 4px; }

.dr-nome {
  color: var(--dourado);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.dr-oab {
  font-size: 0.84rem;
  color: var(--texto-muted);
  margin-bottom: 24px;
  margin-top: 4px;
}

.sobre-texto {
  color: var(--texto-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.credenciais {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.credencial {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--texto);
}

.cred-icon {
  width: 38px; height: 38px;
  background: rgba(201,162,54,0.08);
  border: 1px solid var(--borda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sobre-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sobre-header {
  text-align: center;
  margin-bottom: 60px;
}

.sobre-header .divider-gold {
  margin: 14px auto 18px;
}

.sobre-header .section-subtitle {
  margin: 0 auto 0;
}

@media (min-width: 769px) {
  .sobre-inner--reverse {
    grid-template-columns: 1.1fr 1fr;
  }

  .sobre-inner--reverse .sobre-content { order: 1; }
  .sobre-inner--reverse .sobre-foto    { order: 2; }

  /* Decoração do frame espelhada para foto à direita */
  .sobre-inner--reverse .foto-frame::before {
    right: 20px;
    left: -20px;
  }

  /* Badge vai para a esquerda na foto à direita */
  .sobre-inner--reverse .foto-badge {
    right: auto;
    left: -28px;
  }
}

.team-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--borda), transparent);
  margin: 72px 0;
  position: relative;
}

.team-divider::before {
  content: '⚖';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--preto);
  color: var(--dourado);
  font-size: 1.1rem;
  padding: 0 16px;
  opacity: 0.5;
}


/* ===================================================
   DIFERENCIAIS
   =================================================== */
.diferenciais {
  background: var(--preto-card);
}

.diferenciais-header {
  text-align: center;
}

.diferenciais-header .divider-gold {
  margin: 14px auto 18px;
}

.diferenciais-header .section-subtitle {
  margin: 0 auto 0;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.diferencial-card {
  background: var(--preto);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.diferencial-card:hover {
  border-color: var(--borda-hover);
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}

.diferencial-card:hover::before { opacity: 1; }

.dif-icone {
  width: 76px; height: 76px;
  background: rgba(201,162,54,0.07);
  border: 1px solid var(--borda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.1rem;
  transition: all var(--transition);
}

.diferencial-card:hover .dif-icone {
  background: rgba(201,162,54,0.14);
  border-color: var(--borda-hover);
}

.dif-titulo {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--texto);
}

.dif-desc {
  font-size: 0.9rem;
  color: var(--texto-muted);
  line-height: 1.75;
}


/* ===================================================
   AVALIAÇÕES DO GOOGLE
   =================================================== */
.avaliacoes {
  background: var(--preto);
}

.avaliacoes-topo {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.avaliacoes-topo .section-subtitle { margin-bottom: 0; }

.google-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--preto-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 14px 20px;
  flex-shrink: 0;
}

.google-logo {
  font-size: 1.8rem;
  line-height: 1;
}

.google-info {}

.google-nota {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--texto);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-stars {
  color: #FFC107;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.google-qtd {
  font-size: 0.75rem;
  color: var(--texto-muted);
  margin-top: 3px;
}

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

.review-card {
  background: var(--preto-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card:hover {
  border-color: rgba(201,162,54,0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dourado-escuro), var(--dourado));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.review-info {}

.review-nome {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--texto);
}

.review-data {
  font-size: 0.76rem;
  color: var(--texto-muted);
  margin-top: 1px;
}

.review-stars {
  color: #FFC107;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-texto {
  font-size: 0.88rem;
  color: var(--texto-muted);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}

.reviews-rodape {
  text-align: center;
  margin-top: 44px;
}


/* ===================================================
   LOCALIZAÇÃO
   =================================================== */
.localizacao {
  background: var(--preto-card);
}

.localizacao-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.localizacao-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--borda);
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.localizacao-mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(85%) invert(92%) hue-rotate(180deg) contrast(0.85) brightness(0.85);
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.localizacao-info .section-subtitle { margin-bottom: 0; }

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icone {
  width: 50px; height: 50px;
  background: rgba(201,162,54,0.08);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.loc-detalhe {}

.loc-label {
  font-size: 0.72rem;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.loc-valor {
  font-size: 0.93rem;
  color: var(--texto);
  line-height: 1.55;
}

.loc-valor a {
  color: var(--dourado);
  transition: color var(--transition);
}

.loc-valor a:hover { color: var(--dourado-claro); }

.localizacao-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}


/* ===================================================
   FAIXA CTA
   =================================================== */
.cta-faixa {
  background: linear-gradient(135deg, #0f0f0f 0%, #161008 50%, #0f0f0f 100%);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-faixa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,162,54,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-faixa-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-faixa-texto {}

.cta-faixa-titulo {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--texto);
  margin-bottom: 10px;
}

.cta-faixa-sub {
  font-size: 1rem;
  color: var(--texto-muted);
}

.cta-faixa-acoes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-faixa-inner { flex-direction: column; text-align: center; }
  .cta-faixa-acoes { justify-content: center; flex-direction: column; }
}


/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--borda);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 52px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--texto-muted);
  line-height: 1.75;
  margin: 18px 0 22px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px; height: 40px;
  background: var(--preto-card);
  border: 1px solid var(--borda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
  color: var(--texto-muted);
}

.social-link:hover {
  background: var(--dourado);
  border-color: var(--dourado);
  color: #000;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--dourado);
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--texto-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--dourado); }

.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contato-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--texto-muted);
  line-height: 1.5;
}

.footer-contato-icon {
  color: var(--dourado);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid var(--borda);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--texto-muted);
}

.footer-oab {
  font-size: 0.8rem;
  color: var(--texto-muted);
}


/* ===================================================
   WHATSAPP FLUTUANTE
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-menu {
  position: absolute;
  bottom: 76px;
  right: 0;
  background: var(--preto-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 250px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92) translateY(8px);
  transform-origin: bottom right;
  transition: all 0.22s ease;
}

.whatsapp-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

.wa-menu-header {
  padding: 8px 10px 10px;
  border-bottom: 1px solid var(--borda);
  margin-bottom: 6px;
}

.wa-menu-title {
  font-size: 0.82rem;
  color: var(--texto);
  font-weight: 600;
}

.wa-menu-sub {
  font-size: 0.73rem;
  color: var(--texto-muted);
  margin-top: 2px;
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--texto);
  transition: background var(--transition);
  cursor: pointer;
}

.wa-option:hover {
  background: rgba(37,211,102,0.1);
  color: #fff;
}

.wa-option-icon { font-size: 1rem; }

.whatsapp-btn {
  width: 62px; height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  transition: all var(--transition);
  border: none;
  position: relative;
  outline: none;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2.2s ease-out infinite;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.2);
  animation: wa-pulse 2.2s ease-out infinite 0.6s;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-btn svg {
  width: 33px; height: 33px;
  fill: white;
  position: relative;
  z-index: 1;
}


/* ===================================================
   MEDIA QUERIES
   =================================================== */
@media (max-width: 1024px) {
  .areas-grid         { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid       { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner        { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 40px; }
  .localizacao-inner  { gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .header-phone { display: none; }
  .logo img { height: 52px; }

  .areas-grid         { grid-template-columns: 1fr; }
  .diferenciais-grid  { grid-template-columns: 1fr; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .sobre-inner        { grid-template-columns: 1fr; }
  .localizacao-inner  { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 36px; }

  .foto-badge  { right: 0; bottom: -24px; }
  .foto-frame::before { display: none; }
  .sobre-foto { padding-bottom: 52px; }

  /* Foto da Dra. Beatriz aparece antes do texto no mobile (consistência) */
  .sobre-inner--reverse .sobre-foto { order: -1; }

  .hero-actions       { flex-direction: column; align-items: stretch; }
  .hero-actions .btn  { justify-content: center; }
  .hero-stats         { gap: 28px; justify-content: space-between; }
  .hero-stat          { text-align: center; }

  .avaliacoes-topo    { flex-direction: column; align-items: flex-start; }
  .sobre-actions      { flex-direction: column; }
  .sobre-actions .btn { justify-content: center; }

  .localizacao-btns .btn  { justify-content: center; }

  .cta-faixa-acoes .btn { width: 100%; justify-content: center; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 768px) {
  .areas-foto img { height: 220px; }
}

@media (max-width: 480px) {
  .container    { padding: 0 16px; }
  section       { padding: 48px 0; }

  .hero         { padding-top: 88px; }
  .hero-title   { font-size: 1.9rem; }
  .hero-scroll  { display: none; }
  .hero-stats   { gap: 20px; }
  .stat-number  { font-size: 1.6rem; }

  .localizacao-mapa { aspect-ratio: 1/1; }

  .foto-badge   { padding: 12px 16px; min-width: 90px; right: 8px; }
  .badge-number { font-size: 1.5rem; }

  .whatsapp-menu { min-width: calc(100vw - 40px); right: 0; }
}
