/* ═══════════════════════════════════════════
   Dr. Marllus Piotrowsky — Overrides de marca
   Tipografia elegante + paleta navy/dourado
   ═══════════════════════════════════════════ */

:root {
  --font-body: 'Jost', sans-serif;
  --font-display: 'Playfair Display', serif;
}

body { letter-spacing: 0.01em; }

.section-heading,
.hiw-heading,
.pain-heading,
.rev-deliverables-title,
.bc-title,
.hero-name {
  font-weight: 600 !important;
}

em { font-style: italic; color: #ddb867; }

/* ── Header ─────────────────────────────────────────────────────── */
.mp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(5,19,42,0.85) 0%, rgba(5,19,42,0.35) 70%, transparent 100%);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 1rem 0;
}
.mp-header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.mp-logo {
  display: flex; align-items: center; gap: 0.6rem;
  color: #f7f2e6; font-family: var(--font-display);
}
.mp-logo img { border-radius: 50%; display: block; width: 34px; height: 34px; }
.mp-logo-text { font-size: 1.05rem; letter-spacing: 0.01em; }
.mp-logo-text em { color: #ddb867; font-style: normal; }
.mp-header-cta {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  color: #241c08; background: linear-gradient(135deg, #e8cd97 0%, #ddb867 52%, #b8933e 100%);
  padding: 0.55rem 1.15rem; border-radius: 9999px;
  box-shadow: 0 6px 18px rgba(221, 184, 103, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mp-header-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(221, 184, 103, 0.42); }

/* ── Botões dourados: remove o anel giratório, sombra limpa e sutil ── */
.cta-wrap .gradient-ring,
.gb-btn-wrap .gradient-ring {
  display: none;
}
.btn-primary,
.gb-btn {
  box-shadow: 0 4px 14px rgba(221, 184, 103, 0.28) !important;
}
.cta-wrap:hover .btn-primary,
.gb-btn-wrap:hover .gb-btn {
  box-shadow: 0 6px 18px rgba(221, 184, 103, 0.38) !important;
}
.mp-nav {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.82rem; color: #d9d2c2;
}
.mp-nav a { transition: color 0.2s ease; }
.mp-nav a:hover { color: #ddb867; }
@media (max-width: 900px) {
  .mp-nav { display: none; }
}
@media (max-width: 480px) {
  .mp-logo-text { font-size: 0.85rem; }
  .mp-header-cta { font-size: 0.68rem; padding: 0.5rem 0.85rem; }
}

/* ── Hero: imagem de fundo única (full-bleed), texto sobreposto ──── */
.hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: block;
  background: #000;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 22%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.12) 62%, rgba(0,0,0,0) 78%);
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 960px;
  padding: 8rem clamp(1.5rem, 4vw, 3.5rem) 4rem clamp(3rem, 10vw, 9rem);
}
.hero-text-col .hero-seals { justify-content: flex-start; margin-left: 0; }
.hero-eyebrow-line {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ddb867;
  margin-bottom: 1.1rem;
}
.hero-text-col .hero-name {
  text-align: left; margin-left: 0; margin-right: 0; max-width: none;
  line-height: 1.08; letter-spacing: -0.01em;
}
.hero-text-col .hero-desc {
  text-align: left; margin-left: 0; margin-right: 0; max-width: 46ch;
  margin-top: -0.4rem;
}
.hero-text-col .hero-ctas { justify-content: flex-start; }
.hero-trust {
  display: flex; align-items: center; gap: 0.65rem;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: #d9d2c2;
}
.hero-trust strong { color: #f7f2e6; font-weight: 500; }
.hero-trust-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  border: 1px solid rgba(221,184,103,0.4);
  background: rgba(221,184,103,0.08);
}
.hero-trust-icon svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .hero-trust { justify-content: center; }
}

@media (max-width: 900px) {
  /* Apenas a imagem enviada (dr-marllus-foto-final-v4.jpg), sem painel sólido — a área preta já embutida na foto serve de fundo pro texto. */
  .hero {
    display: block;
    min-height: auto;
    background: #000;
    position: relative;
  }
  .hero-bg {
    position: static;
    width: 100%;
    height: auto;
  }
  .hero-bg img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
  .hero-bg-scrim { display: none; }
  .hero-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: auto;
    display: block;
    align-items: initial;
    background: none;
  }
  .hero-text-col {
    max-width: none;
    padding: 6rem 1.5rem 2.75rem;
  }
  .hero-eyebrow-line {
    width: fit-content;
    margin: 0 auto 1.1rem;
    text-align: center;
    border: 1px solid rgba(221,184,103,0.4);
    border-radius: 9999px;
    padding: 0.5rem 1.1rem;
  }
  .hero-text-col .hero-name { max-width: none; margin-bottom: 1.1rem; }
  .hero-text-col .hero-desc { margin-bottom: 1.75rem; }
  .hero-text-col .hero-seals,
  .hero-text-col .hero-ctas { justify-content: center; }
  .hero-text-col .hero-name,
  .hero-text-col .hero-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-trust { margin-top: 1.1rem; }
}

