/* =============================================================
   Dr. André Inácio — LP Prótese Total Robótica
   Design System: Editorial Clinical Calm
   Mobile-first · Acessível · Sem promessas absolutas
   ============================================================= */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--graphite);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ── Tokens ── */
:root {
  /* Cores */
  --navy:        #0B2742;
  --navy-soft:   #14365c;
  --graphite:    #1F2933;
  --off-white:   #F7F4EE;
  --white:       #FFFFFF;
  --blue-tech:   #1F6F8B;
  --mist:        #E6E2DA;
  --text-mute:   #66727F;
  --gold:        #C7A765;
  --gold-soft:   #DCC290;
  --copper:      #B8794D;
  --wa-green:    #25D366;
  --wa-green-dk: #1FB957;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Escala fluida (mobile → desktop) */
  --fs-h1: clamp(2.4rem, 7vw, 4.2rem);
  --fs-h2: clamp(1.8rem, 4.5vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2.5vw, 1.6rem);
  --fs-eyebrow: 0.75rem;
  --fs-body: 1.1rem;     /* 17.6px */
  --fs-lead: 1.25rem;       /* 20px */

  /* Espaçamento - Mais espaço negativo */
  --space-1: 0.5rem;
  --space-2: 1.2rem;
  --space-3: 2rem;
  --space-4: 3rem;
  --space-5: 4.5rem;
  --space-6: 6rem;
  --space-7: 8rem;
  --section-py: clamp(5rem, 10vw, 8rem);

  /* Layout */
  --max-w: 1200px;
  --gutter: 1.5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Sombras (sutis) */
  --shadow-card:  0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card-h: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-header: 0 4px 22px rgba(0, 0, 0, 0.04);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Tipografia base ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.08; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { font-size: var(--fs-body); color: var(--graphite); }
p.muted { color: var(--text-mute); }
strong { font-weight: 600; color: var(--navy); }

::selection { background: var(--gold); color: var(--navy); }

/* ── Utilitários ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-tech);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.5;
  margin-block: var(--space-5);
}

/* ── Focus visível ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-tech);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header.is-scrolled {
  border-color: var(--mist);
  box-shadow: var(--shadow-header);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 0.85rem;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-display);
}
.brand__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn--whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}
.btn--whatsapp:hover {
  background: var(--wa-green-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.36);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--off-white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--mist);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.btn--compact {
  min-height: 44px;
  padding: 0 1rem;
  font-size: 0.92rem;
}

.section__cta {
  margin-top: var(--space-5);
  display: flex;
  justify-content: center;
}

.header__cta-text { display: none; }
@media (min-width: 480px) {
  .header__cta-text { display: inline; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: var(--space-5) var(--space-6);
  background-color: var(--off-white);
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(252, 250, 245, 0.1) 0%, rgba(252, 250, 245, 0.85) 100%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: var(--space-4);
}
.hero__content { display: flex; flex-direction: column; gap: var(--space-3); }
.hero__eyebrow { margin-bottom: var(--space-1); }
.hero h1 { color: var(--navy); }
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero__subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  color: var(--graphite);
  line-height: 1.4;
}
.hero__lead { font-size: var(--fs-lead); color: var(--text-mute); line-height: 1.65; max-width: 56ch; }
.hero__lead + .hero__lead { margin-top: -0.3rem; }
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: var(--space-2);
}
@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
}
.hero__trustline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  margin-top: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
}
.hero__trustline span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__trustline svg { width: 14px; height: 14px; color: var(--gold); }

/* Hero photo placeholder */
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(199, 167, 101, 0.35);
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%),
    linear-gradient(135deg, var(--mist) 0%, #d8d3c9 100%);
}
.img-placeholder {
  position: relative;
  background: var(--mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3);
  color: var(--text-mute);
  font-size: 0.82rem;
  font-style: italic;
  font-family: var(--font-display);
  border: 1px dashed rgba(184, 121, 77, 0.4);
}

