﻿:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f6368;
  --soft: #faf7f2;
  --surface: #ffffff;
  --line: #e5e7eb;
  --navy: #171717;
  --steel: #3f3f46;
  --teal: #00a86b;
  --amber: #ff5a1f;
  --orange: #ff5a1f;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fc;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 226, 234, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ff5a1f, #171717);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--orange);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.primary-button {
  background: linear-gradient(135deg, #ff5a1f, #f59e0b);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.32);
}

.secondary-button {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.compact {
  min-height: 40px;
}

.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 56px;
  background:
    linear-gradient(130deg, rgba(23, 23, 23, 0.94), rgba(255, 90, 31, 0.70)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.hero-copy {
  max-width: 780px;
}

body:not(.beauty-page) .hero-copy h1 {
  max-width: 720px;
  text-wrap: balance;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  max-width: 680px;
  margin-bottom: 18px;
  color: #ffb24a;
  font-size: clamp(17px, 2.1vw, 25px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

body:not(.beauty-page) h1 {
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.03;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.trust-row strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-local-notice {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(20, 33, 61, 0.96), rgba(15, 118, 110, 0.84));
  color: #fff;
  text-align: center;
}

.video-local-notice strong {
  font-size: clamp(20px, 3vw, 32px);
}

.video-local-notice span {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.76);
}

.hidden {
  display: none !important;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}

.video-placeholder strong {
  font-size: clamp(24px, 3vw, 36px);
}

.video-placeholder p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.play-large {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 26px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.media-note {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.section-band,
.content-section,


.faq-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  text-align: center;
}

.faq-section .section-heading {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.faq-section .section-heading h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
}

.faq-section .section-heading > p {
  max-width: 560px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.65;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1040px);
  margin-inline: auto;
  text-align: left;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.28;
}

.faq-grid details[open] summary {
  margin-bottom: 12px;
  color: var(--hotmart-orange);
}

.faq-grid details p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.contact-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
  padding-top: 0;
  padding-bottom: 0;
}

.metrics-band article {
  min-height: 184px;
  background: #fff;
  padding: 32px;
}

.metrics-band span,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--teal);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.metrics-band strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 21px;
}

.metrics-band p,
.program-card p,
.proof-grid p,
.sales-copy p,
.section-heading p,
.split-section p,
.offer-panel p,
.contact-section p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pillar-card,
.program-card,
.proof-grid article,
.offer-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}
.card-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--pink);
  font-weight: 900;
  text-decoration: none;
}

.card-action-link:hover {
  color: var(--orange);
}

.pillar-card {
  min-height: 168px;
  padding: 22px;
  text-align: left;
  color: var(--ink);
}

.pillar-card.active {
  border-color: rgba(255, 90, 31, 0.42);
  background: #fff7ed;
}

.pillar-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-weight: 900;
}

.pillar-card strong {
  font-size: 18px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 560px;
}

code {
  border-radius: 6px;
  background: #faf7f2;
  padding: 2px 6px;
  color: var(--navy);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.inline-player {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.inline-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  display: none;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.empty-video {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.96), rgba(15, 118, 110, 0.82)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 255, 255, 0.08) 16px 18px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  font-weight: 900;
}

.play-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal);
  font-weight: 900;
}

.video-card div:last-child {
  padding: 18px;
}

.video-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.video-card p {
  color: var(--muted);
  font-size: 14px;
}


.sales-section {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}

.sales-section .sales-copy {
  max-width: 980px;
  margin-inline: auto;
}

.sales-section .sales-copy .eyebrow {
  justify-content: center;
}

.sales-section .sales-copy h2 {
  max-width: 940px;
  margin: 0 auto 14px;
}

.sales-section .sales-copy p:not(.eyebrow) {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
}

.sales-section .offer-panel {
  width: min(100%, 760px);
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
}

.sales-section .offer-panel .tag {
  margin-inline: auto;
}

.sales-section .offer-panel h3 {
  max-width: 680px;
  margin: 8px auto 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.sales-section .offer-panel .price {
  margin: 0 auto 14px;
  color: var(--hotmart-orange);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.sales-section .offer-panel p:not(.price) {
  max-width: 620px;
  margin: 0 auto 18px;
  line-height: 1.65;
}
.programs-section {
  background: #faf7f2;
}

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.testimonial-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.testimonial-video-card iframe {
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  background: #000;
}

.testimonial-video-card div {
  padding: 18px;
}

.testimonial-video-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.testimonial-video-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-video-card a {
  display: inline-flex;
  margin-right: 12px;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.testimonial-video-card .watch-link {
  color: var(--muted);
}

.proof-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(219, 39, 119, 0.22);
  border-radius: var(--radius);
  background: #fff1f6;
}

.proof-cta p {
  max-width: 620px;
  color: var(--ink);
  font-weight: 800;
}
.program-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  padding: 24px;
}

.program-card.featured {
  background: linear-gradient(145deg, #171717, #3f3f46);
  color: #fff;
}

.program-card.featured p,
.program-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.program-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--muted);
}

