/* ════════════════════════════════════════════════════════════════
   Clínica Médica — assets/css/style.css
   Design: clean · trustworthy · professional
   Tema: branco/azul médico + teal saúde
════════════════════════════════════════════════════════════════ */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  /* Cores */
  --blue:         #1867B4;
  --blue-dark:    #0D4F8E;
  --blue-mid:     #2A7DCF;
  --blue-light:   #EBF3FC;
  --blue-xlight:  #F4F8FE;

  --teal:         #0E9E8E;
  --teal-dark:    #0A7A6C;
  --teal-light:   #E8F7F5;

  --green-wa:     #25D366;

  --bg:           #F4F8FD;
  --bg-white:     #FFFFFF;
  --bg-alt:       #EBF0F7;

  --dark:         #0B1F3A;
  --text:         #2D3E50;
  --text-muted:   #6B7A8D;
  --text-light:   #9AA8B6;

  --border:       rgba(11,31,58,0.10);
  --border-light: rgba(11,31,58,0.06);

  --white:        #FFFFFF;
  --radius-sm:    .45rem;
  --radius:       .75rem;
  --radius-lg:    1.25rem;
  --radius-xl:    2rem;

  --shadow-sm:    0 1px 4px rgba(11,31,58,0.07);
  --shadow:       0 4px 18px rgba(11,31,58,0.09);
  --shadow-lg:    0 10px 36px rgba(11,31,58,0.13);
  --shadow-blue:  0 6px 24px rgba(24,103,180,0.22);

  --font-serif:   'Merriweather', Georgia, serif;
  --font-sans:    'Lato', system-ui, sans-serif;

  --nav-h:        76px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 8px); }
body  { font-family: var(--font-sans); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button, select { font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── UTILITÁRIOS ───────────────────────────────────────────── */
.hidden     { display: none !important; }
.container  { max-width: 1180px; margin: 0 auto; padding: 0 5%; }

/* ── TIPOGRAFIA GLOBAL ─────────────────────────────────────── */
.section-label {
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: .75rem;
  display: flex; align-items: center; gap: .75rem;
}
.section-label::before {
  content: ''; width: 28px; height: 2px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 700;
}
.section-title em { font-style: italic; color: var(--blue); }

.section-desc {
  color: var(--text-muted); max-width: 600px; margin-top: .9rem;
  font-size: 1rem; line-height: 1.7;
}

/* ── BOTÕES GLOBAIS ────────────────────────────────────────── */
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: .85rem 2rem; border-radius: var(--radius-xl);
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; border: 2px solid var(--blue);
  transition: background .22s, border-color .22s, transform .16s;
  display: inline-flex; align-items: center; gap: .55rem;
  cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--blue);
  padding: .85rem 2rem; border-radius: var(--radius-xl);
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; border: 2px solid var(--blue);
  transition: all .22s; display: inline-flex; align-items: center; gap: .55rem;
  cursor: pointer;
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }

.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(11,31,58,0.10); }

.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }

.nav-logo-text {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  color: var(--dark); line-height: 1.1;
}
.nav-logo-dr { color: var(--blue); }

/* Links */
.nav-links {
  display: flex; gap: 2.2rem; align-items: center;
}
.nav-links a {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 700; transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: .9rem; }

.btn-nav-cta {
  background: var(--blue); color: var(--white);
  padding: .55rem 1.3rem; border-radius: var(--radius-xl);
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 700; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: background .2s, transform .16s;
  text-decoration: none; white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ─────────────────────────────────────────── */
.nav-mobile-overlay {
  position: fixed; inset: 0; background: rgba(11,31,58,.45);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: auto; }

.nav-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--white); z-index: 310;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; padding: 1.5rem;
  box-shadow: -4px 0 30px rgba(11,31,58,0.15);
}
.nav-mobile-panel.open { transform: translateX(0); }

.nav-mobile-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.nav-mobile-close {
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--text-muted); line-height: 1; padding: .2rem .4rem;
}

.nav-mobile-links { display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.nav-mobile-links a {
  display: block; padding: .75rem .5rem;
  font-size: .88rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text);
  border-radius: var(--radius-sm); transition: background .18s, color .18s;
}
.nav-mobile-links a:hover { background: var(--blue-xlight); color: var(--blue); }