/* Foto real do hero — centralizada no Dr. André (subject à direita do quadro original) */
.hero__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 35%;
  display: block;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero { padding-block: var(--space-6) var(--space-7); }
  .hero__grid {
    grid-template-columns: 5.5fr 4.5fr; /* Assimétrico */
    align-items: center;
    gap: var(--space-7);
  }
  .hero__content {
    padding-right: var(--space-4);
  }
  .hero__photo { aspect-ratio: 3 / 4; transform: translateY(2rem); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding-block: var(--space-4);
  position: relative;
  z-index: 5;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 580px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
  }
}

.trust-chip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem var(--space-2);
  border-left: 3px solid var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-chip:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-left-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.trust-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(220, 194, 144, 0.12);
  color: var(--gold-soft);
  flex-shrink: 0;
}
.trust-chip__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}
.trust-chip__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-chip__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  opacity: 0.85;
}
.trust-chip__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding-block: var(--section-py); position: relative; }
.section--light { background: var(--off-white); }
.section--white { background: var(--white); }
.section--dark {
  background: var(--navy);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 49.5%, rgba(31, 111, 139, 0.12) 50%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(31, 111, 139, 0.08) 50%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.4;
}
.section--dark > .container { position: relative; z-index: 1; }
.section--dark h2,
.section--dark h3 { color: var(--off-white); }
.section--dark p { color: rgba(247, 244, 238, 0.92); }
.section--dark strong { color: var(--gold); }
.section--dark .eyebrow { color: var(--gold-soft); }
.section--dark .eyebrow::before { background: var(--gold); }
.section--dark .section-number { color: var(--gold); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  max-width: 62ch;
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.section__lead {
  font-size: var(--fs-lead);
  color: var(--text-mute);
  line-height: 1.65;
  margin-top: var(--space-1);
}
.section--dark .section__lead { color: rgba(247, 244, 238, 0.88); }

/* ============================================================
   "O QUE É" — texto largo
   ============================================================ */
.copy-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 68ch;
}
.copy-block p { font-size: var(--fs-lead); line-height: 1.75; color: var(--graphite); }
.copy-block .pull {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.5;
}

/* Dark-context typography overrides
   Fix: .copy-block p (graphite) e .copy-block .pull (navy) venciam
   .section--dark p por igual especificidade + ordem posterior,
   tornando o texto invisível sobre fundo navy. */
.section--dark .copy-block,
.section--dark .copy-block p {
  color: rgba(247, 244, 238, 0.94);
}
.section--dark .copy-block .pull {
  color: var(--off-white);
  border-left-color: var(--gold);
}
.section--dark .copy-block strong {
  color: var(--gold-soft);
}

.split-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .split-grid { grid-template-columns: 4fr 5fr; align-items: start; }
  .split-grid > div:first-child { margin-top: var(--space-4); }
}
.split-grid__media .img-placeholder { aspect-ratio: 3 / 4; }
.split-grid__media .media-video {
  display: block;
  width: 100%;
  max-width: 82%;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--mist);
}
@media (max-width: 899px) {
  .split-grid__media .media-video { max-width: 78%; }
}
@media (min-width: 1200px) {
  .split-grid__media .media-video { max-width: 76%; }
}

/* ============================================================
   BENEFÍCIOS — Cards
   ============================================================ */
.benefits-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3) var(--space-4);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-h);
  border-color: rgba(199, 167, 101, 0.45);
}
.benefit-card:hover::before { width: 72px; }
.benefit-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(31, 111, 139, 0.08);
  color: var(--blue-tech);
}
.benefit-card__icon svg { width: 24px; height: 24px; stroke-width: 1.6; }
.benefit-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.benefit-card p { font-size: 1rem; color: var(--text-mute); line-height: 1.6; }

/* ============================================================
   "PARA QUEM É INDICADA" — Lista
   ============================================================ */
