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

:root {
  --bg:       #0e2233;
  --bg2:      #122840;
  --bg3:      #0a1b28;
  --blue:     #1a4a6b;
  --blue-mid: #1e5a80;
  --accent:   #3b9eca;
  --accent2:  #5bb8e8;
  --white:    #ffffff;
  --white70:  rgba(255,255,255,0.70);
  --white40:  rgba(255,255,255,0.40);
  --white15:  rgba(255,255,255,0.08);
  --line:     rgba(255,255,255,0.10);
  --f:        'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── UTILS ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
}

.tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}

h1, h2, h3 { line-height: 1.12; font-weight: 700; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(14,34,51,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-btn {
  background: var(--accent);
  color: var(--white);
  font-family: var(--f);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-btn:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--bg3) 0%, var(--bg2) 60%, var(--blue) 100%);
  display: flex;
  align-items: center;
  padding: 120px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  right: -10%;
  top: 20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,158,202,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  left: -5%;
  bottom: 0%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,90,128,0.20) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-tag { margin-bottom: 28px; }

.hero h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--accent2); }

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white70);
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}

.btn-main {
  background: var(--accent);
  color: var(--white);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-main:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  color: var(--white70);
  font-family: var(--f);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 4px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

.hero-numbers {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-num-item {}

.hero-num-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-num-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--white40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero card */
.hero-panel {
  background: var(--white15);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.panel-dores {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.panel-dores li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white70);
  line-height: 1.5;
}

.dot {
  flex-shrink: 0;
  margin-top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.panel-sep {
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}

.panel-price {
  font-size: 12px;
  color: var(--white40);
}

.panel-price strong { color: var(--white70); font-weight: 600; }

/* ── SECTIONS BASE ── */
.sec { padding: 110px 48px; }

.sec-dark  { background: var(--bg3); }
.sec-mid   { background: var(--bg2); }
.sec-blue  { background: var(--blue); }
.sec-light { background: rgba(255,255,255,0.03); }

/* ── FASE DE VIDA ── */
.fase-photo-no-img {
  background: linear-gradient(160deg, var(--bg3) 0%, var(--blue-mid) 100%);
}

/* Per-specialty background images */
.fase-photo-blefa, .fase-photo-refra, .fase-photo-cat,
.fase-photo-glauc, .fase-photo-retino {
  background-size: cover;
  background-position: center top;
}
.fase-photo-blefa  { background-image: url('https://clinop.com.br/wp-content/uploads/2026/03/clinop-blefaroplastia-palpebra-cirurgia-2-1024x572.webp'); }
.fase-photo-refra  { background-image: url('https://clinop.com.br/wp-content/uploads/2026/03/clinop-cirurgia-refrativa-1024x572.webp'); }
.fase-photo-cat    { background-image: url('https://clinop.com.br/wp-content/uploads/2025/07/clinop-catarata-cirurgia2-1024x572.webp'); }
.fase-photo-glauc  { background-image: url('https://clinop.com.br/wp-content/uploads/2025/07/glaucoma-exame-1024x484.jpg'); }
.fase-photo-retino { background-image: url('https://clinop.com.br/wp-content/uploads/2025/02/terapia-a-laser-clinop.webp'); }

/* Dark overlay via pseudo-element */
.fase-photo-blefa::after, .fase-photo-refra::after, .fase-photo-cat::after,
.fase-photo-glauc::after, .fase-photo-retino::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,30,.92) 0%, rgba(8,18,30,.52) 55%, rgba(8,18,30,.18) 100%);
  z-index: 0;
}

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

.fase-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.fase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fase-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,27,40,0.88) 0%, rgba(10,27,40,0.15) 55%, transparent 100%);
}

.fase-quote {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 32px 36px;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  letter-spacing: -0.01em;
}

.fase-quote::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 12px;
  border-radius: 2px;
}

.fase-right { display: flex; flex-direction: column; gap: 0; }

.fase-right .tag { margin-bottom: 20px; }

