/* === Beatriz Soares Advocacia — Shared Styles === */

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

/* ===== VARIABLES ===== */
:root {
  --dark:        #1A1A2E;
  --dark-2:      #22223C;
  --dark-3:      #111120;
  --gold:        #C4A35A;
  --gold-dim:    rgba(196,163,90,0.15);
  --gold-border: rgba(196,163,90,0.28);
  --light:       #F5F4F0;
  --white:       #FFFFFF;
  --text:        #2C2C3E;
  --muted:       #6B6B7B;
  --border:      rgba(0,0,0,0.08);
  --fh:  'Playfair Display', Georgia, serif;
  --fb:  'Inter', -apple-system, Arial, sans-serif;
  --radius: 6px;
  --max-w: 1060px;
  --ease: 0.22s ease;
}

/* ===== BASE ===== */
body {
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--fh); line-height: 1.15; color: var(--dark); }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }
section { padding: 80px 0; }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.gold-bar { width: 44px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.gold-bar--center { margin-left: auto; margin-right: auto; }
.section-desc { font-size: 18px; color: var(--muted); line-height: 1.6; margin-bottom: 44px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: #b8923e; box-shadow: 0 4px 16px rgba(196,163,90,0.35); }
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold-border); }
.btn-ghost:hover { background: var(--gold-dim); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ebe5a; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,163,90,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-desktop > li { position: relative; }
.nav-desktop > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-desktop > li > a:hover { color: var(--white); }
.nav-desktop > li > a.active { color: var(--gold); }
.has-dropdown > a::after { content: ' \25BE'; font-size: 10px; opacity: 0.6; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
}
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
}
.nav-dropdown li a:hover { color: var(--gold); background: rgba(196,163,90,0.06); }
.nav-dropdown li a.active { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.80);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* Header CTA */
.header-cta { display: none; flex-shrink: 0; }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(196,163,90,0.10);
  max-height: calc(100vh - 74px);
  overflow-y: auto;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-m-label {
  display: block;
  padding: 16px 24px 4px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.nav-mobile .nav-m-sub {
  padding-left: 40px;
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  background: rgba(0,0,0,0.18);
}
.nav-mobile .nav-m-cta {
  margin: 16px 24px;
  border-bottom: none;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ===== HERO (homepage) ===== */
#hero {
  padding: 112px 0 80px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,163,90,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,163,90,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,163,90,0.35);
  padding: 7px 16px;
  border-radius: 3px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 640px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 52px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.trust-item strong { display: block; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.88); margin-bottom: 2px; }
.trust-item span { font-size: 12px; color: rgba(255,255,255,0.42); letter-spacing: 0.04em; }
.hero-photo-wrap {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196,163,90,0.20);
  background: rgba(255,255,255,0.04);
  aspect-ratio: 4/3;
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 110px 0 72px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,163,90,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,163,90,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 {
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.10;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .hero-sub { margin-bottom: 32px; }

/* ===== AREAS CARDS (homepage) ===== */
#areas { background: var(--dark); color: var(--white); padding-top: 0; padding-bottom: 80px; }
.areas-intro { text-align: center; margin-bottom: 48px; }
.areas-intro h2 { color: var(--white); font-size: clamp(26px, 5vw, 38px); margin-bottom: 12px; }
.areas-intro p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; }
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--ease), border-color var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
}
.area-card:hover { background: rgba(196,163,90,0.07); border-color: rgba(196,163,90,0.45); }
.area-card-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.area-card h3 { font-size: 20px; color: var(--white); margin-bottom: 12px; }
.area-card p { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.65; margin-bottom: 24px; }
.area-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.area-card:hover .area-link { gap: 10px; }

/* ===== SOBRE TEASER (homepage) ===== */
#sobre-teaser { background: var(--light); }
.sobre-grid { display: flex; flex-direction: column; gap: 48px; }
.sobre-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-border); }
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; max-height: 400px; }
.sobre-body h2 { font-size: clamp(26px, 5vw, 38px); margin-bottom: 24px; }
.sobre-body p { font-size: 17px; line-height: 1.78; color: var(--text); margin-bottom: 20px; }
.sobre-body p:last-of-type { margin-bottom: 32px; }

/* ===== COMO FUNCIONA ===== */
#como-funciona { background: var(--white); }
#como-funciona h2 { font-size: clamp(26px, 5vw, 38px); margin-bottom: 10px; }
.steps-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.step { display: flex; gap: 20px; position: relative; }
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 44px; bottom: -1px;
  width: 2px;
  background: var(--gold-border);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-body { padding-bottom: 36px; padding-top: 6px; }
