/* CLAF — Implanon NXT Landing Page */
:root {
  --azul: #1473C4;
  --azul-escuro: #0B5FA5;
  --branco: #FFFFFF;
  --fundo-suave: #F7F9FB;
  --texto: #1C2B36;
  --muted: #5A6B78;
  --coral: #E8836F;
  --verde-wa: #1FAF5A;
  --ambar: #FFF6E9;
  --ambar-borda: #F2DFC2;
  --radius-card: 20px;
  --radius-img: 32px;
  --radius-pill: 999px;
  --shadow-soft: 0 6px 24px rgba(20, 43, 60, 0.08);
  --shadow-card: 0 2px 12px rgba(20, 43, 60, 0.06);
  --font-display: "Poppins", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  text-wrap: pretty;
}

h1 {
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  font-weight: 700;
  color: var(--azul-escuro);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 600;
  color: var(--azul-escuro);
  letter-spacing: -0.01em;
  max-width: 21ch;
}

.section-head {
  margin-bottom: 40px;
}

.section-head .coral-line {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  margin-bottom: 18px;
}

.center .coral-line { margin-left: auto; margin-right: auto; }
.center h2 { margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

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

.btn-primary {
  background: var(--azul);
  color: var(--branco);
  box-shadow: 0 8px 20px rgba(20, 115, 196, 0.28);
}
.btn-primary:hover { background: var(--azul-escuro); }

.btn-whatsapp {
  background: var(--verde-wa);
  color: var(--branco);
  box-shadow: 0 8px 20px rgba(31, 175, 90, 0.28);
}
.btn-whatsapp:hover { background: #199449; }

.btn-small {
  padding: 12px 24px;
  font-size: 0.92rem;
}

.btn .wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #EBF1F5;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--azul);
  text-decoration: none;
  line-height: 1.1;
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, var(--fundo-suave) 0%, var(--branco) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.hero-copy .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--azul);
  background: rgba(20, 115, 196, 0.08);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lead { margin-bottom: 26px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--branco);
  border: 1px solid #E2EAF0;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--texto);
  box-shadow: var(--shadow-card);
}

.badge-pill strong {
  color: var(--azul);
  font-weight: 700;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.alt { background: var(--fundo-suave); }

/* Identificação grid */
.id-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.id-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--branco);
  border: 1px solid #E9EFF4;
  border-radius: var(--radius-card);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}

.id-card .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 131, 111, 0.14);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.id-card .check svg { width: 14px; height: 14px; }

.id-card p { font-size: 0.97rem; color: var(--texto); }

.section-cta { text-align: center; }

/* O que é */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.split-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
}

.split-copy h2 { margin-bottom: 20px; }
.split-copy p { color: var(--muted); margin-bottom: 16px; max-width: 56ch; }
.split-copy p strong { color: var(--texto); }
.split-copy .btn { margin-top: 12px; }

/* Números */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--branco);
  border: 1px solid #E9EFF4;
  border-radius: var(--radius-card);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--azul);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Procedimento */
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 32px;
}

.step:last-child { padding-bottom: 0; }

.step::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 4px;
  width: 2px;
  background: #DCE7EF;
}

.step:last-child::before { display: none; }

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--branco);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(20, 115, 196, 0.25);
}

.step-body h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 6px;
}

.step-body p { font-size: 0.95rem; color: var(--muted); max-width: 48ch; }

.proc-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.proc-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.proc-photos .tall {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.proc-photos .half { aspect-ratio: 4 / 3.4; }

.steps-wrap .section-cta { grid-column: 1 / -1; margin-top: 8px; }

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.benefit-card {
  background: var(--branco);
  border: 1px solid #E9EFF4;
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.benefit-card .b-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(20, 115, 196, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.benefit-card .b-icon svg { width: 20px; height: 20px; }

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 6px;
}

.benefit-card p { font-size: 0.92rem; color: var(--muted); }

.callout-amber {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--ambar);
  border: 1px solid var(--ambar-borda);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 36px;
}

.callout-amber .c-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #C9963F;
  color: #C9963F;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.callout-amber p { font-size: 0.95rem; color: #6B5430; }
.callout-amber p strong { color: #51400F; }

/* Depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.testimonial {
  background: var(--branco);
  border: 1px solid #E9EFF4;
  border-radius: var(--radius-card);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 0.6;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--texto);
  flex-grow: 1;
  margin-bottom: 18px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--azul-escuro);
}

.testimonial .stars {
  color: #F0B43C;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* CLAF / Confiança */
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 26px 0;
}

.trust-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--azul);
  line-height: 1.1;
}

.trust-stat .label { font-size: 0.85rem; color: var(--muted); }

.crm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--azul);
  color: var(--branco);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.crm-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--branco);
  opacity: 0.7;
}

.convenios {
  margin-bottom: 28px;
}

.convenios .conv-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.conv-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.conv-pills span {
  background: var(--fundo-suave);
  border: 1px solid #E2EAF0;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--texto);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--branco);
  border: 1px solid #E9EFF4;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--texto);
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary .faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(20, 115, 196, 0.08);
  color: var(--azul);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary .faq-toggle { transform: rotate(45deg); }

.faq-list .faq-answer {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* DIU block */
.diu-block {
  padding: 40px 0;
}

.diu-card {
  background: var(--fundo-suave);
  border: 1px solid #E9EFF4;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.diu-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--azul-escuro);
}

.diu-card p { font-size: 0.95rem; color: var(--muted); max-width: 62ch; }

/* Localização */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.location-card {
  background: var(--branco);
  border: 1px solid #E9EFF4;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.location-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--azul-escuro);
  margin-bottom: 10px;
}

.location-card address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.location-card .loc-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--azul);
  text-decoration: none;
}

.location-card .loc-link:hover { text-decoration: underline; }

.hours-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 28px;
}

.hours-row strong { color: var(--azul-escuro); }

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-card);
}

/* CTA final */
.final-cta {
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul) 100%);
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  color: var(--branco);
  max-width: 26ch;
  margin: 0 auto 14px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin: 0 auto 32px;
}

/* Footer */
.site-footer {
  background: var(--fundo-suave);
  border-top: 1px solid #E9EFF4;
  padding: 44px 0 120px;
  font-size: 0.84rem;
  color: var(--muted);
}

.site-footer .footer-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 8px;
}

.site-footer p { margin-bottom: 4px; }

.site-footer .legal {
  border-top: 1px solid #E2EAF0;
  padding-top: 22px;
  line-height: 1.7;
}

/* Sticky WhatsApp bar (mobile) */
.sticky-wa {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid #E9EFF4;
  box-shadow: 0 -4px 20px rgba(20, 43, 60, 0.08);
}

.sticky-wa .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
}

/* ---------- Desktop ---------- */
@media (min-width: 880px) {
  .header-cta { display: inline-flex; }

  .hero { padding: 72px 0 88px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }

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

  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split.reverse .split-photo { order: 2; }
  .split.reverse .split-copy { order: 1; }

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

  .steps-wrap { grid-template-columns: 1fr 1fr; gap: 64px; }

  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-card.wide { grid-column: span 1; }

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

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

  .site-footer { padding-bottom: 44px; }
  .site-footer .footer-grid { grid-template-columns: repeat(3, 1fr); }

  .sticky-wa { display: none; }

  .diu-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .diu-card .diu-copy { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