.program-price {
  margin: 8px 0 14px;
  color: var(--teal) !important;
  font-size: 28px;
  font-weight: 900;
}

.program-card.featured .program-price {
  color: #ffb199 !important;
}

.beauty-hero {
  background:
    linear-gradient(130deg, rgba(76, 24, 52, 0.95), rgba(190, 24, 93, 0.78)),
    url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-offer-card {
  align-self: center;
  display: grid;
  gap: 16px;
  max-width: 520px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 252, 0.96));
  box-shadow: 0 28px 70px rgba(44, 11, 31, 0.24);
}

.hero-offer-card .tag {
  background: #fff1f2;
  color: var(--pink);
}

.hero-offer-card h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.04;
  text-align: center;
}

.hero-offer-card .offer-subtitle {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.55;
}

.hero-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fff7ed;
  color: #7c2d12;
}

.hero-price-row span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-price-row strong {
  color: var(--orange);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.9;
}

.hero-offer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-offer-list li {
  position: relative;
  padding-left: 28px;
  color: #374151;
  font-size: 15px;
  line-height: 1.5;
}

.hero-offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
  font-size: 12px;
  font-weight: 900;
}

.hero-offer-card .offer-note {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--pink);
  border-radius: 10px;
  background: #fdf2f8;
  color: #6b2148;
  font-size: 14px;
  line-height: 1.5;
}

.hero-offer-card .primary-button {
  min-height: 54px;
  border-radius: 12px;
  background: var(--pink);
  box-shadow: 0 16px 34px rgba(219, 39, 119, 0.28);
  font-size: 16px;
}

.hero-offer-card .checkout-note {
  margin: -4px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.beauty-page {
  --navy: #2a1724;
  --steel: #7c2d55;
  --teal: #be185d;
  --amber: #f3b7a4;
  --orange: #db2777;
  --soft: #fff1f6;
  background: #fff7fa;
}

.beauty-page .site-header {
  min-height: 84px;
  padding-block: 16px;
  background: rgba(255, 247, 251, 0.96);
  border-bottom: 1px solid rgba(219, 39, 119, 0.16);
  box-shadow: 0 12px 34px rgba(76, 24, 52, 0.08);
}
.beauty-page .brand {
  gap: 14px;
}

.beauty-page .brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #be185d, #fb7185);
  box-shadow: 0 12px 26px rgba(190, 24, 93, 0.24);
  font-size: 17px;
}

.beauty-page .brand strong {
  color: #24111d;
  font-size: 17px;
  font-weight: 900;
}

.beauty-page .brand small {
  margin-top: 3px;
  color: #7c2d55;
  font-size: 13px;
  font-weight: 700;
}

.beauty-page .nav-links {
  justify-self: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(190, 24, 93, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.beauty-page .nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #5b344d;
  font-size: 14px;
  font-weight: 850;
}

.beauty-page .nav-links a:hover {
  background: #fff1f2;
  color: var(--pink);
}

.beauty-page .header-cta {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #db2777, #be185d);
  box-shadow: 0 16px 34px rgba(219, 39, 119, 0.28);
  font-size: 15px;
  font-weight: 900;
}
.beauty-page .tag,
.beauty-page .metrics-band span {
  background: #fff1f6;
  color: #be185d;
}

.beauty-page 
.programs-section {
  background: linear-gradient(180deg, #fff7fa, #fff1f6);
}



.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(180deg, #f8fafc, #fff7f2);
}

.contact-copy {
  max-width: 680px;
}

.contact-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.14);
}

.message-field,
.form-grid label:last-child {
  grid-column: 1 / -1;
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-feedback {
  min-height: 22px;
  color: var(--muted);
  font-weight: 700;
}

.form-feedback a {
  color: var(--teal);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(160px, 0.7fr) minmax(240px, 0.9fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 72px) 24px;
  background: #111827;
  color: #f8fafc;
  border-top: 4px solid var(--hotmart-orange);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand .brand-mark {
  flex: 0 0 auto;
}

.footer-brand strong,
.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.footer-brand p,
.footer-legal span {
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.65;
}

.footer-links,
.footer-contact,
.footer-legal {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(248, 250, 252, 0.82);
  font-weight: 800;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-legal {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  font-size: 13px;
}

.footer-legal span:last-child {
  text-align: right;
}
@media (max-width: 980px) {
  .hero-section,
  .split-section,
  
.contact-section {
    grid-template-columns: 1fr;
  }


  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    font-size: clamp(34px, 12vw, 48px);
  }
  .hero-section {
    min-height: auto;
  }

  .video-grid,
  .program-grid,
  .proof-grid,
  .testimonial-video-grid,
  .metrics-band,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .hero-section,
  .section-band,
  .content-section,
  
.contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions,
  .trust-row,
  .section-heading,
  .proof-cta,
  .site-footer {
    display: grid;
  }

  .footer-legal {
    text-align: left;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }
}





























.beauty-page #esteira {
  padding-top: clamp(82px, 9vw, 132px);
  padding-bottom: clamp(86px, 9vw, 138px);
}

.beauty-page #esteira .section-heading {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto clamp(44px, 5vw, 68px);
  text-align: center;
}

