/* ═══════════════════════════════════════════════
       LP Harmonização Íntima Masculina · Dr. Danillo Maranhão
       Mobile-first · Breakpoints: 600 · 768 (tablet) · 1025 (desktop) · 1280
       ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
       1. DESIGN TOKENS
       ═══════════════════════════════════════════════ */
:root {
  /* Paleta — Medical Luxury masculino: navy, dourado, neutros quentes */
  --navy: #0a1828;
  --navy-2: #112236;
  --navy-3: #1a3350;
  --navy-deep: #06111d;
  --gold: #c4973f;
  --gold-lt: #ddb96a;
  --gold-deep: #8a6420;
  --gold-dim: rgba(196, 151, 63, 0.16);
  --paper: #fafaf8;
  --sand: #f5f1ea;
  --sand-2: #ebe4d8;
  --white: #ffffff;
  --ink: #142231;
  --body: #3a4754;
  --muted: #5f6a76;
  --line: rgba(10, 24, 40, 0.1);
  --line-dark: rgba(255, 255, 255, 0.1);
  --placeholder: #d9480f;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Tipografia fluida */
  --t-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --t-sm: clamp(0.84rem, 0.81rem + 0.14vw, 0.9rem);
  --t-base: clamp(0.95rem, 0.92rem + 0.16vw, 1.03rem);
  --t-md: clamp(1.05rem, 1rem + 0.25vw, 1.18rem);
  --t-lg: clamp(1.3rem, 1.18rem + 0.55vw, 1.65rem);
  --t-xl: clamp(1.85rem, 1.5rem + 1.6vw, 2.9rem);
  --t-2xl: clamp(2.2rem, 1.6rem + 2.9vw, 4rem);

  /* Espaçamento fluido */
  --sp-sec: clamp(64px, 8vw, 120px);
  --sp-gut: clamp(18px, 4vw, 40px);
  --gap: clamp(16px, 2.4vw, 28px);

  --hdr: 64px;
  --maxw: 1240px;
  --r: 16px;
  --r-sm: 12px;
  --r-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(10, 24, 40, 0.06), 0 4px 14px -6px rgba(10, 24, 40, 0.12);
  --shadow: 0 2px 6px rgba(10, 24, 40, 0.05), 0 22px 48px -22px rgba(10, 24, 40, 0.3);
  --shadow-gold: 0 10px 28px -12px rgba(196, 151, 63, 0.65);
}

/* ═══════════════════════════════════════════════
       2. RESET + BASE
       ═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Trava de scroll ao abrir o drawer — compensa a scrollbar
       para a página não "pular" lateralmente. */
body.is-locked {
  overflow: hidden;
  padding-right: var(--sbw, 0px);
}

body.is-locked .site-header {
  padding-right: var(--sbw, 0px);
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

strong {
  color: var(--ink);
  font-weight: 600;
}

/* Cormorant usa algarismos antigos por padrão: "1" e "4.9" ficam miúdos */
.sec-title,
.hero-title,
.pain-num,
.stat dd,
.float-rating strong,
.rating-block strong,
.cta-final h2 {
  font-variant-numeric: lining-nums;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--sp-gut);
}

/* Contexto escuro */
.on-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
}

.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark strong {
  color: var(--white);
}

/* Placeholder de conteúdo a preencher — visível de propósito */
.ph {
  outline: 1.5px dashed var(--placeholder);
  outline-offset: 3px;
  color: var(--placeholder) !important;
}

