:root {
  --primary: #102a43;
  --primary-2: #0f3a5f;
  --accent: #17b26a;
  --accent-dark: #079455;
  --gold: #f4b740;
  --bg: #f7fbff;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --border: #d9e2ec;
  --danger: #d92d20;
  --warning: #f79009;
  --shadow: 0 24px 70px rgba(16, 42, 67, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.top-strip {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 255, 0.86);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.85);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--primary-2));
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(23, 178, 106, 0.24);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover {
  color: var(--primary);
}

.nav-cta {
  color: #fff !important;
  background: var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(23, 178, 106, 0.25);
}

.mobile-menu {
  display: none;
  border: 0;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 72px) 70px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -140px;
  background: radial-gradient(circle, rgba(23, 178, 106, 0.18), transparent 70%);
  z-index: -1;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  background: #e7f8ef;
  border: 1px solid #b8eccf;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(23, 178, 106, 0.16);
}

.hero h1 {
  color: var(--primary);
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin: 22px 0 22px;
}

.hero p,
.section-heading p,
.simulator-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 18px 36px rgba(23, 178, 106, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 18px;
  padding: 16px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--primary);
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 226, 236, 0.9);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 24px;
}

.main-card {
  position: absolute;
  inset: 42px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-top {
  display: flex;
  gap: 8px;
}

.mockup-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}

.quote-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.quote-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.quote-card small,
.quote-card strong {
  display: block;
}

.quote-card small {
  opacity: 0.75;
}

.quote-card strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.mini-grid,
.lead-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-grid div,
.lead-preview-grid div {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.mini-grid span,
.lead-preview-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.progress-line,
.progress-track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e6eef8;
}

.progress-line span,
.progress-track span {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.mockup-note {
  color: var(--muted);
  margin: 0;
}

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(16, 42, 67, 0.12);
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 900;
  color: var(--primary);
}

.card-a { top: 20px; right: 0; }
.card-b { bottom: 58px; left: 0; }
.card-c { top: 240px; left: -8px; }

