:root {
  --blue-950: #102b3f;
  --blue-900: #173a52;
  --blue-800: #255a72;
  --ink: #172632;
  --muted: #66737c;
  --sand-50: #fbf8f1;
  --sand-100: #f3ecdd;
  --sand-200: #e6d7bd;
  --champagne: #d4b071;
  --champagne-soft: #f1dfb7;
  --rose: #b98579;
  --white: #fffdf8;
  --line: rgba(212, 176, 113, 0.3);
  --shadow: 0 24px 70px rgba(16, 43, 63, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-50);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid rgba(212, 176, 113, 0.22);
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(18px);
}

.sales-page .site-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(150px, 16vw, 210px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
  color: rgba(23, 38, 50, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--blue-800);
}

.header-action {
  justify-self: end;
  min-width: 104px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue-950);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.menu-toggle {
  display: none;
  justify-self: end;
  min-width: 76px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 800;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 43, 63, 0.98), rgba(29, 74, 99, 0.95)),
    radial-gradient(circle at 76% 18%, rgba(212, 176, 113, 0.22), transparent 30%);
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(126px, 14vw, 164px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 90px);
  overflow: hidden;
}

.home-hero {
  min-height: 100vh;
}

.page-hero {
  min-height: 76vh;
}

.page-hero.compact {
  grid-template-columns: 1fr;
  min-height: 56vh;
}

.hero-copy,
.page-copy {
  max-width: 830px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.03;
}

h1 {
  color: var(--white);
  font-size: clamp(44px, 6.5vw, 84px);
}

h2 {
  color: var(--blue-950);
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1.22;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.hero-copy p:not(.eyebrow),
.page-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--champagne), var(--champagne-soft));
  color: #142838;
  box-shadow: 0 18px 42px rgba(212, 176, 113, 0.22);
}

.button-light {
  background: rgba(255, 253, 248, 0.96);
  color: var(--blue-950);
}

.button-ghost,
.button-outline {
  border: 1px solid rgba(255, 253, 248, 0.3);
  color: var(--white);
}

.button-dark {
  background: var(--blue-950);
  color: var(--white);
}

.button-whatsapp {
  background: #1f8f63;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(31, 143, 99, 0.18);
}

.hero-media {
  position: relative;
}

.portrait-frame,
.page-art,
.feature-image,
.book-cover {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 113, 0.44);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #f6efe3, #e4d2b3 46%, #173a52);
  box-shadow: 36px 36px 90px rgba(0, 0, 0, 0.18);
}

.portrait-frame {
  min-height: 500px;
}

.portrait-frame img,
.page-art img,
.feature-image img,
.book-cover img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.portrait-frame img,
.page-art img {
  object-position: 68% center;
}

.page-art.wide img {
  min-height: 360px;
  object-position: center;
}

.hero-card {
  position: absolute;
  right: -24px;
  bottom: 34px;
  z-index: 3;
  width: min(330px, 86vw);
  padding: 22px;
  border: 1px solid rgba(212, 176, 113, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--blue-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.04;
}

.hero-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 176, 113, 0.36);
}

.principles div {
  padding: 30px clamp(18px, 4vw, 42px);
  background: var(--white);
}

.principles strong,
.principles span {
  display: block;
}

.principles strong {
  color: var(--blue-950);
  font-size: 18px;
}

.principles span {
  margin-top: 3px;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 122px) clamp(18px, 4vw, 32px);
}

.section-soft {
  max-width: none;
  padding-right: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
  padding-left: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
  background: var(--sand-100);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.intro-grid,
.two-column,
.split-feature,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.intro-grid {
  grid-template-columns: 1.15fr 0.55fr 0.55fr;
}

.editorial-card,
.route-card,
.credential-panel span,
.method-list article,
.service-grid article,
.resources-grid a,
.podcast-feature,
.contact-form,
.quote-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 43, 63, 0.06);
}

.editorial-card,
.route-card {
  min-height: 280px;
  padding: clamp(26px, 4vw, 38px);
}