/* ═══════════════════════════════════════════════
       3. BOTÕES
       ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(196, 151, 63, 0.8);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  min-height: 56px;
  padding: 16px 28px;
  font-size: var(--t-base);
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gold-lt);
}

.btn-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.btn-link:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
       4. HEADER + MENU HAMBÚRGUER + DRAWER
       ═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--hdr);
  background: rgba(10, 24, 40, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(10, 24, 40, 0.96);
  border-bottom-color: var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--sp-gut);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  white-space: nowrap;
}

.site-nav {
  display: none;
}

.header-cta {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.8rem;
  box-shadow: none;
}

.header-cta .cta-long {
  display: none;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  border-radius: var(--r-sm);
  color: var(--white);
}

.burger {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.2s var(--ease), top 0.35s var(--ease-out),
    width 0.35s var(--ease-out);
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 6px;
  width: 70%;
  left: auto;
  right: 0;
}

.burger span:nth-child(3) {
  top: 12px;
}

.nav-toggle:hover .burger span:nth-child(2) {
  width: 100%;
}

.nav-toggle[aria-expanded="true"] .burger span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .burger span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.nav-toggle[aria-expanded="true"] .burger span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-scrim {
  position: fixed;
  inset: var(--hdr) 0 0;
  z-index: 90;
  background: rgba(6, 17, 29, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.nav-scrim.open {
  opacity: 1;
}

.nav-drawer {
  position: fixed;
  top: var(--hdr);
  right: 0;
  bottom: 0;
  z-index: 95;
  display: flex;
  flex-direction: column;
  width: min(88vw, 400px);
  padding: 20px var(--sp-gut) calc(24px + env(safe-area-inset-bottom));
  background: var(--navy);
  border-left: 1px solid var(--line-dark);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.42s var(--ease-out), visibility 0s linear 0.42s;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.42s var(--ease-out), visibility 0s;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
}

.drawer-nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transform: translateX(16px);
  transition: color 0.2s var(--ease), opacity 0.4s var(--ease), transform 0.5s var(--ease-out);
}

.drawer-nav a span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.drawer-nav a:hover {
  color: var(--gold-lt);
}

.nav-drawer.open .drawer-nav a {
  opacity: 1;
  transform: none;
}

.nav-drawer.open .drawer-nav a:nth-child(2) { transition-delay: 0.04s; }
.nav-drawer.open .drawer-nav a:nth-child(3) { transition-delay: 0.08s; }
.nav-drawer.open .drawer-nav a:nth-child(4) { transition-delay: 0.12s; }
.nav-drawer.open .drawer-nav a:nth-child(5) { transition-delay: 0.16s; }
.nav-drawer.open .drawer-nav a:nth-child(6) { transition-delay: 0.2s; }

.drawer-foot {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 12px;
  text-align: center;
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.6);
}

.drawer-foot p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.drawer-foot p svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.drawer-crm {
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════
       5. TÍTULOS DE SEÇÃO
       ═══════════════════════════════════════════════ */
.section {
  padding-block: var(--sp-sec);
}

.sec-head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.sec-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.on-dark .eyebrow {
  color: var(--gold-lt);
}

.sec-title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: -0.005em;
}

.sec-title em,
.cta-final h2 em,
.hero-title em,
.about-lead em {
  font-style: italic;
  color: var(--gold-deep);
}

.on-dark .sec-title em,
.cta-final h2 em,
.hero-title em {
  color: var(--gold-lt);
}

.sec-lead {
  margin-top: 16px;
  font-size: var(--t-md);
  color: var(--muted);
}

.on-dark .sec-lead {
  color: rgba(255, 255, 255, 0.68);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-dim);
  color: var(--gold-deep);
}

.on-dark .icon-badge {
  color: var(--gold-lt);
  border: 1px solid rgba(196, 151, 63, 0.3);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════
       6. HERO
       ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--hdr) + clamp(28px, 5vw, 64px));
  padding-bottom: clamp(56px, 7vw, 100px);
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(196, 151, 63, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(26, 51, 80, 0.9), transparent 70%),
    var(--navy);
}

.hero-grid {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(196, 151, 63, 0.4);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--gold-lt) !important;
}

.hero-kicker span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
}

.hero-sub {
  max-width: 560px;
  margin-top: 22px;
  font-size: var(--t-md);
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-top: 32px;
}

.hero-actions .btn {
  flex: 1 1 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.8);
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: var(--navy-2);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(196, 151, 63, 0.25);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--body);
  line-height: 1.25;
}

.float-card strong {
  color: var(--ink);
}

.float-crm {
  left: -8px;
  bottom: 22px;
  max-width: calc(100% - 24px);
}

.float-crm svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  padding: 6px;
  border-radius: 10px;
  background: var(--gold-dim);
  color: var(--gold-deep);
}

.float-crm strong {
  display: block;
  font-size: 0.86rem;
}