.indication-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 900px) {
  .indication-grid { grid-template-columns: 5fr 4fr; align-items: center; gap: var(--space-7); }
}
.indication-list {
  display: grid;
  gap: 0.85rem;
}
.indication-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: var(--fs-body);
  color: var(--graphite);
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}
.indication-list svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.indication-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--off-white);
  border: 1px solid rgba(199, 167, 101, 0.25);
}
.indication-cta h3 {
  color: var(--off-white);
  font-size: 1.35rem;
  line-height: 1.3;
}
.indication-cta p { color: rgba(247, 244, 238, 0.78); font-size: 1rem; }
.indication-cta .btn { margin-top: var(--space-1); align-self: flex-start; }

/* ============================================================
   DIFERENCIAL MÉDICO + HUMANIZAÇÃO
   ============================================================ */
.specialty-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
@media (min-width: 700px) { .specialty-card { padding: var(--space-5); } }

.human-section {
  background: linear-gradient(180deg, var(--off-white), var(--white));
  position: relative;
}
.human-section h2 .accent { color: var(--copper); font-style: italic; font-weight: 500; }
.human-section .pull {
  border-left-color: var(--copper);
}
.human-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--navy);
  max-width: 24ch;
}
.human-quote .accent { color: var(--copper); font-weight: 500; }

/* ============================================================
   RESULTADOS ESPERADOS
   ============================================================ */
.results-grid {
  display: grid;
  gap: var(--space-2);
}
@media (min-width: 700px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
.result-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--graphite);
}
.result-pill svg {
  width: 20px;
  height: 20px;
  color: var(--copper);
  flex-shrink: 0;
  stroke-width: 1.8;
}

/* ============================================================
   SOBRE O MÉDICO
   ============================================================ */
.bio-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 900px) {
  .bio-grid {
    grid-template-columns: 4fr 6fr;
    align-items: center;
    gap: var(--space-7);
  }
}
.bio-photo .img-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--mist);
  border-radius: var(--radius-lg);
}
.bio-photo__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(199, 167, 101, 0.35);
}
.bio-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}
.bio-content { display: flex; flex-direction: column; gap: var(--space-3); }
.bio-content h2 .accent {
  display: block;
  font-size: 0.65em;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  margin-top: 4px;
}
.credentials {
  display: grid;
  gap: 0.7rem;
  margin-top: var(--space-2);
}
.credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--graphite);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--mist);
}
.credentials li:last-child { border-bottom: none; }
.credentials li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  background: var(--navy);
  color: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(199, 167, 101, 0.10), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31, 111, 139, 0.15), transparent 50%);
  pointer-events: none;
}
.final-cta > .container { position: relative; z-index: 1; }
.final-cta h2 {
  color: var(--off-white);
  max-width: 22ch;
  margin-inline: auto;
}
.final-cta h2 .accent { color: var(--gold); font-style: italic; }
.final-cta p {
  color: rgba(247, 244, 238, 0.82);
  font-size: var(--fs-lead);
  max-width: 52ch;
  margin: var(--space-2) auto 0;
}
.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  margin-top: var(--space-4);
}
@media (min-width: 480px) {
  .final-cta__actions { flex-direction: row; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--graphite);
  color: rgba(247, 244, 238, 0.8);
  padding-block: var(--space-5) var(--space-3);
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; } }

.footer__brand .brand__name { color: var(--off-white); }
.footer__brand .brand__role { color: rgba(247, 244, 238, 0.55); }
.footer__brand p {
  color: rgba(247, 244, 238, 0.7);
  font-size: 0.92rem;
  margin-top: var(--space-2);
  max-width: 38ch;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(247, 244, 238, 0.78);
  line-height: 1.5;
}
.footer li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  stroke-width: 1.6;
}