.beauty-page #esteira .section-heading > div {
  max-width: 940px;
}

.beauty-page #esteira .section-heading .eyebrow {
  margin-inline: auto;
  margin-bottom: 14px;
}

.beauty-page #esteira .section-heading h2 {
  margin-bottom: 18px;
}

.beauty-page #esteira .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
}

.beauty-page #esteira .program-grid {
  gap: clamp(22px, 3vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
}

.beauty-page #esteira .program-card {
  min-height: 220px;
  padding: clamp(28px, 3vw, 38px);
}

.beauty-page #depoimentos {
  padding-top: clamp(82px, 8vw, 124px);
}
/* Header Beauty - legibilidade reforcada */
.beauty-page .site-header {
  min-height: 108px;
  padding-block: 24px;
  padding-inline: clamp(36px, 5vw, 68px);
  grid-template-columns: minmax(250px, 1fr) auto minmax(210px, 1fr);
}

.beauty-page .brand {
  gap: 18px;
}

.beauty-page .brand-mark {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  font-size: 22px;
  font-weight: 950;
}

.beauty-page .brand strong {
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
}

.beauty-page .brand small {
  margin-top: 7px;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
}

.beauty-page .nav-links {
  gap: 12px;
  padding: 10px;
}

.beauty-page .nav-links a {
  padding: 14px 18px;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.beauty-page .header-cta {
  justify-self: end;
  min-height: 64px;
  padding-inline: 34px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
}

@media (max-width: 1100px) {
  .beauty-page .site-header {
    grid-template-columns: 1fr auto;
    min-height: 96px;
  }

  .beauty-page .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    margin-top: 12px;
  }
}