.nav-mobile-cta { margin-top: auto; text-align: center; justify-content: center; }

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
#hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  padding-left: 5%; padding-right: 5%;
  background: linear-gradient(135deg, #F0F6FF 0%, #FAFCFF 60%, #F4FAF8 100%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,103,180,.07) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,158,142,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue-light); color: var(--blue);
  padding: .4rem .9rem; border-radius: var(--radius-xl);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 1.4rem;
  border: 1px solid rgba(24,103,180,.15);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.15; color: var(--dark); font-weight: 900;
  margin-bottom: 1.2rem;
}
.hero-title em { font-style: italic; color: var(--blue); }

.hero-desc {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.75;
  max-width: 480px; margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--blue); line-height: 1.1;
}
.hero-stat-label { font-size: .72rem; color: var(--text-muted); font-weight: 600; margin-top: .2rem; }
.hero-stat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Hero right — foto */
.hero-right { display: flex; justify-content: center; align-items: center; }

.hero-photo-wrap { position: relative; display: inline-flex; }

.hero-photo-placeholder {
  width: 420px; height: 500px; max-width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--blue-light) 0%, #D8EBF8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--blue); border: 2px dashed rgba(24,103,180,.25);
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
}

/* Usar esta classe quando tiver foto real */
.hero-photo {
  width: 420px; height: 500px; max-width: 100%;
  border-radius: var(--radius-lg); object-fit: cover; object-position: top center;
  box-shadow: var(--shadow-lg);
}

.hero-badge-float {
  position: absolute; background: var(--white); border-radius: var(--radius-xl);
  padding: .55rem 1rem; font-size: .75rem; font-weight: 700;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .4rem;
  white-space: nowrap;
}
.hero-badge-float--crm {
  top: 1.5rem; left: -1.5rem;
  color: var(--teal); border: 1px solid rgba(14,158,142,.2);
}
.hero-badge-float--crm svg { stroke: var(--teal); }
.hero-badge-float--star {
  bottom: 2rem; right: -1.5rem;
  color: #F59E0B; border: 1px solid rgba(245,158,11,.2);
  font-size: .8rem;
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════════════════ */
#trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.75rem 5%;
}
.trust-bar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2rem 3rem;
}
.trust-item { display: flex; align-items: center; gap: .85rem; }
.trust-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--blue-xlight); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { stroke: var(--blue); }
.trust-title { font-weight: 700; font-size: .88rem; color: var(--dark); }
.trust-sub   { font-size: .76rem; color: var(--text-muted); margin-top: .1rem; }
.trust-sep   { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════════════════════════════ */
#servicos {
  padding: 6rem 0;
  background: var(--bg);
}
#servicos .container { text-align: center; }
#servicos .section-title { margin: 0 auto; }
#servicos .section-desc  { margin: .75rem auto 3.5rem; }
#servicos .section-label { justify-content: center; }
#servicos .section-label::before { display: none; }
#servicos .section-label::after  {
  content: ''; width: 28px; height: 2px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}

.servicos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  text-align: left; margin-top: 3rem;
}

.servico-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--border-light);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex; flex-direction: column; gap: .75rem;
}
.servico-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(24,103,180,.15);
}

.servico-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: .25rem;
}
.servico-icon--blue { background: var(--blue-light); }
.servico-icon--blue svg { stroke: var(--blue); }
.servico-icon--teal { background: var(--teal-light); }
.servico-icon--teal svg { stroke: var(--teal); }

.servico-title {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700;
  color: var(--dark); line-height: 1.3;
}

.servico-desc {
  font-size: .87rem; color: var(--text-muted); line-height: 1.65; flex: 1;
}

.servico-link {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: .3rem;
  transition: gap .18s; text-decoration: none; margin-top: .25rem;
}
.servico-link:hover { gap: .6rem; color: var(--blue-dark); }

/* ════════════════════════════════════════════════════════════════
   SOBRE
════════════════════════════════════════════════════════════════ */
#sobre {
  padding: 6rem 0;
  background: var(--white);
}

.sobre-grid {
  display: grid; grid-template-columns: 440px 1fr; gap: 5rem; align-items: start;
}

/* Coluna foto */
.sobre-photo-col { display: flex; flex-direction: column; gap: 1.5rem; }