.logos-strip {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.logos-strip strong {
  color: var(--primary);
}

.section,
.simulator-section,
.final-cta {
  padding: 82px clamp(20px, 5vw, 72px);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading.left {
  text-align: left;
  margin: 0;
}

.section-heading span {
  color: var(--accent-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-heading h2,
.simulator-copy h2,
.final-cta h2 {
  color: var(--primary);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 12px 0;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 44px rgba(16, 42, 67, 0.06);
  transition: 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.featured-card {
  border-color: rgba(23, 178, 106, 0.5);
  background: linear-gradient(180deg, #fff, #f0fff7);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #eef6ff;
  border-radius: 16px;
  font-size: 24px;
}

.info-card h3 {
  color: var(--primary);
  margin: 22px 0 10px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.timeline-item > strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
}

.timeline-item h3 {
  margin: 0 0 8px;
  color: var(--primary);
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.simulator-section {
  background: linear-gradient(135deg, var(--primary), #0a2239);
}

.simulator-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.simulator-copy {
  color: #fff;
  position: sticky;
  top: 110px;
}

.simulator-copy h2 {
  color: #fff;
}

.simulator-copy p,
.simulator-copy li {
  color: rgba(255, 255, 255, 0.75);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.benefit-list li::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.lead-form {
  background: #fff;
  border-radius: 34px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.progress-text {
  display: flex;
  justify-content: space-between;
  color: var(--primary);
  margin-bottom: 10px;
}

.form-step {
  display: none;
  min-height: 330px;
  padding-top: 28px;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  color: var(--primary);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-grid label {
  cursor: pointer;
}

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--primary);
  font-weight: 800;
  background: #fff;
  transition: 0.2s ease;
}

.option-grid input:checked + span {
  border-color: var(--accent);
  background: #e7f8ef;
  box-shadow: 0 0 0 4px rgba(23, 178, 106, 0.12);
}

.field-label {
  display: block;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 8px;
}

.text-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  outline: 0;
  color: var(--primary);
  background: #fff;
  transition: 0.2s ease;
}

.text-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(23, 178, 106, 0.12);
}

.hint {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.two-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.consent-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.consent-box input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-actions {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.form-error {
  display: none;
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 14px;
  color: #fff;
  background: var(--danger);
  font-weight: 700;
}

.form-error.show {
  display: block;
}

.hidden {
  display: none !important;
}

.dark-section {
  background: #0b2239;
  color: #fff;
}

.dark-section .section-heading h2,
.dark-section .section-heading p {
  color: #fff;
}

.lead-preview {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  color: var(--text);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.lead-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.lead-preview-header strong {
  color: var(--primary);
  font-size: 26px;
}

.temp {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.temp.hot,
.temp.Quente { background: #ffe7e1; color: #b42318; }
.temp.warm,
.temp.Morno { background: #fff3cd; color: #b54708; }
.temp.cold,
.temp.Frio { background: #e6f0ff; color: #175cd3; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--primary);
}

.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  text-align: center;
  background: radial-gradient(circle at center, #e7f8ef, var(--bg));
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 40px clamp(20px, 5vw, 72px);
  background: var(--primary);
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer > div:last-child {
  display: grid;
  gap: 8px;
}

.footer-brand {
  margin-bottom: 14px;
}

body.thanks-page,
body.admin-page,
body.policy-page {
  min-height: 100vh;
}

.simple-page {
  max-width: 940px;
  margin: 0 auto;
  padding: 70px 20px;
}

.simple-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.simple-card h1 {
  color: var(--primary);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.simple-card p,
.simple-card li {
  color: var(--muted);
  line-height: 1.75;
}

.admin-layout {
  padding: 32px clamp(16px, 4vw, 48px) 60px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.admin-header h1 {
  margin: 0;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.admin-login,
.admin-filters,
.admin-summary,
.leads-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(16, 42, 67, 0.06);
  margin-bottom: 18px;
}

.admin-login {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

.admin-login > div {
  flex: 1 1 260px;
}

.admin-filters {
  display: grid;
  grid-template-columns: 1fr repeat(3, 190px) auto;
  gap: 12px;
  align-items: end;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.summary-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.summary-card span {
  color: var(--muted);
  font-size: 13px;
}

.summary-card strong {
  display: block;
  color: var(--primary);
  font-size: 30px;
  margin-top: 6px;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
}

.leads-table th,
.leads-table td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.leads-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.small-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 800;
  color: var(--primary);
}

.small-btn.success {
  background: #e7f8ef;
  color: var(--accent-dark);
  border-color: #b8eccf;
}

.small-btn.danger {
  background: #ffe7e1;
  color: var(--danger);
  border-color: #ffd3cb;
}

.status-select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  width: 150px;
}

@media (max-width: 1000px) {
  .hero,
  .split,
  .simulator-shell {
    grid-template-columns: 1fr;
  }

  .cards-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 460px;
  }

  .simulator-copy {
    position: static;
  }

  .admin-filters,
  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .top-strip {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .mobile-menu {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .trust-row,
  .cards-grid.four,
  .option-grid,
  .two-fields,
  .mini-grid,
  .lead-preview-grid,
  .admin-filters,
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .main-card {
    inset: 30px 0 0 0;
  }

  .card-a,
  .card-b,
  .card-c {
    display: none;
  }

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

  .lead-preview-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .leads-table-wrap {
    overflow-x: auto;
  }

  .leads-table {
    min-width: 900px;
  }
}

/* Azevedo Saúde customização visual */
:root {
  --primary: #06437a;
  --primary-2: #0063ad;
  --accent: #0aa653;
  --accent-dark: #078a46;
  --gold: #f5b642;
  --bg: #f5fbff;
  --surface: #ffffff;
  --text: #15324a;
  --muted: #5d6f80;
  --border: #d9e8f2;
  --shadow: 0 24px 70px rgba(6, 67, 122, 0.14);
}

.azevedo-strip {
  background: linear-gradient(90deg, #06437a, #0063ad 48%, #0aa653);
}

.azevedo-strip a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.azevedo-header {
  background: rgba(255, 255, 255, 0.9);
}

.brand-image img {
  width: 154px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-brand img,
.azevedo-footer .brand-image img {
  width: 136px;
  height: 72px;
}

.whatsapp-cta,
.nav-cta.whatsapp-cta {
  background: linear-gradient(135deg, #0aa653, #078a46);
  color: #fff !important;
}

.azevedo-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  padding-top: clamp(42px, 6vw, 74px);
  background:
    radial-gradient(circle at 5% 12%, rgba(10,166,83,.12), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(0,99,173,.14), transparent 28%),
    linear-gradient(180deg, #fff, #f4fbff);
}

.azevedo-hero h1 {
  max-width: 760px;
}

.azevedo-hero h1::first-letter {
  color: var(--primary);
}

.image-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
}

.family-photo-card {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 232, 242, .9);
  background: #fff;
}

.family-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.family-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(6, 67, 122, .78));
  pointer-events: none;
}

.photo-badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  padding: 18px 20px;
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge strong { color: var(--primary); font-size: 22px; }
.photo-badge span { color: var(--accent-dark); font-weight: 800; margin-top: 4px; }

.lead-mini-card {
  position: absolute;
  right: -8px;
  top: 56px;
  width: 290px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 232, 242, .95);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 70px rgba(6,67,122,.20);
}

.lead-mini-card span,
.lead-mini-card strong {
  display: block;
}

.lead-mini-card span { color: var(--primary); font-weight: 900; }
.lead-mini-card strong { color: var(--accent-dark); font-size: 24px; line-height: 1.05; margin: 4px 0 16px; }

.mini-fields {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}

.mini-fields i {
  font-style: normal;
  color: var(--muted);
  background: #f3f8fc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
}

.operator-strip {
  background: #fff;
}

.visual-section {
  background: linear-gradient(180deg, #fff, #f5fbff);
}

.plan-cards .info-card {
  padding: 0;
  overflow: hidden;
}

.plan-card .plan-image {
  height: 146px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, rgba(0,99,173,.9), rgba(10,166,83,.88));
  display: grid;
  place-items: center;
}

.plan-card .plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-card > .icon-box,
.plan-card > h3,
.plan-card > p,
.plan-card > a {
  margin-left: 26px;
  margin-right: 26px;
}

.plan-card > .icon-box { margin-top: -26px; position: relative; z-index: 2; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(6,67,122,.12); }
.plan-card > a { display: inline-block; margin-bottom: 28px; }

.dental-visual {
  color: #fff;
  font-size: 58px;
}

.soft-split {
  background: #fff;
}

.contact-card {
  margin-top: 24px;
  background: linear-gradient(135deg, #eef8ff, #edfff5);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 4px;
  color: var(--primary);
}

.contact-card strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-dark); }
.contact-card span { font-size: 24px; font-weight: 900; }
.contact-card a { color: var(--primary-2); font-weight: 900; }

.azevedo-simulator {
  background:
    radial-gradient(circle at 12% 10%, rgba(10,166,83,.24), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(0,99,173,.26), transparent 28%),
    linear-gradient(135deg, #063b70, #022845);
}

.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-card strong { color: #f5b642; letter-spacing: .08em; }
.testimonial-card span { color: var(--accent-dark); font-weight: 900; }
.center-actions { justify-content: center; }

.azevedo-footer {
  background: linear-gradient(90deg, #053867, #06437a 62%, #067840);
}

@media (max-width: 1120px) {
  .lead-mini-card { right: 14px; }
}

@media (max-width: 1000px) {
  .azevedo-hero { grid-template-columns: 1fr; }
  .image-hero { min-height: auto; }
  .family-photo-card { min-height: 420px; }
  .family-photo-card img { min-height: 420px; }
  .lead-mini-card { position: relative; right: auto; top: auto; width: 100%; margin-top: -36px; z-index: 3; }
  .cards-grid.three { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .brand-image img { width: 124px; height: 58px; }
  .nav { top: 92px; }
  .azevedo-hero h1 { font-size: 40px; line-height: 1; }
  .family-photo-card { min-height: 320px; border-radius: 28px; }
  .family-photo-card img { min-height: 320px; }
  .lead-mini-card { display: none; }
  .plan-card .plan-image { height: 126px; }
}