@media (max-width: 920px) {
  .beauty-page .site-header {
    min-height: 84px;
    padding-inline: 20px;
  }

  .beauty-page .brand-mark {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .beauty-page .brand strong {
    font-size: 18px;
  }

  .beauty-page .brand small {
    font-size: 13px;
  }

  .beauty-page .header-cta {
    min-height: 54px;
    padding-inline: 24px;
    font-size: 15px;
  }
}
/* Responsividade global - desktop, tablet, iPad e celular */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
iframe,
video,
canvas,
svg {
  max-width: 100%;
}

.site-header,
.hero-section,
.section-band,
.content-section,
.contact-section,
.site-footer {
  width: 100%;
}

.hero-copy,
.hero-media,
.hero-offer-card,
.offer-panel,
.program-card,
.pillar-card,
.proof-grid article,
.faq-grid details,
.testimonial-video-card,
.video-card,
.lead-form {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
strong,
summary,
button,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: clamp(24px, 4vw, 44px);
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

@media (max-width: 980px) {
  .site-header,
  .beauty-page .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 76px;
    padding: 14px 18px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .header-cta,
  .beauty-page .header-cta {
    justify-self: end;
  }

  .nav-links,
  .beauty-page .nav-links {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    z-index: 30;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 8px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .beauty-page .nav-links a {
    display: flex;
    justify-content: center;
    min-height: 46px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 15px;
  }

  .hero-section,
  .beauty-page .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(44px, 8vw, 72px);
  }

  .hero-copy,
  .hero-media,
  .hero-offer-card {
    max-width: 100%;
  }

  .section-heading,
  .beauty-page #esteira .section-heading {
    display: grid;
    justify-items: start;
    text-align: left;
    gap: 14px;
  }

  .beauty-page #esteira .section-heading {
    justify-items: center;
    text-align: center;
  }

  .metrics-band,
  .program-grid,
  .proof-grid,
  .testimonial-video-grid,
  .faq-grid,
  .pillar-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-legal span:last-child {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header,
  .beauty-page .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 72px;
    padding: 12px 14px;
  }

  .brand,
  .beauty-page .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark,
  .beauty-page .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 15px;
  }

  .brand strong,
  .beauty-page .brand strong {
    font-size: 15px;
    line-height: 1.1;
  }

  .brand small,
  .beauty-page .brand small {
    display: block;
    font-size: 11px;
  }

  .header-cta,
  .beauty-page .header-cta {
    display: none;
  }

  .nav-links,
  .beauty-page .nav-links {
    top: 72px;
  }

  .hero-section,
  .section-band,
  .content-section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 54px);
    line-height: 1.02;
  }

  h2,
  .faq-section .section-heading h2 {
    font-size: clamp(30px, 9.5vw, 44px);
    line-height: 1.06;
  }

  .hero-text,
  .section-heading p,
  .sales-section .sales-copy p:not(.eyebrow),
  .contact-section p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .proof-cta {
    grid-template-columns: 1fr;
  }

  .hero-actions a,
  .proof-cta a,
  .primary-button.full,
  .secondary-button.full {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row span {
    max-width: none;
    width: 100%;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-price-row {
    align-items: start;
    display: grid;
    gap: 8px;
  }

  .hero-offer-card,
  .sales-section .offer-panel,
  .lead-form,
  .faq-grid details,
  .program-card,
  .pillar-card {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .hero-section,
  .section-band,
  .content-section,
  .contact-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand strong,
  .beauty-page .brand strong {
    font-size: 14px;
  }

  .brand small,
  .beauty-page .brand small {
    font-size: 10px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero-copy > .eyebrow {
    font-size: 14px;
  }

  .play-large {
    width: 58px;
    height: 58px;
  }
}



body:not(.beauty-page) .hero-section {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

body:not(.beauty-page) .hero-copy {
  max-width: 860px;
  display: grid;
  justify-items: center;
}

body:not(.beauty-page) .hero-copy > .eyebrow,
body:not(.beauty-page) .hero-copy h1,
body:not(.beauty-page) .hero-text {
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) .hero-actions,
body:not(.beauty-page) .trust-row {
  justify-content: center;
}

body:not(.beauty-page) .hero-media {
  width: min(760px, 100%);
}


body:not(.beauty-page) .hero-copy > .eyebrow {
  font-size: clamp(19px, 2.2vw, 28px);
  color: #ffd08a;
}

body:not(.beauty-page) h1 {
  max-width: 900px;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 1.04;
}

body:not(.beauty-page) .hero-text {
  max-width: 820px;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.55;
  font-weight: 600;
}

body:not(.beauty-page) .hero-actions a {
  min-height: 54px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
}

body:not(.beauty-page) .media-note {
  margin: 18px auto 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #171717;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

body:not(.beauty-page) .metrics-band {
  gap: 12px;
  background: #f3f4f6;
  padding-top: 28px;
  padding-bottom: 28px;
}

body:not(.beauty-page) .metrics-band article {
  min-height: 220px;
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

body:not(.beauty-page) .metrics-band span {
  margin-left: auto;
  margin-right: auto;
  min-height: 34px;
  padding: 0 14px;
  font-size: 14px;
}

body:not(.beauty-page) .metrics-band strong {
  margin: 18px 0 12px;
  color: #111827;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.15;
}

body:not(.beauty-page) .metrics-band p {
  max-width: 340px;
  margin: 0 auto;
  color: #374151;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
  font-weight: 600;
}

body:not(.beauty-page) #metodo {
  align-items: center;
  padding-top: clamp(70px, 8vw, 110px);
}

body:not(.beauty-page) #metodo > div:first-child {
  max-width: 620px;
}

body:not(.beauty-page) #metodo .eyebrow {
  font-size: 15px;
}

body:not(.beauty-page) #metodo h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.05;
}

body:not(.beauty-page) #metodo p:not(.eyebrow) {
  color: #374151;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7;
}

body:not(.beauty-page) #metodo .text-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 18px;
}

@media (max-width: 640px) {
  body:not(.beauty-page) h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  body:not(.beauty-page) .hero-text {
    font-size: 18px;
  }
}


body:not(.beauty-page) #metodo {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  gap: 34px;
}

body:not(.beauty-page) #metodo > div:first-child {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) #metodo h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

body:not(.beauty-page) #metodo p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) #metodo .text-link {
  justify-content: center;
  margin-top: 18px;
}

body:not(.beauty-page) #metodo .pillar-grid {
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) #videos .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  gap: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) #videos .section-heading h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  text-wrap: balance;
}

body:not(.beauty-page) #videos .section-heading p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: #374151;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  font-weight: 600;
}

body:not(.beauty-page) #videos {
  text-align: center;
}

@media (max-width: 640px) {
  body:not(.beauty-page) #metodo,
  body:not(.beauty-page) #videos .section-heading {
    text-align: center;
  }

  body:not(.beauty-page) #videos .section-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
}


body:not(.beauty-page) #servicos .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 34px;
}

body:not(.beauty-page) #servicos .section-heading > div {
  max-width: 900px;
}

body:not(.beauty-page) #servicos .section-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) #servicos .section-heading h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  text-wrap: balance;
}

body:not(.beauty-page) #servicos .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #374151;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
  font-weight: 600;
}

body:not(.beauty-page) #servicos .section-heading .primary-button {
  justify-self: center;
  min-width: 210px;
}

body:not(.beauty-page) .video-card div:last-child {
  padding: 22px 20px 24px;
  text-align: center;
}

body:not(.beauty-page) .video-card strong {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  color: #111827;
  font-size: 18px;
  line-height: 1.28;
}

body:not(.beauty-page) .video-card p {
  max-width: 280px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}