.editorial-card p,
.route-card p,
.prose p,
.feature-copy p,
.method-list p,
.service-grid p,
.resources-grid span,
.podcast-feature p,
.contact-copy p,
.quote-grid article {
  color: var(--muted);
}

.editorial-card.large {
  min-height: 360px;
}

.route-card span,
.method-list span {
  display: block;
  margin-bottom: 32px;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.split-feature {
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.feature-copy {
  max-width: 650px;
}

.feature-copy p,
.prose p {
  font-size: 18px;
}

.feature-copy .button,
.page-copy .button {
  margin-top: 18px;
}

.feature-image {
  min-height: 360px;
  box-shadow: var(--shadow);
}

.feature-image img {
  min-height: 360px;
  object-position: center;
}

.book-art img {
  object-position: center top;
}

.mini-grid,
.value-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-grid a,
.value-grid article {
  min-height: 170px;
  padding: 26px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  color: var(--champagne-soft);
  font-size: 20px;
}

.mini-grid span {
  margin-top: 34px;
  color: rgba(255, 253, 248, 0.75);
}

.prose h2 {
  margin-bottom: 22px;
}

.credential-panel {
  display: grid;
  gap: 12px;
}

.credential-panel span {
  padding: 17px 20px;
  color: var(--blue-950);
  font-weight: 800;
}

.value-grid article {
  border-color: var(--line);
  background: var(--white);
}

.precision-art {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.precision-art div {
  display: grid;
  min-height: 360px;
  place-items: end start;
  padding: 24px;
  border: 1px solid rgba(212, 176, 113, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.02)),
    rgba(255, 253, 248, 0.06);
}

.precision-art span {
  color: var(--champagne-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-list article {
  padding: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(212, 176, 113, 0.3);
}

.service-grid article {
  min-height: 222px;
  padding: 28px;
  border: 0;
  border-radius: 0;
}

.decor-panel {
  display: grid;
  min-height: 360px;
  align-content: end;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.25), transparent 42%),
    linear-gradient(145deg, var(--sand-200), var(--champagne) 42%, var(--blue-900) 43%, var(--blue-950));
  box-shadow: var(--shadow);
}

.decor-panel strong {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 0.92;
}

.decor-panel span {
  max-width: 260px;
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.78);
  font-weight: 800;
}

.course-hero .page-art {
  min-height: 360px;
}

.book-cover {
  width: min(100%, 390px);
  aspect-ratio: 0.72;
  justify-self: center;
  transform: rotate(-3deg);
}

.book-cover img {
  object-position: center top;
}

.book-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.book-gallery img {
  width: 100%;
  aspect-ratio: 0.82;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 42px rgba(16, 43, 63, 0.1);
}

.sales-page {
  background:
    linear-gradient(180deg, #f7fbfd 0%, var(--sand-50) 48%, #fffdf8 100%);
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(126px, 14vw, 168px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 88px);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.7) 48%, rgba(228, 244, 251, 0.84)),
    url("assets/diagnostico-presente.png") center / cover;
  overflow: hidden;
}

.sales-hero-copy {
  max-width: 760px;
}

.sales-hero h1 {
  max-width: 720px;
  color: var(--blue-950);
  font-size: clamp(54px, 8vw, 104px);
}

.sales-hero .hero-subtitle {
  margin: 10px 0 0;
  color: var(--blue-800);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.05;
}

.sales-hero-copy p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(23, 38, 50, 0.76);
  font-size: clamp(17px, 2vw, 20px);
}

.sales-hero .button-light {
  border: 1px solid rgba(16, 43, 63, 0.12);
  box-shadow: 0 12px 34px rgba(16, 43, 63, 0.08);
}

.sales-hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}

.sales-hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -9% -7% 12%;
  z-index: 0;
  border-radius: var(--radius);
  background: #a7d9ed;
  opacity: 0.32;
}

.sales-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.69;
  border: 1px solid rgba(37, 90, 114, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: 34px 38px 88px rgba(16, 43, 63, 0.22);
}