.fase-right h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.fase-right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white70);
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--white70);
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon::after {
  content: '';
  display: block;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg) translateY(-1px);
}

/* ── DIFERENCIAL OFTALMO ── */
.oqe-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.oqe-header .tag { margin-bottom: 18px; }

.oqe-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.oqe-header p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white70);
}

.comp-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 14px;
  overflow: hidden;
}

.comp-col-header {
  padding: 18px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comp-col-header.them {
  background: rgba(255,255,255,0.04);
  color: var(--white40);
}

.comp-col-header.us {
  background: rgba(59,158,202,0.15);
  color: var(--accent);
}

.comp-cell {
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.comp-cell.them {
  background: rgba(255,255,255,0.03);
  color: var(--white40);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comp-cell.us {
  background: rgba(59,158,202,0.07);
  color: var(--white70);
  border-bottom: 1px solid rgba(59,158,202,0.1);
}

/* ── BENEFÍCIOS ── */
.ben-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.ben-header .tag { margin-bottom: 18px; }

.ben-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.ben-header p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white70);
  align-self: end;
}

.ben-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ben-item {
  background: var(--white15);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
}

.ben-item:first-child { border-radius: 12px 0 0 12px; }
.ben-item:last-child  { border-radius: 0 12px 12px 0; }

.ben-item:hover { background: rgba(59,158,202,0.10); }

.ben-n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.ben-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.ben-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white70);
}

/* ── MÉDICOS ── */
.med-header {
  margin-bottom: 56px;
}

.med-header .tag { margin-bottom: 18px; }

.med-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 560px;
}

.med-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.med-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.med-card:hover { border-color: rgba(59,158,202,0.35); }

.med-top {
  background: rgba(59,158,202,0.08);
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--line);
}

.med-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(59,158,202,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent2);
}

.med-initials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.med-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.med-role {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
}

.med-body {
  padding: 22px 28px;
}

.med-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.med-creds li {
  font-size: 13px;
  font-weight: 400;
  color: var(--white70);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.med-creds li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── DEPOIMENTO ── */
.dep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dep-left { display: flex; flex-direction: column; gap: 28px; }

.dep-left .tag { }

.dep-left h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.dep-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.dep-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white15);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.dep-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  min-width: 70px;
  letter-spacing: -0.02em;
}

.dep-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--white70);
  line-height: 1.4;
}

.dep-card {
  background: var(--white15);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.dep-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.dep-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star-svg { width: 15px; height: 15px; fill: var(--accent2); }

.dep-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white70);
  margin-bottom: 28px;
  padding-top: 12px;
}

.dep-sep { height: 1px; background: var(--line); margin-bottom: 20px; }

.dep-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dep-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.dep-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.dep-info {
  font-size: 12px;
  font-weight: 400;
  color: var(--white40);
  margin-top: 2px;
}

.dep-verified {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid rgba(59,158,202,0.30);
  border-radius: 20px;
}

/* ── FAQ ── */
.faq-header { max-width: 600px; margin-bottom: 48px; }

.faq-header .tag { margin-bottom: 18px; }

.faq-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--f);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent2); }

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.faq-arrow svg { stroke: var(--white40); transition: stroke 0.2s; }

.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-arrow svg { stroke: var(--accent); }
.faq-item.open .faq-q { color: var(--accent2); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white70);
}

.faq-a-inner strong { color: var(--white); font-weight: 600; }

.faq-item.open .faq-a { max-height: 400px; }

/* ── CTA FINAL ── */
.cta-sec {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%);
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(59,158,202,0.15), transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner .tag { justify-content: center; margin-bottom: 20px; }
.cta-inner .tag::before { display: none; }

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

.cta-parcel {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

.cta-parcel strong { color: rgba(255,255,255,0.60); }

/* ── FOOTER ── */
footer {
  background: var(--bg3);
  padding: 28px 48px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 24px;
  width: auto;
  opacity: 0.35;
  filter: brightness(10);
}

.footer-text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.20);
}

