/* ═══════════════════════════════════════════════
   MÉDICO NO CLIQUE — style.css
   Baseado no layout do meudoutor24horas.com.br
   ═══════════════════════════════════════════════ */

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

:root {
  /* Cores principais */
  --g1: #1b4a30;
  --g2: #21603c;
  --g3: #2d8a55;
  --g4: #145228;
  --gold: #c89020;
  --gold2: #e8b030;
  --goldl: #fef3d4;

  /* Neutros */
  --cream: #f5f0e6;
  --cream2: #ede7d9;
  --white: #ffffff;
  --dark: #111a15;
  --body: #2a3a30;
  --gray: #5a6966;
  --lgray: #e4ede8;
  --bg: #f8faf9;

  /* Social */
  --wp: #25d366;
  --wp2: #1ebe5d;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(27, 74, 48, .07);
  --shadow: 0 4px 24px rgba(27, 74, 48, .10);
  --shadow-md: 0 8px 32px rgba(27, 74, 48, .14);
  --shadow-lg: 0 20px 60px rgba(27, 74, 48, .18);

  /* Raios */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Tipografia */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITÁRIOS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--goldl);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.tag-white {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.tag-green {
  background: rgba(37,211,102,.12);
  color: var(--wp2);
  border: 1px solid rgba(37,211,102,.25);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--g1);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold2); }
.section-title--white { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}
.section-sub--white { color: rgba(255,255,255,.7); }

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  border: none;
  transition: all .25s;
  letter-spacing: .3px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-lg { padding: 16px 36px; font-size: .95rem; }
.btn-xl { padding: 18px 44px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--g1);
  color: #fff;
  box-shadow: 0 8px 28px rgba(27,74,48,.28);
}
.btn-primary:hover { background: var(--g2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(27,74,48,.38); }

.btn-gold {
  background: var(--gold2);
  color: var(--g1);
  box-shadow: 0 8px 28px rgba(232,176,48,.32);
}
.btn-gold:hover { background: var(--gold); transform: translateY(-2px); }

.btn-wp {
  background: var(--wp);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.28);
}
.btn-wp:hover { background: var(--wp2); transform: translateY(-2px); }

.btn-outline-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline-white:hover { background: rgba(255,255,255,.18); }

.btn-outline-dark {
  background: transparent;
  color: var(--g1);
  border: 2px solid var(--lgray);
}
.btn-outline-dark:hover { border-color: var(--g1); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s, box-shadow .3s;
  height: 72px;
  background-color: #1e4832;
}
.navbar.scrolled {
  background: var(--g1);
  box-shadow: 0 2px 20px rgba(0,0,0,.22);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.navbar-logo-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: .3s;
}
.navbar-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1.1;
  transition: .3s;
}
.navbar-logo-sub {
  font-size: .57rem;
  color: var(--gold2);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  transition: .3s;
}

/* Nav links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar-links a {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.navbar-links a:hover { color: #fff; }

/* Nav CTA */
.navbar-cta {
  background: var(--wp);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s;
  flex-shrink: 0;
}
.navbar-cta:hover { background: var(--wp2); }

/* Hamburger */
.navbar-hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 4px;
}
.navbar-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* Light navbar (when hero is light) */
.navbar:not(.scrolled).navbar-light .navbar-logo-icon { background: var(--cream); border-color: var(--lgray); }
.navbar:not(.scrolled).navbar-light .navbar-logo-name { color: var(--g1); }
.navbar:not(.scrolled).navbar-light .navbar-logo-sub { color: var(--gold); }
.navbar:not(.scrolled).navbar-light .navbar-links a { color: var(--gray); }
.navbar:not(.scrolled).navbar-light .navbar-links a:hover { color: var(--g1); }
.navbar:not(.scrolled).navbar-light .navbar-cta { background: var(--g1); color: #fff; }
.navbar:not(.scrolled).navbar-light .navbar-hamburger span { background: var(--g1); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--g1);
  z-index: 300;
  display: flex; flex-direction: column;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
  gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
  transition: color .2s;
}
.mobile-menu-link:hover { color: #fff; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,.1);
  border: none; color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.2); }