.footer__bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(247, 244, 238, 0.55);
}

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.25s var(--ease);
}
.wa-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-float:hover { background: var(--wa-green-dk); }
.wa-float svg { width: 28px; height: 28px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Print ── */
@media print {
  .header, .wa-float, .final-cta { display: none; }
  body { background: var(--white); color: var(--graphite); }
}

/* ============================================================
   MOLDURA TECH CORI — vídeo 9:16 com brackets e scan-line
   (replicada da seção "Tecnologia de Ponta" do index global)
   ============================================================ */
.split-grid__media .robotica__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.18);
  box-shadow: 0 32px 72px rgba(0, 59, 92, 0.18), 0 0 40px rgba(0, 180, 216, 0.10);
  transition: transform 0.4s var(--ease);
  max-width: 380px;
  margin-inline: auto;
}
.split-grid__media .robotica__image-wrapper:hover { transform: translateY(-4px); }

.split-grid__media .robotica__image-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  background: #030d1b;
}
.split-grid__media .robotica__image-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0, 180, 216, 0.03) 0%, transparent 60%, rgba(3, 13, 27, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.split-grid__media .robotica__image {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.6s var(--ease);
}
.split-grid__media .robotica__image-wrapper:hover .robotica__image { transform: scale(1.03); }

.split-grid__media .robotica__frame-corner {
  position: absolute;
  width: 18px; height: 18px;
  z-index: 3;
  pointer-events: none;
  border-color: #00B4D8 !important;
}
.split-grid__media .robotica__frame-corner--tl { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; }
.split-grid__media .robotica__frame-corner--tr { top: 12px; right: 12px; border-top: 2px solid; border-right: 2px solid; }
.split-grid__media .robotica__frame-corner--bl { bottom: 12px; left: 12px; border-bottom: 2px solid; border-left: 2px solid; }
.split-grid__media .robotica__frame-corner--br { bottom: 12px; right: 12px; border-bottom: 2px solid; border-right: 2px solid; }

.split-grid__media .robotica__scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.4), transparent);
  z-index: 2;
  animation: scanLine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scanLine {
  0%   { top: 0%; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.split-grid__media .robotica__image-label {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 37, 58, 0.85);
  border: 1px solid rgba(0, 180, 216, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #90E0EF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5em 1.4em;
  border-radius: 100px;
  z-index: 4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .split-grid__media .robotica__image-wrapper { max-width: 300px; }
}

/* ============================================================
   DEPOIMENTOS — Google Reviews
   ============================================================ */
.depoimentos__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}
.depoimentos__title {
  margin-top: var(--space-2);
}
.depoimentos__title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.depoimentos__subtitle {
  margin-top: var(--space-2);
  color: var(--text-mute);
  font-size: 1.05rem;
}

.depoimentos__carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.depoimentos__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
}

.review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
  border-color: rgba(199, 167, 101, 0.4);
}
.review-card__quote {
  position: absolute;
  top: 0.4rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.14;
  user-select: none;
  pointer-events: none;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
}
.review-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--graphite);
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mist);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue-tech));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--off-white);
  flex-shrink: 0;
}
.review-card__author-info { flex: 1; min-width: 0; }
.review-card__author-info strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.review-card__google {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.review-card__google svg {
  width: 13px;
  height: 13px;
  color: #4285F4;
}

.depoimentos__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: var(--space-3);
}
.depoimentos__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--mist);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: var(--shadow-card);
}
.depoimentos__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-card-h);
  transform: translateY(-1px);
}
.depoimentos__btn svg { width: 20px; height: 20px; }

.depoimentos__dots {
  display: flex;
  gap: 0.5rem;
}
.depoimentos__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--mist);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}
.depoimentos__dot.active {
  width: 26px;
  background: var(--gold);
}

.depoimentos__footer {
  text-align: center;
  margin-top: var(--space-4);
}

@media (max-width: 1024px) {
  .review-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 768px) {
  .review-card { flex: 0 0 100%; }
  .depoimentos__track { gap: 1rem; }
  .review-card__quote { font-size: 5rem; }
}