.float-crm span {
  font-size: 0.7rem;
  color: var(--muted);
}

.float-rating {
  top: 18px;
  right: -8px;
  flex-direction: column;
  gap: 0;
  padding: 10px 16px;
  text-align: center;
}

.float-rating .stars {
  font-size: 0.7rem;
}

.float-rating strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.float-rating span:last-child {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
       7. PROVA SOCIAL (CREDENCIAIS + NÚMEROS)
       ═══════════════════════════════════════════════ */
.proof {
  padding-block: clamp(32px, 4vw, 48px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(196, 151, 63, 0.35);
  border-radius: 999px;
  background: var(--paper);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.badges svg {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--line);
}

.stat {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 4px;
  padding: clamp(16px, 2.4vw, 26px) 12px;
  background: var(--white);
  text-align: center;
}

.stat dd {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.stat dd.ph {
  font-size: clamp(1.1rem, 1rem + 0.8vw, 1.6rem);
  outline-offset: -4px;
  padding: 6px;
}

.stat dd small {
  font-size: 0.6em;
  color: var(--gold);
}

.stat dt {
  font-size: var(--t-xs);
  line-height: 1.4;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
       8. PAIN POINTS (PAS)
       ═══════════════════════════════════════════════ */
.pain {
  background: var(--paper);
}

.pain-grid {
  display: grid;
  gap: var(--gap);
}

.pain-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease);
}

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

.pain-num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.pain-card h3 {
  margin-bottom: 10px;
  font-size: var(--t-md);
}

.pain-card p {
  font-size: var(--t-sm);
  color: var(--muted);
}

.agitation {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--r-lg);
  background: var(--sand);
  border-left: 3px solid var(--gold);
}

.agitation-text h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
}

.agitation-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.agitation-list li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.7);
  font-size: var(--t-sm);
  color: var(--ink);
}

.agitation-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-deep);
}

/* ═══════════════════════════════════════════════
       9. SOLUÇÃO / PROCEDIMENTO
       ═══════════════════════════════════════════════ */
.solution {
  background: var(--sand);
}

.solution-grid {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.solution-copy .sec-title {
  margin-bottom: 20px;
}

.solution-copy > p + p {
  margin-top: 14px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

.check-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-lt);
  margin-top: 2px;
}

.note {
  margin-top: 22px;
  font-size: var(--t-xs);
  color: var(--muted);
}

.spec-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--navy-3), var(--navy) 60%);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 60px -30px rgba(10, 24, 40, 0.6);
}

.spec-title {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--white);
}

.spec-card dl > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.spec-card dt {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-sm);
}

.spec-card dt svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.spec-card dd {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

.spec-card .btn {
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════
       10. BENEFÍCIOS
       ═══════════════════════════════════════════════ */
.benefits {
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(196, 151, 63, 0.1), transparent 70%),
    var(--navy);
}

.benefit-grid {
  display: grid;
  gap: var(--gap);
}

.benefit-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 151, 63, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-card h3 {
  margin: 20px 0 10px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
}

.feature-tag {
  margin-top: auto;
  padding-top: 18px;
  font-size: var(--t-xs);
  letter-spacing: 0.02em;
  color: var(--gold-lt);
}

.inline-ctv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}

.inline-ctv p {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  color: var(--white);
}

.inline-ctv em {
  color: var(--gold-lt);
}

/* ═══════════════════════════════════════════════
       11. COMO FUNCIONA
       ═══════════════════════════════════════════════ */
.how {
  background: var(--paper);
}

.steps {
  position: relative;
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px 24px 26px 82px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-num {
  position: absolute;
  left: 22px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-lt);
}

.step-icon {
  display: none;
}

.step h3 {
  margin-bottom: 8px;
  font-size: var(--t-md);
}