.mobile-menu-cta {
  margin-top: 20px;
  border-radius: 50px;
  justify-content: center;
  padding: 15px;
  font-size: .9rem;
}

/* ── HERO CLEAN ── */
.hero-clean {
  background: var(--bg);
  padding-top: 72px;
  position: relative;
}
.hero-clean-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 24px 0;
}

/* Text side */
.hero-clean-text {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
}
.hero-clean-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-clean-brand-icon {
  width: 40px; height: 40px;
  background: var(--g1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-clean-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--g1);
  display: block; line-height: 1.1;
}
.hero-clean-brand-sub {
  font-size: .58rem;
  color: var(--gray);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block; margin-top: 3px;
}
.hero-clean-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-clean-title strong { font-weight: 900; color: var(--g3); font-size: 1.18em; display: inline-block; margin-top: 2px; }

.hero-clean-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero-clean-tags {
  display: flex; gap: 9px; flex-wrap: wrap;
}
.hero-clean-tag {
  display: flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--lgray);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--g1);
  box-shadow: var(--shadow-sm);
}

/* Image side */
.hero-clean-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1144 / 570;
  overflow: hidden;
}
.hero-clean-img-bg {
  position: absolute; inset: 0;
  background: var(--white);
  overflow: hidden;
}
.hero-clean-img-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-image: url('imagem_slide1.jpg');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

/* Mockup do app sobreposto à foto (estilo telemedicina) */
.hero-phone-mock {
  position: absolute;
  left: 52%;
  bottom: -56px;
  transform: translateX(-70px);
  z-index: 6;
  width: 226px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 18px 18px 20px;
  border: 1px solid var(--lgray);
}
.hero-phone-mock-notch {
  width: 44px; height: 5px;
  background: var(--lgray);
  border-radius: 50px;
  margin: 0 auto 16px;
}
.hero-phone-mock-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.hero-phone-mock-icon {
  width: 36px; height: 36px;
  background: var(--g1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-phone-mock-name {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 900;
  color: var(--dark); display: block; line-height: 1.2;
}
.hero-phone-mock-sub {
  font-size: .64rem; color: var(--gray); line-height: 1.3;
  display: block; margin-top: 2px;
}
.hero-phone-mock-doctor {
  width: 64px; height: 64px;
  background: var(--cream);
  border: 1px solid var(--cream2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}
.hero-phone-mock-doctor::after {
  content: '';
  position: absolute; bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  background: var(--wp); border: 2px solid #fff; border-radius: 50%;
}
.hero-phone-mock-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--g1); color: #fff;
  padding: 11px; border-radius: 50px;
  font-family: var(--font-display); font-size: .76rem; font-weight: 800;
  transition: background .2s;
}
.hero-phone-mock-btn:hover { background: var(--g2); }

/* Decorative shapes */
.hero-deco { position: absolute; border-radius: 16px; }
.hero-deco-1 { width: 120px; height: 120px; background: rgba(27,74,48,.08); right: 40px; top: 40px; border-radius: 20px; transform: rotate(8deg); }
.hero-deco-2 { width: 80px; height: 80px; background: rgba(200,144,32,.14); right: 20px; top: 180px; border-radius: 50%; }
.hero-deco-3 { width: 100px; height: 100px; background: rgba(27,74,48,.06); right: 140px; top: 60px; border-radius: 50% 20% 50% 20%; transform: rotate(15deg); }
.hero-deco-4 { width: 60px; height: 60px; background: rgba(232,176,48,.18); right: 100px; bottom: 100px; border-radius: 12px; transform: rotate(-12deg); }

/* Photo placeholder */
.hero-photo-placeholder {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; width: 100%; height: 100%; padding: 40px;
  text-align: center;
}
.hero-photo-placeholder p {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  color: rgba(27,74,48,.3);
  letter-spacing: .5px;
}

/* CTA bar */
.hero-cta-bar {
  background: var(--white);
  border-top: 1px solid var(--lgray);
  box-shadow: 0 -3px 20px rgba(0,0,0,.04);
}
.hero-cta-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 88px; gap: 24px;
}
.hero-cta-bar-label {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: var(--dark);
}
.hero-cta-bar-price {
  display: flex; align-items: center; gap: 7px;
  background: var(--cream);
  border-radius: 50px; padding: 6px 18px;
}
.hero-cta-bar-price span { font-size: .75rem; color: var(--gray); font-weight: 600; }
.hero-cta-bar-price strong {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 900; color: var(--g1);
}
.hero-cta-bar-btn {
  background: var(--gold2); color: var(--g1);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 800;
  display: flex; align-items: center; gap: 9px;
  transition: all .25s; white-space: nowrap;
  box-shadow: 0 6px 24px rgba(232,176,48,.32);
}
.hero-cta-bar-btn:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,176,48,.4); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--g1); padding: 18px 0; }
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.85);
  font-size: .82rem; font-weight: 600;
}
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,.15); }