.sobre-photo-wrap { position: relative; }

.sobre-photo-placeholder {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--blue-xlight) 0%, #D0E8FA 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; color: var(--blue); border: 2px dashed rgba(24,103,180,.2);
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  text-align: center;
}

/* Classe para foto real */
.sobre-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

.sobre-crm-badge {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius-xl);
  padding: .5rem 1.25rem; font-size: .75rem; font-weight: 700;
  color: var(--blue); box-shadow: var(--shadow);
  border: 1px solid rgba(24,103,180,.18); white-space: nowrap;
}

.sobre-photo-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.sobre-stat {
  background: var(--bg); border-radius: var(--radius);
  padding: 1rem .75rem; text-align: center;
  border: 1px solid var(--border-light);
}
.sobre-stat-num {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.sobre-stat-label {
  font-size: .68rem; color: var(--text-muted); margin-top: .3rem;
  font-weight: 600; line-height: 1.35;
}

/* Coluna texto */
.sobre-text-col {}
.sobre-p {
  color: var(--text); font-size: .97rem; line-height: 1.8;
  margin-bottom: 1.1rem;
}
.sobre-p strong { color: var(--dark); font-weight: 700; }

.sobre-formacao {
  margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.sobre-form-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .9rem 1rem; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--border-light);
}
.sobre-form-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; }
.sobre-form-title {
  font-weight: 700; font-size: .88rem; color: var(--dark); margin-bottom: .2rem;
}
.sobre-form-sub { font-size: .78rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════════════════════════════ */
#depoimentos {
  padding: 6rem 0;
  background: var(--bg);
}
#depoimentos .container { text-align: center; }
#depoimentos .section-label { justify-content: center; }
#depoimentos .section-label::before { display: none; }
#depoimentos .section-label::after {
  content: ''; width: 28px; height: 2px; background: var(--teal); border-radius: 2px;
}

.dep-carousel-wrap { overflow: hidden; margin: 3rem -1.5% 0; }

.dep-carousel-track {
  display: flex; gap: 1.5rem;
  transition: transform .45s cubic-bezier(.35,.8,.45,1);
  padding: 0 1.5%;
}

.dep-card {
  min-width: calc(33.333% - 1rem); flex-shrink: 0;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; text-align: left;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .85rem;
}

.dep-stars { color: #F59E0B; font-size: 1rem; letter-spacing: .15em; }

.dep-text {
  font-size: .9rem; color: var(--text); line-height: 1.72; font-style: italic;
  flex: 1;
}

.dep-author { display: flex; align-items: center; gap: .75rem; }
.dep-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.dep-name { font-weight: 700; font-size: .88rem; color: var(--dark); }
.dep-loc  { font-size: .75rem; color: var(--text-muted); }

.dep-controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2rem;
}
.dep-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  cursor: pointer; font-size: 1.1rem; color: var(--text-muted);
  transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.dep-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.dep-dots { display: flex; gap: .45rem; }
.dep-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all .2s;
}
.dep-dot.active {
  background: var(--blue); width: 20px; border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
#faq {
  padding: 6rem 0;
  background: var(--white);
}

.faq-grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: start;
}

.faq-desc {
  color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-top: .75rem;
}

.faq-right { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg);
  transition: border-color .2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--blue); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 1.4rem;
  background: none; border: none; cursor: pointer;
  font-size: .92rem; font-weight: 700; color: var(--dark);
  text-align: left; transition: color .2s;
}
.faq-question:hover { color: var(--blue); }

.faq-chevron {
  flex-shrink: 0; stroke: currentColor;
  transition: transform .3s; transform: rotate(0deg);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 1.4rem;
}
.faq-answer.open {
  max-height: 300px; padding: 0 1.4rem 1.25rem;
}
.faq-answer p { font-size: .9rem; color: var(--text-muted); line-height: 1.72; }

/* ════════════════════════════════════════════════════════════════
   CONTATO
════════════════════════════════════════════════════════════════ */
#contato {
  padding: 6rem 0;
  background: linear-gradient(160deg, #F0F5FE 0%, #F8FAF7 100%);
}

.contato-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
}

.contato-intro {
  color: var(--text-muted); font-size: .95rem; line-height: 1.7;
  margin-top: .75rem; margin-bottom: 2rem;
}