.step p {
  font-size: var(--t-sm);
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
       12. SOBRE O ESPECIALISTA
       ═══════════════════════════════════════════════ */
.about {
  background: var(--sand);
}

.about-grid {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.about-photo {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.about-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(10, 24, 40, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--t-xs);
  line-height: 1.4;
}

.about-photo figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

.about-lead {
  margin: 14px 0 20px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

.about-copy > p + p {
  margin-top: 14px;
}

.cred-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.cred-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  line-height: 1.35;
}

.cred-list svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  padding: 9px;
  border-radius: 10px;
  background: var(--gold-dim);
  color: var(--gold-deep);
}

.cred-list strong {
  display: block;
  font-size: var(--t-sm);
}

.cred-list span {
  font-size: var(--t-xs);
  color: var(--muted);
}

.privacy-band {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: var(--r);
}

.privacy-copy h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: var(--t-lg);
}

.privacy-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.privacy-list li {
  display: flex;
  gap: 10px;
  font-size: var(--t-sm);
  color: var(--ink);
}

.privacy-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-deep);
}

/* ═══════════════════════════════════════════════
       13. OUTROS TRATAMENTOS
       ═══════════════════════════════════════════════ */
.treatments {
  background: var(--paper);
}

.treat-grid {
  display: grid;
  gap: var(--gap);
}

.treat-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.treat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 151, 63, 0.45);
  box-shadow: var(--shadow);
}

.treat-card h3 {
  margin: 18px 0 8px;
  font-size: var(--t-md);
}

.treat-card p {
  font-size: var(--t-sm);
  color: var(--muted);
}

.treat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--gold-deep);
}

.treat-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.treat-card:hover .treat-link svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
       14. CASOS E DEPOIMENTOS
       ═══════════════════════════════════════════════ */
.cases {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(196, 151, 63, 0.1), transparent 70%),
    var(--navy);
}

.cases-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.cases-head .sec-head {
  margin-bottom: 0;
}

.rating-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rating-block {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 2px 14px;
  padding: 16px 22px;
  border: 1px solid rgba(196, 151, 63, 0.35);
  border-radius: var(--r);
  transition: background-color 0.25s var(--ease);
}

a.rating-block:hover {
  background: rgba(255, 255, 255, 0.05);
}

.rating-block strong {
  grid-row: span 2;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
}

.rating-block span:last-child {
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.7);
}

a.rating-block span:last-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-grid {
  display: grid;
  gap: var(--gap);
}

.review {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.04);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.review blockquote {
  flex: 1;
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  line-height: 1.3;
}

.review figcaption strong {
  display: block;
  font-size: var(--t-sm);
}

.review figcaption span:not(.avatar) {
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.55);
}

.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(196, 151, 63, 0.4);
  font-weight: 600;
  color: var(--gold-lt);
}

.ph-card {
  border: 1.5px dashed var(--placeholder);
}

.ph-card blockquote {
  color: #ffa36b;
}

.ethics-note {
  display: flex;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 44px);
  padding: 20px 22px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.05);
  font-size: var(--t-sm);
}

.ethics-note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.ethics-note strong {
  display: block;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════
       15. FAQ
       ═══════════════════════════════════════════════ */
.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.faq-head {
  margin-bottom: 0;
}

.faq-head .btn {
  margin-top: 26px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  font-size: inherit;
}

.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 64px;
  padding: 18px 4px;
  font-size: var(--t-md);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.faq-btn:hover {
  color: var(--gold-deep);
}

.faq-btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 7px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.faq-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-lt);
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  padding: 0 48px 22px 4px;
  color: var(--body);
}

/* Só recolhe com JS ativo: sem JS, todas as respostas ficam visíveis */
.js .faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.4s var(--ease-out), visibility 0s linear 0.4s;
}

.js .faq-item h3:has(.faq-btn[aria-expanded="true"]) + .faq-panel {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.4s var(--ease-out), visibility 0s;
}

/* ═══════════════════════════════════════════════
       16. CTV FINAL
       ═══════════════════════════════════════════════ */
.cta-final {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-sec);
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(196, 151, 63, 0.28), transparent 65%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  text-align: center;
}

.cta-inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  line-height: 1.08;
}

.cta-final h2 + p {
  max-width: 600px;
  margin: 20px 0 32px;
  font-size: var(--t-md);
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 24px;
  font-size: var(--t-sm);
}

.cta-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-points svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
       17. FOOTER
       ═══════════════════════════════════════════════ */
.site-footer {
  padding-top: clamp(48px, 6vw, 72px);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--t-sm);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}