/* ── BENEFÍCIOS ── */
.beneficios { background: var(--white); }
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.beneficio-card {
  background: var(--cream);
  border: 1px solid var(--cream2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.beneficio-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--g1), var(--g3));
}
.beneficio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.beneficio-icon {
  width: 52px; height: 52px;
  background: var(--g1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.beneficio-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  color: var(--g1); margin-bottom: 10px;
}
.beneficio-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ── COMO FUNCIONA ── */
.como-funciona { background: var(--g1); }
.como-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 48px;
  position: relative;
}
.como-steps::before {
  content: '';
  position: absolute; top: 47px;
  left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, rgba(232,176,48,.1), var(--gold2), rgba(232,176,48,.1));
  z-index: 0;
}
.como-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.como-step-num {
  width: 94px; height: 94px;
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(232,176,48,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 900;
  color: var(--gold2);
  transition: .3s; position: relative;
}
.como-step-num::after {
  content: attr(data-n);
  position: absolute; top: -10px; right: -4px;
  width: 26px; height: 26px;
  background: var(--gold2); border-radius: 50%;
  font-size: .7rem; font-weight: 800; color: var(--g1);
  display: flex; align-items: center; justify-content: center;
}
.como-step:hover .como-step-num { background: rgba(232,176,48,.1); border-color: var(--gold2); }
.como-step h4 { font-family: var(--font-display); font-size: .93rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.como-step p { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.6; }
.como-cta { text-align: center; margin-top: 52px; }

/* ── AVALIAÇÕES ── */
.avaliacoes { background: var(--cream); }
.aval-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 40px;
}
.aval-score {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: var(--r);
  padding: 16px 22px; box-shadow: var(--shadow); flex-shrink: 0;
}
.aval-score-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 900; color: var(--g1); line-height: 1;
}
.aval-stars { display: flex; gap: 2px; }
.aval-star { color: #fbbc04; font-size: 1rem; }
.aval-score-label { font-size: .72rem; color: var(--gray); font-weight: 600; margin-top: 3px; }
.aval-google { display: flex; align-items: center; gap: 5px; margin-top: 4px; }
.aval-google-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 900; color: #fff;
}
.aval-google span { font-size: .7rem; color: var(--gray); font-weight: 600; }

.aval-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aval-card {
  background: var(--white); border-radius: var(--r);
  padding: 22px; box-shadow: var(--shadow); transition: .25s;
}
.aval-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.aval-card-top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.aval-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: .95rem; color: #fff; flex-shrink: 0;
}
.aval-name { font-family: var(--font-display); font-size: .84rem; font-weight: 800; color: var(--dark); display: block; }
.aval-date { font-size: .7rem; color: var(--gray); }
.aval-text { font-size: .84rem; color: var(--body); line-height: 1.6; }
.aval-verified {
  display: flex; align-items: center; gap: 5px;
  margin-top: 10px; font-size: .68rem; color: var(--g3); font-weight: 700;
}