body:not(.beauty-page) .section-band,
body:not(.beauty-page) .content-section,
body:not(.beauty-page) .contact-section {
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

body:not(.beauty-page) .metrics-band {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

body:not(.beauty-page) #videos,
body:not(.beauty-page) #servicos,
body:not(.beauty-page) #beleza,
body:not(.beauty-page) #contato,
body:not(.beauty-page) #faq {
  scroll-margin-top: 92px;
}

body:not(.beauty-page) #videos .inline-player,
body:not(.beauty-page) #videos .video-grid,
body:not(.beauty-page) .program-grid,
body:not(.beauty-page) .faq-grid {
  margin-top: clamp(28px, 4vw, 48px);
}

body:not(.beauty-page) .section-heading {
  margin-bottom: clamp(32px, 4vw, 56px);
}

@media (max-width: 640px) {
  body:not(.beauty-page) .section-band,
  body:not(.beauty-page) .content-section,
  body:not(.beauty-page) .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}


body:not(.beauty-page) .site-header {
  min-height: 76px;
  padding: 14px clamp(24px, 5vw, 84px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

body:not(.beauty-page) .brand {
  gap: 14px;
}

body:not(.beauty-page) .brand-mark {
  width: 42px;
  height: 42px;
  font-size: 15px;
}

body:not(.beauty-page) .brand strong {
  color: #111827;
  font-size: 17px;
  line-height: 1.15;
}

body:not(.beauty-page) .brand small {
  margin-top: 3px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
}

body:not(.beauty-page) .nav-links {
  gap: clamp(18px, 2.4vw, 34px);
}

body:not(.beauty-page) .nav-links a {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

body:not(.beauty-page) .header-cta {
  min-height: 48px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 900;
  border-radius: 8px;
}

@media (max-width: 640px) {
  body:not(.beauty-page) .site-header {
    min-height: 70px;
    padding-left: 16px;
    padding-right: 16px;
  }

  body:not(.beauty-page) .brand-mark {
    width: 38px;
    height: 38px;
  }
}


body:not(.beauty-page) .brand strong {
  font-size: 20px;
}

body:not(.beauty-page) .brand small {
  font-size: 14px;
}

body:not(.beauty-page) .nav-links a {
  font-size: 16px;
}

body:not(.beauty-page) .header-cta {
  min-height: 52px;
  padding: 0 30px;
  font-size: 17px;
}

body:not(.beauty-page) .brand-mark {
  width: 46px;
  height: 46px;
  font-size: 16px;
}

@media (max-width: 640px) {
  body:not(.beauty-page) .brand strong {
    font-size: 17px;
  }

  body:not(.beauty-page) .brand small {
    font-size: 12px;
  }
}


body:not(.beauty-page) .site-header {
  min-height: 92px;
  padding-top: 18px;
  padding-bottom: 18px;
}

body:not(.beauty-page) .brand {
  gap: 18px;
}

body:not(.beauty-page) .brand-mark {
  width: 58px;
  height: 58px;
  font-size: 20px;
  border-radius: 10px;
}

body:not(.beauty-page) .brand strong {
  font-size: 26px;
  line-height: 1.05;
}

body:not(.beauty-page) .brand small {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.2;
}

body:not(.beauty-page) .nav-links {
  gap: clamp(26px, 3vw, 44px);
}

body:not(.beauty-page) .nav-links a {
  font-size: 19px;
  line-height: 1;
}

body:not(.beauty-page) .header-cta {
  min-height: 62px;
  padding: 0 38px;
  font-size: 20px;
  border-radius: 10px;
}

@media (max-width: 980px) {
  body:not(.beauty-page) .brand strong {
    font-size: 22px;
  }

  body:not(.beauty-page) .brand small {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  body:not(.beauty-page) .site-header {
    min-height: 78px;
  }

  body:not(.beauty-page) .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  body:not(.beauty-page) .brand strong {
    font-size: 18px;
  }
}


body:not(.beauty-page) #metodo .eyebrow {
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(4, 120, 87, 0.12);
}

body:not(.beauty-page) #metodo .text-link {
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #047857;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(4, 120, 87, 0.2);
}


body:not(.beauty-page) #metodo .pillar-card {
  min-height: 170px;
  padding: 30px 28px;
  border-radius: 10px;
  text-align: left;
}

body:not(.beauty-page) #metodo .pillar-card span {
  margin-bottom: 22px;
  color: #ff5a1f;
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 900;
  line-height: 1.1;
}

body:not(.beauty-page) #metodo .pillar-card strong {
  color: #111827;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 900;
}

body:not(.beauty-page) #metodo .pillar-grid {
  width: min(1080px, 100%);
  gap: 18px;
}

@media (max-width: 640px) {
  body:not(.beauty-page) #metodo .pillar-card {
    min-height: 150px;
    padding: 24px 22px;
  }

  body:not(.beauty-page) #metodo .pillar-card span {
    font-size: 19px;
  }

  body:not(.beauty-page) #metodo .pillar-card strong {
    font-size: 21px;
  }
}


body:not(.beauty-page) .video-card {
  min-height: 260px;
}