.footer-brand p + p {
  margin-top: 4px;
}

.footer-title {
  margin-bottom: 12px;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.footer-col,
.footer-col address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col address > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-lt);
}

.footer-col svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer-legal::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--sp-gut);
  right: var(--sp-gut);
  border-top: 1px solid var(--line-dark);
}

.footer-legal {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 40px;
  padding-block: 24px;
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════
       18. CTA FIXO (MOBILE/TABLET)
       ═══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--sp-gut) calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 24, 40, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.sc-text strong {
  font-size: var(--t-sm);
  color: var(--white);
}

.sc-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.sticky-cta .btn {
  flex-shrink: 0;
  box-shadow: none;
}

body.has-sticky .site-footer {
  padding-bottom: 76px;
}

/* ═══════════════════════════════════════════════
       19. REVEAL AO ROLAR
       ═══════════════════════════════════════════════ */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease-out);
}

.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
       20. BREAKPOINTS
       ═══════════════════════════════════════════════ */
@media (min-width: 400px) {
  .header-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 359px) {
  .header-cta .cta-short {
    display: none;
  }

  .header-cta {
    width: 40px;
    padding: 0;
  }

  .brand-sub {
    display: none;
  }
}

@media (min-width: 600px) {
  .header-cta .cta-long {
    display: inline;
  }

  .header-cta .cta-short {
    display: none;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
  }

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

  .benefit-grid,
  .treat-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-band {
    grid-template-columns: minmax(200px, 0.8fr) 1.2fr;
  }

  .privacy-photo img {
    aspect-ratio: 4 / 5;
  }
}

/* ── Tablet ── */
@media (min-width: 768px) {
  :root {
    --hdr: 72px;
  }

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

  .agitation {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-cta {
    justify-content: center;
    gap: 28px;
  }

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

/* ── Desktop ── */
@media (min-width: 1025px) {
  :root {
    --hdr: 80px;
  }

  .header-inner {
    gap: 28px;
  }

  .site-nav {
    display: flex;
    gap: clamp(14px, 1.6vw, 26px);
    margin-inline: auto;
  }

  .brand {
    margin-right: 0;
  }

  .site-nav a {
    position: relative;
    padding-block: 8px;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    transition: color 0.2s var(--ease);
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
  }

  .site-nav a:hover,
  .site-nav a[aria-current] {
    color: var(--white);
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current]::after {
    transform: scaleX(1);
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.84rem;
  }

  .nav-toggle,
  .nav-drawer,
  .nav-scrim,
  .sticky-cta {
    display: none !important;
  }

  body.has-sticky .site-footer {
    padding-bottom: 0;
  }

  .hero {
    min-height: min(100svh, 900px);
    display: flex;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero-visual {
    max-width: 500px;
    margin-right: 0;
  }

  .float-crm {
    left: -36px;
  }

  .float-rating {
    right: -28px;
  }

  .solution-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1040px;
    margin-inline: auto;
  }

  /* Timeline horizontal com linha conectando os passos */
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
    opacity: 0.5;
  }

  .step {
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    text-align: center;
  }

  .step-num {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto 22px;
    box-shadow: 0 0 0 8px var(--paper);
  }

  .step-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: var(--r);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    color: var(--gold-deep);
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .privacy-band {
    grid-column: 1 / -1;
    grid-template-columns: 360px 1fr;
    padding: 28px;
  }

  .privacy-photo img {
    aspect-ratio: 4 / 3;
  }

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

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

  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .faq-head {
    position: sticky;
    top: calc(var(--hdr) + 32px);
  }
}

@media (min-width: 1280px) {
  .privacy-band {
    grid-template-columns: 380px 1fr;
    padding: 32px 48px 32px 32px;
  }
}

/* ═══════════════════════════════════════════════
       21. MOVIMENTO REDUZIDO + IMPRESSÃO
       ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

@media print {
  .site-header,
  .nav-drawer,
  .nav-scrim,
  .sticky-cta {
    display: none !important;
  }

  .js .faq-panel {
    grid-template-rows: 1fr;
    visibility: visible;
  }

  .hero {
    padding-top: 24px;
  }
}