/* ── RECLAME AQUI ── */
.reclame { background: var(--white); }
.reclame-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reclame-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.reclame-stat {
  background: var(--cream); border-radius: var(--r);
  padding: 18px; border-left: 4px solid var(--g1);
}
.reclame-stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--g1); margin-bottom: 3px; }
.reclame-stat-label { font-size: .76rem; color: var(--gray); font-weight: 600; line-height: 1.4; }
.reclame-card {
  background: var(--g1); border-radius: var(--r-lg);
  padding: 30px; color: #fff; display: flex; flex-direction: column; gap: 18px;
}
.reclame-logo-row { display: flex; align-items: center; gap: 14px; }
.reclame-logo-box {
  width: 48px; height: 48px; background: rgba(255,255,255,.1);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .62rem; font-weight: 900;
  color: #fff; text-align: center; line-height: 1.2;
}
.reclame-logo-name { font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: #fff; }
.reclame-logo-sub { font-size: .72rem; color: rgba(255,255,255,.55); }
.reclame-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.reclame-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px; padding: 14px; text-align: center;
}
.reclame-badge-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--gold2); margin-bottom: 2px; }
.reclame-badge-label { font-size: .7rem; color: rgba(255,255,255,.6); }
.reclame-status {
  display: flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.22);
  border-radius: 10px; padding: 11px 15px;
}
.reclame-status-dot { width: 9px; height: 9px; background: var(--wp); border-radius: 50%; flex-shrink: 0; }
.reclame-status-text { font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: #fff; }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%; background: transparent; border: none;
  padding: 17px 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 14px; text-align: left;
}
.faq-question-text {
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 700; color: var(--g1); line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px; background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: .3s; font-size: .88rem; font-weight: 700; color: var(--g1);
}
.faq-item.open .faq-icon { background: var(--g1); color: #fff; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: .86rem; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.faq-cta-box {
  background: var(--g1); border-radius: var(--r-lg);
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
  position: sticky; top: 90px;
}
.faq-cta-box h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; color: #fff; line-height: 1.25; }
.faq-cta-box p { font-size: .87rem; color: rgba(255,255,255,.7); line-height: 1.65; }
.faq-cta-price { display: flex; align-items: baseline; gap: 3px; }
.faq-cta-price sup { font-family: var(--font-display); font-size: .88rem; font-weight: 700; color: var(--gold2); }
.faq-cta-price big { font-family: var(--font-display); font-size: 2.1rem; font-weight: 900; color: var(--gold2); }
.faq-cta-price sub { font-size: .95rem; font-weight: 700; color: var(--gold2); }
.faq-cta-label { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: -6px; }
.faq-cta-items { display: flex; flex-direction: column; gap: 8px; }
.faq-cta-item { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: rgba(255,255,255,.8); }

/* ── SOBRE NÓS ── */
.sobre { background: var(--g1); }
.sobre-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-items { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.sobre-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 16px;
}
.sobre-item-icon {
  width: 38px; height: 38px;
  background: rgba(232,176,48,.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sobre-item h4 { font-family: var(--font-display); font-size: .88rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.sobre-item p { font-size: .8rem; color: rgba(255,255,255,.62); line-height: 1.55; }
.sobre-img-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1024 / 683; position: relative;
}
.sobre-img-card img { width: 100%; height: 100%; object-fit: contain; }
.sobre-float {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--white); border-radius: var(--r);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px;
}
.sobre-float-icon {
  width: 40px; height: 40px; background: #dcfce7;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.sobre-float b { font-family: var(--font-display); font-size: .8rem; font-weight: 800; color: var(--g1); display: block; }
.sobre-float span { font-size: .7rem; color: var(--gray); }

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--g4), var(--g1));
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-final-inner { text-align: center; position: relative; z-index: 1; }
.cta-final-inner h2 {
  font-family: var(--font-display);
  font-size: 2.7rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 14px;
}
.cta-final-inner h2 em { color: var(--gold2); font-style: normal; display: block; }
.cta-final-inner p { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 480px; margin: 0 auto 34px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px; padding-top: 38px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cta-stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; color: var(--gold2); }
.cta-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 3px; }

/* ── FOOTER ── */
footer { background: #0d2316; padding: 60px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: #fff; }
.footer-brand-desc { font-size: .82rem; color: rgba(255,255,255,.48); line-height: 1.65; margin-top: 10px; max-width: 250px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 800;
  color: rgba(255,255,255,.42);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .83rem; color: rgba(255,255,255,.58); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: .8rem; color: rgba(255,255,255,.52); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.3); }