.sales-note {
  display: grid;
  gap: 3px;
  max-width: 520px;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--champagne);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 12px 36px rgba(16, 43, 63, 0.07);
}

.sales-note strong {
  color: var(--blue-950);
}

.sales-note span {
  color: var(--muted);
  font-size: 14px;
}

.sales-intro,
.sales-audience,
.sales-author {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.quote-panel {
  padding: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.quote-panel p {
  margin: 0;
  color: var(--blue-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 700;
  line-height: 1.04;
}

.sales-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(212, 176, 113, 0.28);
}

.sales-feature-grid article {
  min-height: 288px;
  padding: clamp(24px, 3.4vw, 34px);
  background: var(--white);
}

.sales-feature-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid rgba(37, 90, 114, 0.18);
  border-radius: 50%;
  color: var(--blue-800);
  font-weight: 800;
}

.sales-feature-grid p,
.faq-list p,
.elegant-list {
  color: var(--muted);
}

.elegant-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.elegant-list li {
  position: relative;
  padding-left: 28px;
}

.elegant-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--champagne);
}

.sales-promise {
  max-width: none;
  padding-right: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
  padding-left: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.18);
  overflow: hidden;
}

.promise-strip span {
  display: grid;
  min-height: 126px;
  place-items: center;
  background: rgba(255, 253, 248, 0.06);
  color: var(--champagne-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
}

.author-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-100);
  box-shadow: var(--shadow);
}

.author-photo img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center 42%;
}

.act-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(212, 176, 113, 0.28);
}

.act-grid span {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 800;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 34px;
}

.product-details span {
  padding: 10px 14px;
  border: 1px solid rgba(37, 90, 114, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
}

.sales-faq {
  padding-bottom: clamp(48px, 7vw, 88px);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.faq-list article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sales-final-cta {
  max-width: none;
  padding-right: max(clamp(18px, 4vw, 48px), calc((100vw - var(--max)) / 2 + 48px));
  padding-left: max(clamp(18px, 4vw, 48px), calc((100vw - var(--max)) / 2 + 48px));
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.podcast-sales {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.video-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-frame:hover img {
  transform: scale(1.02);
  opacity: 0.86;
}

.video-link span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
}

.course-sales-page {
  background: linear-gradient(180deg, #f7fbfd 0%, var(--sand-50) 52%, #fffdf8 100%);
}

.course-sales-page .site-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.course-sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(126px, 14vw, 168px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 88px);
  background:
    linear-gradient(110deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.8) 48%, rgba(227, 244, 250, 0.92)),
    url("assets/cade-a-fala-hero.png") center / cover;
  overflow: hidden;
}

.course-hero-copy {
  max-width: 780px;
}

.course-sales-hero h1 {
  color: var(--blue-950);
  font-size: clamp(58px, 8vw, 104px);
}

.course-subtitle {
  margin: 12px 0 0;
  color: var(--blue-800);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4.1vw, 52px);
  font-weight: 700;
  line-height: 1.05;
}

.course-hero-copy p:not(.eyebrow):not(.course-subtitle) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(23, 38, 50, 0.76);
  font-size: clamp(17px, 2vw, 20px);
}

.course-hero-media {
  justify-self: center;
  overflow: hidden;
  width: min(100%, 520px);
  border: 1px solid rgba(37, 90, 114, 0.16);
  border-radius: var(--radius);
  background: var(--sand-100);
  box-shadow: 34px 38px 88px rgba(16, 43, 63, 0.18);
}

.course-hero-media img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
  object-position: center;
}

.course-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.course-facts span,
.course-credentials span,
.course-included span {
  padding: 10px 14px;
  border: 1px solid rgba(37, 90, 114, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
}

.course-positioning,
.course-method,
.course-author {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.course-scope {
  display: grid;
  gap: 12px;
}

.course-scope article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 43, 63, 0.06);
}

.course-scope strong {
  color: var(--blue-800);
}

.course-scope span {
  color: var(--blue-950);
  font-weight: 800;
}