body:not(.beauty-page) .video-card div:last-child {
  padding: 30px 24px 32px;
}

body:not(.beauty-page) .video-card strong {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.18;
}

body:not(.beauty-page) .video-card p {
  max-width: 360px;
  color: #1f2937;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  font-weight: 600;
}

body:not(.beauty-page) .video-grid {
  gap: 18px;
}

@media (max-width: 640px) {
  body:not(.beauty-page) .video-card strong {
    font-size: 22px;
  }

  body:not(.beauty-page) .video-card p {
    font-size: 18px;
  }
}


body:not(.beauty-page) #servicos .program-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

body:not(.beauty-page) #servicos .program-card li {
  margin: 10px 0;
  padding: 0;
  color: #374151;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.45;
  font-weight: 600;
}

body:not(.beauty-page) #servicos .program-card h3 {
  font-size: clamp(27px, 2.2vw, 34px);
  line-height: 1.15;
}

body:not(.beauty-page) #servicos .program-card > p:not(.program-price) {
  color: #374151;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  font-weight: 500;
}

body:not(.beauty-page) #servicos .program-price {
  font-size: clamp(27px, 2.2vw, 34px);
  line-height: 1.15;
}


body:not(.beauty-page) #servicos .program-card.featured {
  background: linear-gradient(180deg, #171717, #24262c);
  color: #fff;
}

body:not(.beauty-page) #servicos .program-card.featured h3,
body:not(.beauty-page) #servicos .program-card.featured .program-price {
  color: #fff;
}

body:not(.beauty-page) #servicos .program-card.featured > p:not(.program-price),
body:not(.beauty-page) #servicos .program-card.featured li {
  color: rgba(255, 255, 255, 0.88);
}

body:not(.beauty-page) #servicos .program-card.featured .program-price {
  color: #ffb199;
}

body:not(.beauty-page) #servicos .program-card.featured .tag {
  background: #d1fae5;
  color: #047857;
}

body:not(.beauty-page) #servicos .program-card li {
  font-weight: 500;
}


body:not(.beauty-page) #servicos .program-card .tag {
  display: none;
}


body:not(.beauty-page) #servicos .program-grid {
  gap: clamp(28px, 3.2vw, 44px);
}

body:not(.beauty-page) #servicos .program-card {
  padding: clamp(34px, 3.4vw, 48px) clamp(28px, 3vw, 42px);
  min-height: 330px;
}

body:not(.beauty-page) #servicos .program-card h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.18;
  font-weight: 800;
}

body:not(.beauty-page) #servicos .program-card > p:not(.program-price) {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.62;
  font-weight: 500;
}

body:not(.beauty-page) #servicos .program-price {
  margin: 24px 0 20px;
  font-size: clamp(27px, 2vw, 33px);
  font-weight: 800;
}

body:not(.beauty-page) #servicos .program-card ul {
  margin-top: 18px;
}

body:not(.beauty-page) #servicos .program-card li {
  margin: 13px 0;
  font-size: clamp(17px, 1.22vw, 19px);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 640px) {
  body:not(.beauty-page) #servicos .program-grid {
    gap: 22px;
  }

  body:not(.beauty-page) #servicos .program-card {
    min-height: auto;
    padding: 30px 22px;
  }
}


body:not(.beauty-page) #beleza .offer-panel .tag {
  display: none;
}

body:not(.beauty-page) #beleza {
  gap: clamp(32px, 4vw, 54px);
}

body:not(.beauty-page) #beleza .sales-copy h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.08;
  text-wrap: balance;
}

body:not(.beauty-page) #beleza .sales-copy p:not(.eyebrow) {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #374151;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.7;
  font-weight: 500;
}

body:not(.beauty-page) #beleza .offer-panel {
  width: min(720px, 100%);
  padding: clamp(34px, 4vw, 52px);
  text-align: center;
}

body:not(.beauty-page) #beleza .offer-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.1;
}

body:not(.beauty-page) #beleza .offer-panel .price {
  margin-bottom: 18px;
  color: #111827;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
}

body:not(.beauty-page) #beleza .offer-panel p:not(.price) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: #374151;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  font-weight: 500;
}

body:not(.beauty-page) #beleza .offer-panel .primary-button,
body:not(.beauty-page) #beleza .offer-panel .secondary-button {
  min-height: 52px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 8px;
}

body:not(.beauty-page) #beleza .offer-panel .secondary-button {
  margin-top: 10px;
}


body:not(.beauty-page) #contato .contact-copy .eyebrow {
  font-size: 16px;
}

body:not(.beauty-page) #contato .contact-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.08;
  text-wrap: balance;
}

body:not(.beauty-page) #contato .contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #374151;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.7;
  font-weight: 500;
}

body:not(.beauty-page) #contato .lead-form {
  padding: clamp(34px, 3.4vw, 48px);
}

body:not(.beauty-page) #contato label {
  color: #111827;
  font-size: 16px;
  font-weight: 800;
}