/* ── Cards "Como funciona": imagem no topo + conteúdo abaixo ──────── */
.hiw-card {
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  background: #ffffff !important;
  border: 1px solid rgba(221,184,103,0.4) !important;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08) !important;
}
.hiw-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hiw-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hiw-card:hover .hiw-card-img img { transform: scale(1.04); }
.hiw-card-content {
  position: relative;
  height: auto !important;
  flex: 1;
  padding: 0.55rem 1.4rem 1.4rem !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  background: none !important;
}
.hiw-step {
  position: static !important;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.9rem;
  background: linear-gradient(120deg, #8a6a24 0%, #e8cd97 45%, #f5e4bb 60%, #b8933e 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hiwStepShine 6s ease-in-out infinite;
}
@keyframes hiwStepShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hiw-card h3 { min-height: 0 !important; font-size: 1.15rem !important; color: #05132a !important; }
.hiw-card p { font-size: 0.88rem !important; color: #5b6470 !important; opacity: 1 !important; }

/* ── Procedimentos: card em destaque + "também realiza" ───────────── */
.works-section { padding-bottom: 0 !important; padding-top: 2.5rem !important; }
.proc-section { position: relative; }
.proc-top, .proc-bottom, .proc-divider {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.proc-top > *, .proc-bottom > *, .proc-divider > * { max-width: 920px; margin-left: auto; margin-right: auto; }
.proc-top { padding: 1.5rem 1.5rem 3rem; background: #f4f6f8; }
.proc-bottom { padding: 3rem 1.5rem 4rem; background: #020509; }
.proc-header { text-align: center; margin-bottom: 2.5rem; }

.proc-divider {
  position: relative;
  height: 64px;
  background: linear-gradient(to bottom, #f4f6f8 0%, #f4f6f8 49%, #020509 51%, #020509 100%);
  overflow: hidden;
}
.proc-divider-wave {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 100%; height: 32px;
}
.proc-divider-arrow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: #020509; border: 1px solid rgba(221,184,103,0.55);
}

.proc-feature {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(221,184,103,0.4);
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}
@media (min-width: 800px) {
  .proc-feature { grid-template-columns: 1.15fr 1fr; max-height: 400px; }
}
.proc-feature-media { position: relative; min-height: 260px; overflow: hidden; }
.proc-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 800px) { .proc-feature-media { min-height: 100%; max-height: 400px; } }
.proc-feature-content {
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0.7rem;
}
.proc-feature-content h3,
.proc-feature-content h2 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #05132a; margin: 0; line-height: 1.2;
}

/* ── Seção Quem Sou / Por que escolher ────────────────────────────── */
.about-section {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: #f5f7fa;
  padding: 3.5rem 1.5rem;
}
.about-section > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
@media (max-width: 767px) {
  /* Evita dobrar o padding lateral (seção + .container já somam) deixando o card fino no mobile */
  .about-section { padding-left: 0; padding-right: 0; }
}
.about-feature .proc-feature-content { justify-content: center; gap: 1.25rem; }
.about-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.about-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-checklist svg {
  flex: none; width: 20px; height: 20px; margin-top: 0.15rem;
  color: #b8933e;
}
.about-checklist span { color: #3a4048; font-size: 0.95rem; line-height: 1.5; }
@media (min-width: 800px) {
  .about-feature.proc-feature { max-height: none; }
  .about-feature .proc-feature-media { max-height: 560px; }
}
.proc-feature-tag {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #b8933e; font-weight: 600;
}
.proc-feature-content p { color: #5b6470; font-size: 0.95rem; line-height: 1.6; margin: 0; }

.proc-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0.2rem 0; }
.proc-pill {
  font-size: 0.75rem; padding: 0.4rem 0.85rem; border-radius: 9999px;
  background: #f7f2e2; border: 1px solid rgba(221,184,103,0.4);
  color: #7a6a3f; white-space: nowrap;
}

.proc-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.4rem; padding: 0.8rem 1.5rem; border-radius: 9999px;
  background: linear-gradient(135deg, #e8cd97 0%, #ddb867 52%, #b8933e 100%);
  color: #241c08; font-size: 0.85rem; font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(221,184,103,0.25);
}
.proc-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(221,184,103,0.35); }
.proc-cta-outline {
  background: transparent; color: #ddb867;
  border: 1px solid rgba(221,184,103,0.5); box-shadow: none;
}
.proc-cta-outline:hover { background: rgba(221,184,103,0.08); box-shadow: none; }

.proc-also-header { text-align: center; margin: 0 auto 1.5rem; }
.proc-also-header h3 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: #f7f2e6; margin: 0; text-align: center !important;
}
.proc-also-header h3 em { color: #ddb867; }

.proc-secondary-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.proc-secondary {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #050d1c 0%, #020509 75%);
  border: 1px solid rgba(221,184,103,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
@media (min-width: 800px) {
  .proc-secondary { grid-template-columns: 1.15fr 1fr; max-height: 360px; }
}
.proc-secondary-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.proc-secondary-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 800px) { .proc-secondary-media { aspect-ratio: auto; min-height: 100%; max-height: 360px; } }
.proc-secondary-content {
  padding: 1.75rem clamp(1.5rem, 3.5vw, 2.5rem);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0.65rem;
}
.proc-secondary-content h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.35rem, 2.4vw, 1.7rem); color: #f7f2e6; margin: 0; }
.proc-secondary-content p { color: #9bb0c4; font-size: 0.9rem; line-height: 1.55; margin: 0; }
.proc-secondary .proc-pill {
  background: rgba(221,184,103,0.08);
  border: 1px solid rgba(221,184,103,0.35);
  color: #e8d9b0;
}

.proc-morpheus {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 2.5rem; padding: 1.5rem 1.75rem; border-radius: 18px;
  background: rgba(221,184,103,0.06);
  border: 1px solid rgba(221,184,103,0.3);
}
.proc-morpheus-icon { flex: none; width: 56px; height: 56px; }
.proc-morpheus-icon svg { width: 100%; height: 100%; }
.proc-morpheus-text h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #f7f2e6; margin: 0 0 0.35rem; }
.proc-morpheus-text p { font-size: 0.88rem; color: #9bb5a5; line-height: 1.55; margin: 0; }
@media (max-width: 600px) {
  .proc-morpheus { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ── Procedure icon media (substitui imagens do template) ────────── */
.tight-card .tight-media.mp-icon-media,
.rev-deliverables-grid > .tight-card:nth-child(2) .tight-media.mp-icon-media {
  height: 200px !important;
  align-items: center !important;
  justify-content: center !important;
  display: flex !important;
  background: radial-gradient(circle at 50% 45%, rgba(221,184,103,0.16) 0%, rgba(221,184,103,0.02) 70%) !important;
  padding: 1.5rem !important;
}
.mp-proc-icon { width: 100%; max-width: 118px; height: auto; }
@media (max-width: 767px) {
  .tight-card .tight-media.mp-icon-media,
  .rev-deliverables-grid > .tight-card:nth-child(2) .tight-media.mp-icon-media {
    height: 170px !important;
  }
}

/* ── Diferenciais icon medallion ──────────────────────────────────*/
.mp-diff-icon {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 140px;
}
.mp-diff-icon svg { width: 96px; height: 96px; }

/* ── Carrossel Antes e Depois (imagens no lugar de vídeo) ─────────── */
.vc-slide {
  box-shadow: 0 4px 16px rgba(5, 19, 42, 0.1) !important;
  border: 1px solid rgba(5, 19, 42, 0.08);
}
.vc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.ba-disclaimer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ── Reduz o respiro antes da nova divisória ondulada ─────────────── */
.benefits-fx-primary { padding-bottom: 2rem !important; }
@media (max-width: 767px) {
  .benefits-fx-primary { padding-bottom: 2.5rem !important; }
}

/* ── Transições antigas embaçadas: desativadas, ver .wave-divider ── */
.works-section::before { display: none !important; }
.bonus-section::before { display: none !important; }

/* ── Divisória ondulada reutilizável (com setinha) ─────────────────── */
.wave-divider {
  position: relative;
  height: 64px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}
.wave-divider-wave {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 100%; height: 32px;
}
.wave-divider-arrow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(221,184,103,0.55);
}
.wave-divider--dark-to-light { background: linear-gradient(to bottom, #020509 0%, #020509 49%, #f5f7fa 51%, #f5f7fa 100%); }
.wave-divider--dark-to-light .wave-divider-arrow { background: #020509; }

/* ── Antes e Depois (grid antigo, mantido caso volte a ser usado) ─── */
.ba-section {
  position: relative;
  background: #05132a;
  padding: 6rem 0 5rem;
}
.ba-sub {
  max-width: 46rem;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ba-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(221,184,103,0.18);
  background: #0a1e3d;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.ba-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(22px) saturate(0.9) brightness(0.85);
  transform: scale(1.08);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.ba-card.is-revealed img { filter: blur(0) saturate(1) brightness(1); transform: scale(1); }
.ba-veil {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  background: rgba(5,19,42,0.45);
  color: #f4efe4;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.4;
  transition: opacity 0.4s ease;
}
.ba-veil svg { width: 30px; height: 30px; }
.ba-card.is-revealed .ba-veil { opacity: 0; pointer-events: none; }
.ba-disclaimer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  max-width: 40rem;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 560px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ── Centraliza a faixa de texto em movimento entre as duas seções ── */
.pain-highlight { margin-bottom: clamp(1rem, 2vw, 1.75rem); }
@media (min-width: 768px) {
  .pain-section { padding-bottom: 3rem; }
}

/* ── Degradê de escurecimento progressivo ao longo do scroll ─────── */
/* Começa no azul atual (topo) e vai escurecendo até quase preto (rodapé) */
body { background-color: #010306; }
.video-carousel-section.theme-dark { background: #020509; }
.pain-section { background: #020509; }
.pain-marquee-wrap { background: #020509; }
.benefits-fx-section.benefits-fx-primary { background: #020509; }
.bonus-section { background: #040e1f; }
.benefits-fx-section:not(.benefits-fx-primary) { background: #030d1c; }
.banner-highlight-section { background: #030b18; }
.offer-section { background: #030914; }
.guarantee-section { background: radial-gradient(ellipse 900px 520px at 50% 10%, #0c2044 0%, #041022 45%, #020509 100%); }
.comparison-section { background: #02060d; }
.faq-section { background: #01050a; }
.copyright-footer { background: #010306; }

/* ── Footer ─────────────────────────────────────────────────────── */
.mp-footer {
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.mp-footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 1.1rem; color: #f7f2e6;
  margin-bottom: 0.5rem;
}
.mp-footer-logo img { border-radius: 50%; }
.mp-footer-logo em { color: #ddb867; font-style: normal; }
.mp-footer p { color: var(--color-muted); font-size: 0.82rem; margin: 0; }
.mp-footer a { color: #ddb867; }
.mp-footer a:hover { text-decoration: underline; }
