:root {
  --paper: #f4f0e8;
  --paper-light: #fbf9f5;
  --sand: #ddd4c7;
  --sand-deep: #c8bcac;
  --taupe: #8a8177;
  --ink: #1c1b19;
  --graphite: #262523;
  --gold: #a4824b;
  --gold-soft: #d0b98e;
  --line: rgba(28, 27, 25, 0.16);
  --white: #fffefb;
  --shadow: 0 24px 65px rgba(31, 28, 24, 0.12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.23;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.display-title,
h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 12vw, 5.6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 9vw, 4.3rem);
}

h3 {
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 7vw, 2.85rem);
}

p {
  margin: 0 0 1.15em;
}

.lead {
  color: #4b4741;
  font-size: clamp(1.03rem, 2.2vw, 1.24rem);
  line-height: 1.65;
}

.section {
  padding: 82px 0;
}

.section--light {
  background: var(--paper-light);
}

.section--dark {
  background: var(--graphite);
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(28, 27, 25, 0.09);
  background: rgba(244, 240, 232, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.045em;
  line-height: 1;
}

.brand__sub {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: #49453f;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-link:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 28px 0 72px;
}

.hero::after {
  position: absolute;
  top: 17%;
  right: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(164, 130, 75, 0.26);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  gap: 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 12px;
}

.hero-copy .lead {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button:hover:not(.is-disabled):not([aria-disabled="true"]) {
  transform: translateY(-2px);
  background: transparent;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(28, 27, 25, 0.11);
}

.button:hover:not(.is-disabled):not([aria-disabled="true"])::after {
  transform: translate(2px, -2px);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover:not(.is-disabled):not([aria-disabled="true"]) {
  background: transparent;
  color: var(--white);
}

.button--outline {
  background: transparent;
  color: var(--ink);
}

.button--outline:hover:not(.is-disabled):not([aria-disabled="true"]) {
  background: var(--ink);
  color: var(--white);
}

.button.is-disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  border-color: rgba(28, 27, 25, 0.28);
  background: rgba(28, 27, 25, 0.12);
  color: rgba(28, 27, 25, 0.62);
  box-shadow: none;
}

.section--dark .button.is-disabled,
.section--dark .button[aria-disabled="true"],
.course-featured .button.is-disabled,
.course-featured .button[aria-disabled="true"] {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.button.is-disabled::after,
.button[aria-disabled="true"]::after {
  content: "•";
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.cta-status {
  max-width: 400px;
  margin: 0;
  color: #696158;
  font-size: 0.76rem;
  line-height: 1.45;
}

.cta-status.is-pending {
  color: #7b6252;
}

.section--dark .cta-status {
  color: rgba(255, 255, 255, 0.64);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 470px);
  margin-top: 38px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.hero-meta__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta__label {
  color: var(--taupe);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta__value {
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual__frame {
  position: absolute;
  inset: 0 0 0 34px;
  overflow: hidden;
  border-radius: 180px 180px 26px 26px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

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

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 0;
  z-index: 2;
  width: min(260px, 74%);
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(28, 27, 25, 0.88);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(28, 27, 25, 0.26);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1.15;
}

.hero-badge span {
  margin-top: 5px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.trust-image {
  position: relative;
  max-width: 560px;
}

.trust-image::before {
  position: absolute;
  inset: 18px -14px -18px 14px;
  z-index: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  content: "";
}

.trust-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: var(--shadow);
}

.trust-copy {
  max-width: 640px;
}

.trust-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.trust-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.trust-point__number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.trust-point p {
  margin: 0;
  color: #4c4842;
}

.course-grid {
  display: grid;
  gap: 22px;
}

.course-featured,
.course-secondary {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.course-featured {
  padding: 34px 26px;
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}

.course-featured::after {
  position: absolute;
  top: -105px;
  right: -95px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(208, 185, 142, 0.35);
  border-radius: 50%;
  content: "";
}

.course-secondary {
  padding: 32px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.58);
}

.course-status {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(208, 185, 142, 0.13);
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.course-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.course-secondary .course-status {
  background: var(--sand);
  color: var(--ink);
}

.course-featured h3,
.course-secondary h3 {
  margin-top: 26px;
}

.course-featured > p {
  color: rgba(255, 255, 255, 0.76);
}

.course-secondary > p {
  color: #555048;
}

.course-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.course-detail span,
.course-detail strong {
  display: block;
}

.course-detail span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-detail strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1.25;
}

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

.curriculum li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.82);
}

.curriculum li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold-soft);
  content: "";
}

.course-note {
  margin: 27px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #4c4842;
  font-size: 0.92rem;
}

.course-note strong {
  color: var(--ink);
}

.ebook-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.ebook-visual {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 16px 16px 25px;
  border-radius: 20px;
  background: #e5ded3;
  box-shadow: var(--shadow);
}

.ebook-visual::before {
  position: absolute;
  top: 10px;
  right: -12px;
  bottom: 13px;
  width: 16px;
  border-radius: 0 10px 10px 0;
  background: #c7bdb0;
  content: "";
}

.ebook-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(28, 27, 25, 0.15);
}

.ebook-copy {
  max-width: 700px;
}

.ebook-copy h2 {
  max-width: 12ch;
}

.ebook-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.ebook-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.ebook-list li::before {
  margin-top: 2px;
  color: var(--gold);
  content: "✦";
}

.ebook-price {
  display: inline-flex;
  margin-bottom: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(28, 27, 25, 0.25);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.ebook-price.is-pending {
  color: var(--taupe);
  font-size: 1rem;
}

.ebook-disclaimer {
  margin-top: 18px;
  color: #655f57;
  font-size: 0.82rem;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 26px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 4.2vw, 1.65rem);
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--gold-soft);
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  text-align: right;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 760px;
  margin: -6px 0 24px;
  color: rgba(255, 255, 255, 0.7);
}