body:not(.beauty-page) #contato input,
body:not(.beauty-page) #contato select,
body:not(.beauty-page) #contato textarea {
  min-height: 54px;
  margin-top: 9px;
  padding: 14px 16px;
  color: #111827;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

body:not(.beauty-page) #contato textarea {
  min-height: 150px;
}

body:not(.beauty-page) #contato input::placeholder,
body:not(.beauty-page) #contato textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

body:not(.beauty-page) #contato .primary-button.full {
  min-height: 58px;
  font-size: 18px;
  font-weight: 800;
}

body:not(.beauty-page) #contato .form-grid {
  gap: 22px;
}

body:not(.beauty-page) #contato .message-field {
  margin-top: 22px;
}


body:not(.beauty-page) #contato.contact-section {
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

body:not(.beauty-page) #contato .contact-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) #contato .contact-copy .eyebrow,
body:not(.beauty-page) #contato .contact-copy h2,
body:not(.beauty-page) #contato .contact-copy p {
  margin-left: auto;
  margin-right: auto;
}

body:not(.beauty-page) #contato .lead-form {
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

body:not(.beauty-page) #contato input,
body:not(.beauty-page) #contato select,
body:not(.beauty-page) #contato textarea {
  border-radius: 8px;
  border-color: #cfd7e3;
  background: #fff;
}

body:not(.beauty-page) #contato input:focus,
body:not(.beauty-page) #contato select:focus,
body:not(.beauty-page) #contato textarea:focus {
  outline: 3px solid rgba(255, 90, 31, 0.18);
  border-color: #ff5a1f;
}

@media (max-width: 980px) {
  body:not(.beauty-page) #contato.contact-section {
    grid-template-columns: 1fr;
  }
}


body:not(.beauty-page) #contato .lead-form label {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

body:not(.beauty-page) #contato .lead-form input,
body:not(.beauty-page) #contato .lead-form select,
body:not(.beauty-page) #contato .lead-form textarea {
  min-height: 62px;
  padding: 17px 18px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

body:not(.beauty-page) #contato .lead-form textarea {
  min-height: 178px;
}

body:not(.beauty-page) #contato .lead-form input::placeholder,
body:not(.beauty-page) #contato .lead-form textarea::placeholder {
  font-size: 17px;
  line-height: 1.5;
}

body:not(.beauty-page) #contato .lead-form select {
  font-size: 18px;
}

body:not(.beauty-page) #contato .lead-form .primary-button.full {
  min-height: 64px;
  font-size: 20px;
  font-weight: 800;
}

body:not(.beauty-page) #contato .lead-form .form-grid {
  gap: 26px;
}

body:not(.beauty-page) #contato .lead-form .message-field {
  margin-top: 28px;
}


body:not(.beauty-page) #faq .section-heading .eyebrow {
  font-size: clamp(18px, 1.5vw, 22px);
  color: #374151;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body:not(.beauty-page) #faq .section-heading h2 {
  max-width: 900px;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.06;
  text-wrap: balance;
}

body:not(.beauty-page) #faq .section-heading > p {
  max-width: 720px;
  color: #374151;
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.65;
  font-weight: 500;
}

body:not(.beauty-page) #faq .section-heading {
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 68px);
}


body:not(.beauty-page) #faq .section-heading .eyebrow {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body:not(.beauty-page) #faq .section-heading > div {
  width: 100%;
  display: grid;
  justify-items: center;
}


body:not(.beauty-page) #contato .lead-form {
  padding-bottom: clamp(42px, 4vw, 58px);
}

body:not(.beauty-page) #contato .lead-form .primary-button.full {
  margin-top: 22px;
  width: 100%;
}


body:not(.beauty-page) #beleza .sales-copy .eyebrow {
  font-size: clamp(20px, 1.8vw, 26px);
  color: #374151;
  font-weight: 900;
  letter-spacing: 0.04em;
}


body:not(.beauty-page) #servicos .section-heading .primary-button {
  min-height: 58px;
  padding: 0 32px;
  font-size: 19px;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.28);
}


.beauty-page .nav-links .home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.beauty-page .nav-links .home-link::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff1f6;
  color: #be185d;
  font-size: 15px;
  line-height: 1;
}


.beauty-page .nav-links .home-link::before {
  content: none;
  display: none;
}


body:not(.beauty-page) .site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 44px);
}

body:not(.beauty-page) .brand {
  min-width: max-content;
}