.course-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(212, 176, 113, 0.3);
}

.course-modules article {
  min-height: 248px;
  padding: clamp(24px, 3.4vw, 32px);
  background: var(--white);
}

.course-modules span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.course-modules p,
.course-scope p {
  color: var(--muted);
}

.testimonials-section {
  max-width: none;
  padding-right: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
  padding-left: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
}

.testimonial-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.testimonial-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.testimonial-video:hover img {
  transform: scale(1.03);
  opacity: 0.82;
}

.testimonial-video span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.course-credentials,
.course-included {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.course-investment {
  display: grid;
  place-items: center;
}

.investment-card {
  width: min(100%, 860px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.investment-card h2 {
  margin-bottom: 12px;
}

.investment-card p {
  margin: 0;
  color: var(--muted);
}

.investment-card .price {
  color: var(--blue-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.investment-card .hero-actions,
.investment-card .course-included {
  justify-content: center;
}

.podcast-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.podcast-feature h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.resources-grid a {
  min-height: 190px;
  padding: 24px;
}

.resources-grid strong,
.resources-grid span {
  display: block;
}

.resources-grid strong {
  color: var(--blue-950);
  font-size: 18px;
}

.resources-grid span {
  margin-top: 36px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 43, 63, 0.16);
  border-radius: var(--radius);
  background: var(--sand-50);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(212, 176, 113, 0.18);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 760px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 48px);
  background: var(--blue-950);
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f8f63;
  color: white;
  box-shadow: 0 18px 38px rgba(31, 143, 99, 0.26);
  font-size: 14px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(212, 176, 113, 0.18);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .hero,
  .page-hero,
  .sales-hero,
  .course-sales-hero,
  .intro-grid,
  .two-column,
  .split-feature,
  .split-feature.reverse,
  .contact-layout,
  .sales-intro,
  .sales-audience,
  .sales-author,
  .act-section,
  .podcast-sales,
  .course-positioning,
  .course-method,
  .course-author {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .page-hero,
  .sales-hero,
  .course-sales-hero {
    min-height: auto;
  }

  .hero-media,
  .sales-hero-media,
  .course-hero-media {
    max-width: 560px;
  }

  .principles,
  .service-grid,
  .resources-grid,
  .book-gallery,
  .mini-grid,
  .value-grid,
  .quote-grid,
  .sales-feature-grid,
  .faq-list,
  .promise-strip,
  .course-modules,
  .testimonial-videos {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast-feature,
  .cta-band {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand img {
    width: 152px;
    height: 48px;
  }

  .header-action {
    display: none;
  }

  .hero,
  .page-hero,
  .sales-hero,
  .course-sales-hero {
    padding-top: 108px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 35px;
  }

  .hero-actions .button,
  .contact-form .button,
  .page-copy .button,
  .final-actions .button {
    width: 100%;
  }

  .final-actions {
    width: 100%;
  }

  .portrait-frame {
    min-height: 390px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .principles,
  .service-grid,
  .resources-grid,
  .book-gallery,
  .mini-grid,
  .value-grid,
  .quote-grid,
  .precision-art,
  .sales-feature-grid,
  .faq-list,
  .promise-strip,
  .act-grid,
  .course-modules,
  .testimonial-videos {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .resources-grid a,
  .mini-grid a,
  .value-grid article,
  .sales-feature-grid article,
  .faq-list article,
  .course-modules article {
    min-height: auto;
  }

  .sales-hero h1,
  .course-sales-hero h1 {
    font-size: 46px;
  }

  .sales-hero .hero-subtitle,
  .course-subtitle {
    font-size: 31px;
  }

  .sales-note {
    padding: 16px;
  }

  .promise-strip span,
  .act-grid span {
    min-height: 104px;
  }

  .precision-art div {
    min-height: 140px;
  }

  .precision-art span {
    writing-mode: initial;
    transform: none;
  }

  .resources-grid span,
  .mini-grid span {
    margin-top: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 86px;
  }
}