.step-body strong { display: block; font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.step-body p { font-size: 15px; color: var(--muted); line-height: 1.60; margin: 0; }
.cta-box {
  background: var(--light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.cta-box p { font-size: 17px; color: var(--text); line-height: 1.65; margin-bottom: 24px; }
.cta-box .sub-note { font-size: 13px; color: var(--muted); margin-top: 14px; margin-bottom: 0; }

/* ===== PROVA SOCIAL ===== */
#prova { background: var(--light); }
#prova h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 40px; }
.numbers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.num-value { font-family: var(--fh); font-size: 38px; font-weight: 700; color: var(--dark); line-height: 1; }
.num-label { font-size: 14px; color: var(--muted); margin-top: 5px; line-height: 1.4; }
.testimonials-grid { display: flex; flex-direction: column; gap: 16px; }
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.testimonial-body { font-size: 16px; line-height: 1.70; color: var(--text); font-style: italic; margin-bottom: 20px; }
.testimonial-footer { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.testimonial-detail { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testimonial-placeholder-note { font-size: 11px; color: var(--gold); font-style: italic; margin-top: 10px; opacity: 0.70; }

/* ===== DOR ===== */
#dor { background: var(--light); }
#dor h2 { font-size: clamp(26px, 5vw, 38px); margin-bottom: 20px; max-width: 480px; }
.dor-intro { font-size: 18px; line-height: 1.70; margin-bottom: 28px; color: var(--text); }
.dor-list { list-style: none; margin-bottom: 32px; }
.dor-list li {
  font-size: 17px;
  line-height: 1.55;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  color: var(--text);
}
.dor-list li:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.dor-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 24px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.dor-bridge { font-size: 17px; line-height: 1.7; color: var(--muted); font-style: italic; margin-bottom: 20px; }

/* ===== BENEFICIOS ===== */
#beneficios { background: var(--white); }
#beneficios h2 { font-size: clamp(26px, 5vw, 38px); margin-bottom: 10px; }
.ben-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.ben-card {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  transition: box-shadow var(--ease);
}
.ben-card:hover { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.ben-card strong { display: block; font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.ben-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ===== SERVICES LIST (specialty pages) ===== */
#servicos { background: var(--white); }
#servicos h2 { font-size: clamp(26px, 5vw, 38px); margin-bottom: 10px; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 40px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.service-item:hover { border-color: var(--gold-border); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.service-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.service-item-body strong { display: block; font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.service-item-body p { font-size: 13px; color: var(--muted); line-height: 1.50; margin: 0; }

/* ===== SOLUCAO ===== */
#solucao { background: var(--dark); color: var(--white); }
#solucao h2 { color: var(--white); font-size: clamp(26px, 5vw, 40px); margin-bottom: 32px; max-width: 540px; }
.sol-text p { font-size: 18px; line-height: 1.78; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.sol-destaques { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.sol-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,163,90,0.15);
  border-radius: var(--radius);
}
.sol-num { font-family: var(--fh); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; width: 32px; }
.sol-item-body strong { display: block; font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.sol-item-body p { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.55; margin: 0; }

/* ===== OBJECOES ===== */
#objecoes { background: var(--light); }
#objecoes h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 10px; }
.accordion { display: flex; flex-direction: column; gap: 8px; }
details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
details[open] { border-color: rgba(196,163,90,0.32); }
summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  line-height: 1.4;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; margin-top: -2px; transition: transform var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
.acc-body { padding: 4px 24px 24px; font-size: 16px; line-height: 1.72; color: var(--muted); }

/* ===== TRANSPARENCIA ===== */
#transparencia { background: var(--dark); color: var(--white); }
.transp-wrap { max-width: 640px; }
#transparencia h2 { color: var(--white); font-size: clamp(24px, 4vw, 36px); margin-bottom: 28px; }
.transp-lead { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 40px; }
.transp-list { display: flex; flex-direction: column; gap: 16px; }
.transp-item { display: flex; gap: 16px; align-items: flex-start; }
.check-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(196,163,90,0.12);
  border: 1px solid rgba(196,163,90,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-circle svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.transp-item p { font-size: 16px; color: rgba(255,255,255,0.68); line-height: 1.60; margin: 0; }

/* ===== URGENCIA ===== */
#urgencia { background: var(--white); }
#urgencia h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 10px; }
.urgencia-lead { font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 36px; }
.prazos-card {
  background: var(--light);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 28px 28px 24px;
  margin-bottom: 32px;
}
.prazos-card h3 { font-family: var(--fb); font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.prazos-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.prazos-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 16px; line-height: 1.50; color: var(--text); }
.prazo-val { font-family: var(--fh); font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 68px; }
.urgencia-close { font-size: 17px; line-height: 1.72; color: var(--muted); margin-bottom: 36px; }

/* ===== FAQ ===== */
#faq { background: var(--light); }
#faq h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 40px; }

/* ===== CTA FINAL ===== */
#cta-final { background: var(--dark-3); color: var(--white); padding: 96px 0; text-align: center; }
#cta-final h2 { color: var(--white); font-size: clamp(28px, 6vw, 46px); max-width: 540px; margin: 0 auto 20px; }
#cta-final p { font-size: 18px; color: rgba(255,255,255,0.62); max-width: 460px; margin: 0 auto 40px; line-height: 1.65; }
.cta-final-note { font-size: 13px; color: rgba(255,255,255,0.32); margin-top: 16px; }

/* ===== PS ===== */
#ps { background: var(--dark-3); padding: 0 0 64px; }
.ps-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 48px; }
.ps-text { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 600px; margin-bottom: 28px; }
.ps-text strong { color: rgba(255,255,255,0.82); font-weight: 600; }
.ps-sig { font-size: 15px; color: rgba(255,255,255,0.40); line-height: 1.55; }
.ps-sig strong { display: block; font-family: var(--fh); font-size: 17px; color: rgba(255,255,255,0.78); font-weight: 600; margin-bottom: 2px; }

/* ===== SOBRE PAGE ===== */
.bio-section { background: var(--white); }
.bio-layout { display: flex; flex-direction: column; gap: 48px; }
.bio-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-border); flex-shrink: 0; }
.bio-photo img { width: 100%; object-fit: cover; object-position: top; max-height: 520px; }
.bio-text p { font-size: 18px; line-height: 1.80; color: var(--text); margin-bottom: 22px; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-text strong { color: var(--dark); font-weight: 600; }

.valores-section { background: var(--light); }
.valores-section h2 { font-size: clamp(26px, 5vw, 36px); margin-bottom: 36px; }
.valores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.valor-item {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.valor-item strong { font-size: 14px; font-weight: 600; color: var(--dark); display: block; margin-bottom: 2px; }
.valor-item span { font-size: 13px; color: var(--muted); }

.diferenciais-section { background: var(--white); }
.diferenciais-section h2 { font-size: clamp(26px, 5vw, 36px); margin-bottom: 40px; }
.diferenciais-list { display: flex; flex-direction: column; gap: 28px; }
.diferencial-item { display: flex; gap: 20px; align-items: flex-start; }
.dif-num { font-family: var(--fh); font-size: 24px; font-weight: 700; color: var(--gold); flex-shrink: 0; width: 28px; line-height: 1.2; }
.dif-body strong { display: block; font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.dif-body p { font-size: 15px; color: var(--muted); line-height: 1.60; margin: 0; }

/* ===== CONTATO ===== */
#contato { background: var(--light); }
#contato h2 { font-size: clamp(26px, 5vw, 38px); margin-bottom: 10px; }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 36px;
}
.contato-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow var(--ease);
}
a.contato-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.contato-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contato-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.contato-sub {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.contato-redes { display: flex; flex-wrap: wrap; gap: 12px; }
.contato-redes a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color var(--ease), border-color var(--ease);
}
.contato-redes a:hover { color: var(--gold); border-color: var(--gold-border); }
@media (min-width: 768px) {
  .contato-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FOOTER ===== */
footer { background: var(--dark-3); border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 16px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--ease); }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.38); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 640px; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 22px; right: 18px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }
.wa-label { display: none; }

/* ===== RESPONSIVE ===== */
@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .numbers-row { flex-wrap: nowrap; gap: 48px; }
  .wa-label { display: inline; }
}

@media (min-width: 768px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { flex-direction: row; }
  .testimonial { flex: 1; }
  .sol-destaques { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .sol-item { flex: 1; min-width: 200px; }
  .sobre-grid { flex-direction: row; align-items: flex-start; }
  .sobre-photo { width: 340px; flex-shrink: 0; }
  .bio-layout { flex-direction: row; align-items: flex-start; }
  .bio-photo { width: 300px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .diferenciais-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; }
  .valores-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
  .header-cta { display: inline-flex; }

  #hero { padding: 128px 0 96px; }
  .hero-layout { display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: center; }
  .hero-photo-wrap { margin-top: 0; aspect-ratio: 3/4; }
  .ben-grid { grid-template-columns: 1fr 1fr 1fr; }
  .sobre-photo { width: 400px; }
  .bio-photo { width: 340px; }
}