/* ── DEPOIMENTO extras ── */
.dep-source {
  font-size: 11px;
  color: var(--white40);
  margin-top: 8px;
  line-height: 1.5;
}

.dep-quote-text {
  padding-top: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

.dep-cfm-note {
  font-size: 13px;
  color: var(--white40);
  line-height: 1.6;
}

.dep-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-av-gradient {
  background: linear-gradient(135deg, var(--blue-mid), var(--accent));
}

.dep-sep-mt { margin-top: 20px; }

.btn-main-cta {
  display: inline-flex;
  font-size: 15px;
  padding: 18px 44px;
}

/* ── ANIMATE ── */

/* Hero entrance — pure CSS, zero JS */
@keyframes _fadeUp    { from { opacity:0; transform:translateY(26px) } to { opacity:1; transform:none } }
@keyframes _fadeLeft  { from { opacity:0; transform:translateX(-24px) } to { opacity:1; transform:none } }
@keyframes _fadeRight { from { opacity:0; transform:translateX(28px)  } to { opacity:1; transform:none } }

.hero-tag     { animation: _fadeLeft  0.55s cubic-bezier(.25,.46,.45,.94) both 0.10s; }
.hero h1      { animation: _fadeUp    0.65s cubic-bezier(.16,.6,.27,1)    both 0.22s; }
.hero-sub     { animation: _fadeUp    0.55s cubic-bezier(.25,.46,.45,.94) both 0.36s; }
.hero-actions { animation: _fadeUp    0.50s cubic-bezier(.25,.46,.45,.94) both 0.48s; }
.hero-numbers { animation: _fadeUp    0.45s cubic-bezier(.25,.46,.45,.94) both 0.60s; }
.hero-panel   { animation: _fadeRight 0.60s cubic-bezier(.16,.6,.27,1)    both 0.28s, glow-pulse 3.5s ease-in-out 0.90s infinite; }

/* CTA pulse ring */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0   rgba(59,158,202,.45); }
  70%  { box-shadow: 0 0 0 10px rgba(59,158,202,0);  }
  100% { box-shadow: 0 0 0 0   rgba(59,158,202,0);   }
}
#hero-cta { animation: ctaPulse 2s ease-out 1.8s infinite; }