.footer-policies { display: flex; gap: 18px; }
.footer-policies a { font-size: .73rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-policies a:hover { color: rgba(255,255,255,.8); }

/* ── BOTÃO FLUTUANTE WHATSAPP ── */
.wp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 100;
  width: 56px; height: 56px;
  background: var(--wp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.42); transition: all .3s;
}
.wp-float:hover { transform: scale(1.1); background: var(--wp2); }
.wp-float-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--wp); opacity: .4;
  animation: wpPulse 2.5s infinite;
}
@keyframes wpPulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ── ANIMAÇÕES GERAIS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeInUp .5s ease both; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media(max-width: 1024px) {
  .hero-clean-title { font-size: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media(max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-hamburger { display: block; }

  .hero-clean-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-clean-text { padding: 44px 0 28px; }
  .hero-clean-img { width: 100vw; margin-left: calc(-50vw + 50%); }
  .hero-phone-mock { left: 50%; transform: translateX(-50%); bottom: -44px; width: 200px; }

  .beneficios-grid { grid-template-columns: 1fr 1fr; }
  .como-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .como-steps::before { display: none; }
  .aval-grid { grid-template-columns: 1fr 1fr; }
  .aval-header { flex-direction: column; align-items: flex-start; }
  .reclame-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-cta-box { position: static; }
  .sobre-layout { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-card { display: none; }
  .cta-final-inner h2 { font-size: 2.2rem; }
}

@media(max-width: 640px) {
  .section { padding: 52px 0; }
  .section-title { font-size: 1.6rem; }
  .container { padding: 0 16px; }

  /* Navbar */
  .navbar { height: 58px; }
  .navbar-inner { height: 58px; }
  .navbar-logo-icon { width: 36px; height: 36px; border-radius: 9px; }
  .navbar-logo-name { font-size: .9rem; }
  .navbar-logo-sub { display: none; }
  .navbar-cta { padding: 8px 14px; font-size: .76rem; }

  /* Hero mobile — igual ao meudoutor24horas.com.br */
  .hero-clean { padding-top: 58px; }
  .hero-clean-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-clean-text { order: 1; padding: 28px 0 20px; text-align: center; }
  .hero-clean-brand { justify-content: center; margin-bottom: 18px; }
  .hero-clean-brand-name { font-size: 1.05rem; }
  .hero-clean-title { font-size: 1.75rem; line-height: 1.15; margin-bottom: 12px; }
  .hero-clean-title br { display: none; }
  .hero-clean-sub { font-size: .9rem; margin-bottom: 18px; }
  .hero-clean-sub br { display: none; }
  .hero-clean-tags {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding-bottom: 4px; gap: 7px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .hero-clean-tags::-webkit-scrollbar { display: none; }
  .hero-clean-tag { font-size: .72rem; padding: 6px 11px; flex-shrink: 0; }
  .hero-clean-img { order: 2; width: 100vw; margin-left: calc(-50vw + 50%); border-radius: 0; }
  .hero-phone-mock {
    left: 50%; transform: translateX(-50%); bottom: -34px;
    width: 180px; padding: 14px 14px 16px;
  }
  .hero-phone-mock-notch { margin-bottom: 12px; }
  .hero-phone-mock-header { margin-bottom: 12px; }
  .hero-phone-mock-doctor { width: 52px; height: 52px; margin-bottom: 12px; }

  /* CTA bar mobile */
  .hero-cta-bar-inner { flex-direction: column; height: auto; padding: 34px 0 18px; gap: 12px; text-align: center; }
  .hero-cta-bar-label { font-size: .92rem; }
  .hero-cta-bar-btn { width: 100%; justify-content: center; padding: 14px; font-size: .88rem; }

  /* Trust bar */
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 14px; }
  .trust-item { font-size: .75rem; }

  /* Seções */
  .beneficios-grid { grid-template-columns: 1fr; }
  .como-steps { grid-template-columns: 1fr; gap: 24px; }
  .aval-grid { grid-template-columns: 1fr; }
  .reclame-stats { grid-template-columns: 1fr 1fr; }
  .cta-final-inner h2 { font-size: 1.7rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-stats { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* WP float */
  .wp-float { bottom: 18px; right: 14px; width: 50px; height: 50px; }
}

@media(max-width: 380px) {
  .hero-clean-title { font-size: 1.5rem; }
  .como-step-num { width: 80px; height: 80px; font-size: 1.6rem; }
}