.contato-cards { display: flex; flex-direction: column; gap: .85rem; }

.contato-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border-light);
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .18s;
}
.contato-card:not(.contato-card--static):hover {
  border-color: rgba(24,103,180,.25); box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.contato-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contato-card-icon--green { background: rgba(37,211,102,.12); color: var(--green-wa); }
.contato-card-icon--green svg { stroke: var(--green-wa); }
.contato-card-icon--blue  { background: var(--blue-light); color: var(--blue); }
.contato-card-icon--blue  svg { stroke: var(--blue); }

.contato-card-title { font-weight: 700; font-size: .82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; }
.contato-card-val   { font-weight: 700; font-size: .92rem; color: var(--dark); }
.contato-card-sub   { font-size: .76rem; color: var(--text-muted); margin-top: .15rem; }

.contato-arrow {
  margin-left: auto; font-size: 1rem; color: var(--text-light); flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.contato-card:hover .contato-arrow { transform: translateX(3px); color: var(--blue); }

/* Form */
.contato-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.contato-form-header { margin-bottom: 1.75rem; }
.contato-form-title {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  color: var(--dark); margin-bottom: .4rem;
}
.contato-form-sub { font-size: .85rem; color: var(--text-muted); }

.contato-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: .9rem; outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(24,103,180,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 100px; }

.cf-feedback {
  padding: .75rem 1rem; border-radius: var(--radius); font-size: .86rem; font-weight: 600;
}
.cf-feedback--ok  { background: rgba(14,158,142,.1); color: var(--teal-dark); border: 1px solid rgba(14,158,142,.25); }
.cf-feedback--err { background: rgba(220,38,38,.08);  color: #DC2626; border: 1px solid rgba(220,38,38,.2); }

.contato-privacy {
  font-size: .72rem; color: var(--text-light); text-align: center; margin-top: -.25rem;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4.5rem 5% 0;
}

.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo-text {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: .9rem;
}
.footer-logo-dr { color: var(--blue-mid); }

.footer-desc { font-size: .83rem; line-height: 1.7; max-width: 280px; }

.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .2s;
}
.footer-social-link:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.footer-nav-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a {
  font-size: .83rem; color: rgba(255,255,255,.55); transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between; align-items: center;
  font-size: .76rem; color: rgba(255,255,255,.35);
}
.footer-disclaimer { font-style: italic; }

/* ════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

/* ════════════════════════════════════════════════════════════════
   TOAST
════════════════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--teal); color: var(--white);
  padding: .75rem 1.5rem; border-radius: var(--radius-xl);
  font-size: .85rem; font-weight: 700; z-index: 900;
  opacity: 0; transition: opacity .3s, transform .3s;
  pointer-events: none; white-space: nowrap; max-width: 90vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVIDADE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content   { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-title     { font-size: clamp(2rem, 5vw, 3rem); }
  .hero-desc      { max-width: none; }
  .hero-ctas      { justify-content: center; }
  .hero-stats     { justify-content: center; }
  .hero-right     { display: none; }

  .sobre-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-photo-col { max-width: 400px; margin: 0 auto; }

  .faq-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .faq-left .btn-outline { display: inline-flex; }

  .contato-grid   { grid-template-columns: 1fr; gap: 3rem; }

  .servicos-grid  { grid-template-columns: repeat(2, 1fr); }

  .footer-grid    { grid-template-columns: 1fr 1fr; }

  .dep-card       { min-width: calc(50% - .75rem); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links    { display: none; }
  .btn-nav-cta  { display: none; }
  .nav-hamburger { display: flex; }

  #hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 4rem; }

  .trust-bar-inner { gap: 1.25rem 2rem; }
  .trust-sep       { display: none; }

  .servicos-grid { grid-template-columns: 1fr; }

  .sobre-photo-stats { grid-template-columns: repeat(3, 1fr); }

  .dep-card { min-width: calc(100% - 0px); }

  .form-row { grid-template-columns: 1fr; }

  .contato-form-wrap { padding: 1.75rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  #hero { padding-left: 4%; padding-right: 4%; }
  .section-title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .hero-title    { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { justify-content: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .sobre-photo-stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .sobre-stat-num { font-size: 1.2rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}