.closing {
  padding: 88px 0 105px;
  background: var(--sand);
}

.closing-grid {
  display: grid;
  gap: 36px;
  align-items: end;
}

.closing-copy h2 {
  max-width: 13ch;
}

.closing-copy p {
  max-width: 650px;
  color: #4f4942;
}

.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.contact-link {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.contact-link[aria-disabled="true"] {
  cursor: not-allowed;
  color: #776f66;
  pointer-events: none;
  text-decoration-style: dotted;
}

.contact-link[aria-disabled="true"]::after {
  content: " · contato oficial pendente";
  font-weight: 400;
}

.site-footer {
  padding: 30px 0 92px;
  background: var(--ink);
  color: var(--white);
}

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

.footer-brand .brand__name {
  color: var(--white);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.footer-meta p {
  margin: 0 0 5px;
}

.footer-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.mobile-sticky {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(28, 27, 25, 0.94);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(28, 27, 25, 0.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.mobile-sticky__label {
  min-width: 0;
  line-height: 1.2;
}

.mobile-sticky__label strong,
.mobile-sticky__label span {
  display: block;
}

.mobile-sticky__label strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-sticky__label span {
  margin-top: 3px;
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-sticky__action {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}


@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .section {
    padding: 106px 0;
  }

  .nav-links {
    display: flex;
  }

  .hero {
    padding: 48px 0 96px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.8fr);
    gap: 58px;
    min-height: 690px;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 660px;
  }

  .hero-visual__frame {
    left: 55px;
  }

  .trust-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    gap: 78px;
  }

  .course-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: stretch;
  }

  .course-featured,
  .course-secondary {
    padding: 46px 42px;
  }

  .course-secondary {
    display: flex;
    flex-direction: column;
  }

  .course-secondary .cta-wrap {
    margin-top: auto;
  }

  .ebook-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 86px;
  }

  .closing-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 80px;
  }

  .footer-grid {
    grid-template-columns: auto 1fr;
    align-items: end;
    justify-content: space-between;
  }

  .footer-meta {
    text-align: right;
  }

  .mobile-sticky {
    display: none;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (min-width: 1000px) {
  .section-heading {
    margin-bottom: 54px;
  }

  .course-details {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .course-featured {
    min-height: 710px;
  }

  .course-secondary {
    min-height: 710px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-link {
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .brand__name {
    font-size: 1.35rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual__frame {
    left: 22px;
  }

  .course-details {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .mobile-sticky__label span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* V2 — WhatsApp, prova social, vídeo e cadastro */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.button {
  cursor: pointer;
  font-family: var(--sans);
}

.button__icon {
  display: inline-grid;
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 auto;
  place-items: center;
}

.button__icon svg,
.mobile-sticky__icon svg,
.whatsapp-float__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  border-color: rgba(28, 27, 25, 0.28);
  background: rgba(28, 27, 25, 0.12);
  color: rgba(28, 27, 25, 0.62);
  box-shadow: none;
}

.button:disabled::after,
.button[disabled]::after {
  content: "•";
}

.course-featured .button:disabled,
.course-featured .button[disabled],
.section--dark .button:disabled,
.section--dark .button[disabled] {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.faq-intro {
  color: rgba(255, 255, 255, 0.7);
}

.experience {
  overflow: hidden;
  padding-top: 88px;
  background: var(--paper-light);
}

.experience-intro {
  display: grid;
  gap: 34px;
  align-items: center;
}

.google-rating {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}

.google-rating::after {
  position: absolute;
  right: -64px;
  bottom: -92px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(208, 185, 142, 0.24);
  border-radius: 50%;
  content: "";
}

.google-rating__eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 27px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.google-rating__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 19px;
}

.google-rating__score {
  font-family: var(--serif);
  font-size: clamp(4rem, 16vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: #f1c453;
}

.rating-stars svg {
  width: clamp(20px, 5vw, 27px);
  height: clamp(20px, 5vw, 27px);
}

.google-rating__count {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.google-rating__date {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.experience-copy h2 {
  max-width: 13ch;
}

.experience-copy .lead {
  max-width: 590px;
  margin-bottom: 0;
}

.video-shell {
  overflow: hidden;
  margin-top: 46px;
  border: 1px solid rgba(28, 27, 25, 0.1);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 28px 70px rgba(28, 27, 25, 0.18);
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px;
  background: var(--white);
  color: var(--ink);
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.25;
}

.video-caption div > span,
.video-caption__duration {
  margin-top: 3px;
  color: var(--taupe);
  font-size: 0.7rem;
}

.video-caption__duration {
  flex: 0 0 auto;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signup-band {
  margin-top: 72px;
  padding: 76px 0 92px;
  background: var(--sand);
}

.signup-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.signup-copy h2 {
  max-width: 11ch;
}

.signup-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #4f4942;
}

.signup-primary-cta {
  margin-top: 30px;
}

.lead-form {
  padding: 28px 22px;
  border: 1px solid rgba(28, 27, 25, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.93);
  box-shadow: var(--shadow);
}

.lead-form__heading {
  margin-bottom: 25px;
}

.lead-form__heading h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 6vw, 2.65rem);
  line-height: 1.03;
}

.lead-form__heading > p:last-child {
  margin-bottom: 0;
  color: #625c54;
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: #49443e;
  font-size: 0.78rem;
  font-weight: 700;
}

.field small {
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(28, 27, 25, 0.19);
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field select {
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, var(--taupe) 50%), linear-gradient(135deg, var(--taupe) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  appearance: none;
}

.field input::placeholder {
  color: #aaa197;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(164, 130, 75, 0.12);
  background: #fff;
}

.field input:user-invalid,
.field select:user-invalid,
.consent-field input:user-invalid {
  border-color: #9d5446;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: #5e574f;
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.lead-form__submit {
  width: 100%;
}

.form-status,
.form-disclaimer {
  margin: 11px 0 0;
  font-size: 0.72rem;
  line-height: 1.48;
}

.form-status {
  color: #4e6d58;
  font-weight: 700;
}

.form-status.is-pending {
  color: #7b6252;
}

.form-disclaimer {
  color: #787066;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #1f9d58;
  color: #fff;
  box-shadow: 0 15px 38px rgba(28, 27, 25, 0.27);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.whatsapp-float:hover:not([aria-disabled="true"]) {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(28, 27, 25, 0.31);
}

.whatsapp-float[aria-disabled="true"] {
  cursor: not-allowed;
  background: #6d756f;
  opacity: 0.82;
}

.whatsapp-float__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-float__icon svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float__copy {
  display: none;
  min-width: 0;
  line-height: 1.15;
}

.whatsapp-float__copy strong,
.whatsapp-float__copy small {
  display: block;
}

.whatsapp-float__copy strong {
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.whatsapp-float__copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.63rem;
}

.mobile-sticky__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mobile-sticky__icon {
  width: 15px;
  height: 15px;
}

@media (min-width: 700px) {
  .experience {
    padding-top: 112px;
  }

  .experience-intro {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 74px;
  }

  .google-rating {
    padding: 39px 36px;
  }

  .video-shell {
    margin-top: 58px;
  }

  .video-caption {
    padding: 20px 24px;
  }

  .signup-band {
    margin-top: 96px;
    padding: 98px 0 108px;
  }

  .lead-form {
    padding: 36px;
  }

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

  .field--full {
    grid-column: 1 / -1;
  }

  .whatsapp-float {
    right: 26px;
    bottom: 28px;
    padding-right: 16px;
  }

  .whatsapp-float__copy {
    display: block;
  }
}

@media (min-width: 960px) {
  .signup-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
    gap: 78px;
  }
}

@media (max-width: 420px) {
  .google-rating__row {
    gap: 14px;
  }

  .google-rating__score {
    font-size: 4.1rem;
  }

  .rating-stars {
    gap: 2px;
  }

  .video-caption__duration {
    display: none;
  }

  .lead-form {
    padding: 24px 17px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float__icon {
    width: 38px;
    height: 38px;
  }
}

/* V2.1 — complementos de atualização fácil e estados do formulário */
.google-rating__address {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.5;
}

.google-rating__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.google-rating__link[hidden] {
  display: none;
}

.google-rating__date {
  margin-top: 14px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status.is-success {
  color: #3f6f4f;
}

.form-status.is-error {
  color: #9d5446;
}

.button--with-icon.is-disabled::after,
.button--with-icon[aria-disabled="true"]::after,
.button--with-icon:disabled::after,
.button--with-icon[disabled]::after {
  content: none;
}


/* V3 — CTA principal, prova social, e-book e crédito */
.button--gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(164, 130, 75, 0.26);
}

.button--gold:hover:not(.is-disabled):not([aria-disabled="true"]) {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(164, 130, 75, 0.3);
}

.course-featured .button--gold.is-disabled,
.course-featured .button--gold[aria-disabled="true"],
.button--gold.is-disabled,
.button--gold[aria-disabled="true"] {
  border-color: rgba(208, 185, 142, 0.75);
  background: rgba(164, 130, 75, 0.78);
  color: rgba(255, 255, 255, 0.92);
}

@keyframes eden-cta-pulse {
  0%, 68%, 100% {
    box-shadow: 0 12px 30px rgba(164, 130, 75, 0.26), 0 0 0 0 rgba(208, 185, 142, 0);
  }
  76% {
    box-shadow: 0 14px 34px rgba(164, 130, 75, 0.34), 0 0 0 2px rgba(208, 185, 142, 0.28);
  }
  88% {
    box-shadow: 0 14px 34px rgba(164, 130, 75, 0.28), 0 0 0 11px rgba(208, 185, 142, 0);
  }
}

.button--pulse {
  animation: eden-cta-pulse 3.4s ease-out infinite;
}

.course-location {
  margin-bottom: 22px;
}

.ebook-visual {
  overflow: visible;
}

.ebook-format-badge {
  position: absolute;
  top: -18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(164, 130, 75, 0.35);
  border-radius: 999px;
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 27, 25, 0.16);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  line-height: 1;
}

.ebook-format-badge strong {
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.ebook-format-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.google-rating {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.google-rating__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 7px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.google-rating__row {
  gap: 24px;
}

.google-rating__score {
  font-size: clamp(4.6rem, 16vw, 6.5rem);
}

.google-rating .rating-stars {
  gap: 5px;
}

.google-rating .rating-stars svg {
  width: clamp(23px, 5vw, 30px);
  height: clamp(23px, 5vw, 30px);
}

.experience-copy h2 {
  max-width: 16ch;
}

.video-shell {
  position: relative;
  border: 2px solid rgba(164, 130, 75, 0.55);
  box-shadow: 0 34px 84px rgba(28, 27, 25, 0.22), 0 0 0 8px rgba(208, 185, 142, 0.08);
}

.video-caption {
  padding-top: 20px;
  padding-bottom: 20px;
}

.video-caption strong {
  font-size: clamp(1.12rem, 2.1vw, 1.35rem);
}

#duvidas {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note {
  display: grid;
  gap: 14px;
}

.footer-note > p {
  margin: 0;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.footer-credit a {
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 700px) {
  .footer-note {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
  }
  .footer-credit {
    text-align: right;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button--pulse {
    animation: none !important;
  }
}