body:not(.beauty-page) .nav-links {
  min-width: 0;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

body:not(.beauty-page) .nav-links a {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.1;
}

body:not(.beauty-page) .header-cta {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 58px;
  padding: 0 32px;
  font-size: clamp(17px, 1.3vw, 20px);
}

@media (max-width: 1180px) {
  body:not(.beauty-page) .brand strong {
    font-size: 22px;
  }

  body:not(.beauty-page) .brand small {
    font-size: 13px;
  }

  body:not(.beauty-page) .brand-mark {
    width: 50px;
    height: 50px;
  }
}


/* Responsive final pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
iframe,
video {
  max-width: 100%;
}

@media (max-width: 1180px) {
  body:not(.beauty-page) .site-header {
    min-height: 82px;
    gap: 18px;
  }

  body:not(.beauty-page) .brand-mark {
    width: 48px;
    height: 48px;
  }

  body:not(.beauty-page) .brand strong {
    font-size: 21px;
  }

  body:not(.beauty-page) .brand small {
    font-size: 12px;
  }

  body:not(.beauty-page) .nav-links {
    gap: 16px;
  }

  body:not(.beauty-page) .nav-links a {
    font-size: 15px;
  }

  body:not(.beauty-page) .header-cta {
    min-height: 52px;
    padding: 0 24px;
    font-size: 17px;
  }
}

@media (max-width: 980px) {
  body:not(.beauty-page) .site-header,
  .beauty-page .site-header {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body:not(.beauty-page) .nav-links,
  .beauty-page .nav-links {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    z-index: 20;
    display: none;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 8px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  }

  body.menu-open .nav-links {
    display: grid;
  }

  body:not(.beauty-page) .nav-links a,
  .beauty-page .nav-links a {
    justify-content: center;
    min-height: 48px;
    padding: 14px 18px;
    white-space: normal;
    text-align: center;
    font-size: 17px;
    line-height: 1.2;
  }

  body:not(.beauty-page) .header-cta,
  .beauty-page .header-cta {
    display: none;
  }

  body:not(.beauty-page) .menu-button,
  .beauty-page .menu-button {
    display: inline-grid;
  }

  body:not(.beauty-page) .hero-section,
  .beauty-page .hero-section,
  body:not(.beauty-page) #contato.contact-section,
  .contact-section,
  .split-section,
  .sales-section {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .video-grid,
  .testimonial-video-grid,
  .proof-grid,
  .metrics-band,
  .pillar-grid,
  .faq-grid,
  .form-grid,
  body:not(.beauty-page) #metodo .pillar-grid {
    grid-template-columns: 1fr;
  }

  body:not(.beauty-page) h1,
  .beauty-page h1 {
    font-size: clamp(38px, 8vw, 58px);
    line-height: 1.06;
  }

  body:not(.beauty-page) h2,
  .beauty-page h2,
  body:not(.beauty-page) #faq .section-heading h2,
  body:not(.beauty-page) #beleza .sales-copy h2,
  body:not(.beauty-page) #servicos .section-heading h2,
  body:not(.beauty-page) #videos .section-heading h2 {
    font-size: clamp(32px, 7vw, 48px);
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  body:not(.beauty-page) .site-header,
  .beauty-page .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  body:not(.beauty-page) .brand,
  .beauty-page .brand {
    gap: 10px;
    min-width: 0;
  }

  body:not(.beauty-page) .brand-mark,
  .beauty-page .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  body:not(.beauty-page) .brand strong,
  .beauty-page .brand strong {
    font-size: 18px;
    line-height: 1.1;
  }

  body:not(.beauty-page) .brand small,
  .beauty-page .brand small {
    font-size: 11px;
    line-height: 1.2;
  }

  body:not(.beauty-page) .nav-links,
  .beauty-page .nav-links {
    top: 70px;
    left: 10px;
    right: 10px;
  }

  body:not(.beauty-page) .hero-section,
  .beauty-page .hero-section,
  body:not(.beauty-page) .section-band,
  body:not(.beauty-page) .content-section,
  body:not(.beauty-page) .contact-section,
  .beauty-page .section-band,
  .beauty-page .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  body:not(.beauty-page) h1,
  .beauty-page h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  body:not(.beauty-page) .hero-text,
  body:not(.beauty-page) .section-heading p,
  body:not(.beauty-page) #contato .contact-copy p:not(.eyebrow),
  body:not(.beauty-page) #beleza .sales-copy p:not(.eyebrow),
  .beauty-page .hero-text {
    font-size: 17px;
    line-height: 1.65;
  }

  body:not(.beauty-page) #servicos .program-card,
  body:not(.beauty-page) #beleza .offer-panel,
  body:not(.beauty-page) #contato .lead-form,
  .beauty-page .offer-panel,
  .beauty-page .program-card {
    padding: 28px 20px;
    min-height: auto;
  }

  body:not(.beauty-page) #contato .lead-form input,
  body:not(.beauty-page) #contato .lead-form select,
  body:not(.beauty-page) #contato .lead-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  body:not(.beauty-page) .brand small,
  .beauty-page .brand small {
    display: none;
  }

  body:not(.beauty-page) .hero-actions,
  .beauty-page .hero-actions,
  body:not(.beauty-page) .proof-cta {
    grid-template-columns: 1fr;
  }

  body:not(.beauty-page) .primary-button,
  body:not(.beauty-page) .secondary-button,
  .beauty-page .primary-button,
  .beauty-page .secondary-button {
    width: 100%;
  }
}