/* Scroll reveals — IntersectionObserver adds .in-view */
.js-reveal, .js-ben, .js-med, .js-dep {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.js-reveal.in-view, .js-ben.in-view, .js-med.in-view, .js-dep.in-view {
  opacity: 1;
  transform: none;
}
.js-ben:nth-child(2), .js-med:nth-child(2) { transition-delay: 0.12s; }
.js-ben:nth-child(3), .js-med:nth-child(3) { transition-delay: 0.24s; }

/* ── BORDER GLOW ── */
@keyframes glow-pulse {
  0%, 100% {
    border-color: rgba(255,255,255,0.10);
    box-shadow: none;
  }
  50% {
    border-color: rgba(59,158,202,0.65);
    box-shadow:
      0 0 16px rgba(59,158,202,0.28),
      0 0 40px rgba(59,158,202,0.14),
      inset 0 0 20px rgba(59,158,202,0.07);
  }
}

.med-card  { animation: glow-pulse 3.5s ease-in-out infinite; }
.ben-item  { animation: glow-pulse 3.5s ease-in-out infinite; }
.dep-card  { animation: glow-pulse 3.5s ease-in-out infinite; }
.dep-stat  { animation: glow-pulse 3.5s ease-in-out infinite; }
/* .hero-panel: combined in ANIMATE section (fadeRight + glow-pulse) */

.med-card:nth-child(2)  { animation-delay: 1.1s; }
.med-card:nth-child(3)  { animation-delay: 2.2s; }
.ben-item:nth-child(2)  { animation-delay: 1.1s; }
.ben-item:nth-child(3)  { animation-delay: 2.2s; }
.dep-stat:nth-child(2)  { animation-delay: 1.1s; }
.dep-stat:nth-child(3)  { animation-delay: 2.2s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Layout base */
  nav, .sec, .hero, .cta-sec, footer { padding-left: 20px; padding-right: 20px; }
  .wrap { padding: 0 20px; }

  /* Seções: padding vertical reduzido */
  .sec { padding-top: 64px; padding-bottom: 64px; }

  /* Grids → coluna única */
  .hero-inner, .fase-grid, .dep-grid { grid-template-columns: 1fr; gap: 40px; }
  .ben-header { grid-template-columns: 1fr; gap: 16px; }
  .ben-row { grid-template-columns: 1fr; gap: 12px; }
  .ben-item:first-child, .ben-item:last-child, .ben-item { border-radius: 12px; }
  .med-row { grid-template-columns: 1fr; gap: 16px; }
  .comp-table { grid-template-columns: 1fr; }
  .comp-col-header.them, .comp-cell.them { display: none; }

  /* Hero */
  .hero { padding: 88px 20px 64px; min-height: auto; }
  .hero-panel { display: none; }
  .hero h1 { font-size: 36px; margin-bottom: 20px; }
  .hero-sub { font-size: 17px; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-main { width: 100%; justify-content: center; font-size: 16px; padding: 18px 28px; }
  .btn-ghost { padding: 10px 0; font-size: 15px; }
  .hero-numbers { gap: 24px; flex-wrap: wrap; padding-top: 28px; }
  .hero-num-val { font-size: 28px; }
  .hero-num-label { font-size: 13px; }

  /* Fase de vida */
  .fase-photo { aspect-ratio: 3/2; }
  .fase-quote { font-size: 16px; padding: 24px 20px 28px; }
  .fase-right h2 { font-size: 26px; }
  .fase-right p { font-size: 16px; }
  .check-list li { font-size: 16px; }
  .check-icon { width: 22px; height: 22px; flex-shrink: 0; }

  /* Diferencial */
  .oqe-header h2 { font-size: 26px; }
  .oqe-header p { font-size: 16px; }
  .comp-cell { font-size: 15px; padding: 16px 20px; }
  .comp-col-header.us { padding: 16px 20px; }

  /* Benefícios */
  .ben-header h2 { font-size: 26px; }
  .ben-header p { font-size: 16px; }
  .ben-item { padding: 32px 28px; }
  .ben-item h3 { font-size: 20px; }
  .ben-item p { font-size: 15px; }

  /* Médicos */
  .med-header h2 { font-size: 26px; }
  .med-card h3 { font-size: 17px; }
  .med-creds li { font-size: 14px; }

  /* Depoimento / stats */
  .dep-left h2 { font-size: 26px; }
  .dep-stat { padding: 18px 20px; }
  .dep-stat-val { font-size: 22px; }
  .dep-stat-label { font-size: 14px; }
  .dep-text { font-size: 16px; }
  .dep-card { padding: 28px 24px; }

  /* FAQ */
  .faq-header h2 { font-size: 26px; }
  .faq-q { font-size: 16px; padding: 20px 0; }
  .faq-a-inner { font-size: 15px; }

  /* CTA final */
  .cta-sec { padding: 72px 20px; }
  .cta-inner h2 { font-size: 28px; }
  .cta-inner p { font-size: 17px; }
  .cta-inner .btn-main { width: 100%; justify-content: center; font-size: 16px; padding: 20px 28px; }

  /* Nav */
  nav { padding: 0 20px; height: 60px; }
  .nav-btn { font-size: 13px; padding: 10px 18px; }

  /* Footer */
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px 20px; }
}

/* Phones pequenos (375px) */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-numbers { gap: 20px; }
  .hero-num-val { font-size: 26px; }
  .tag { font-size: 10px; }
  .fase-quote { font-size: 15px; }
  .dep-stat-val { font-size: 20px; min-width: 60px; }
}
