:root {
  --pink: #f84268;
  --pink-dark: #c92f52;
  --pink-light: #ffe1e8;
  --cream: #fff8f3;
  --white: #ffffff;
  --chocolate: #4a211c;
  --warm-gray: #75615d;
  --gold: #d9a441;
  --border: rgba(74, 33, 28, 0.14);
  --shadow: 0 16px 40px rgba(74, 33, 28, 0.09);
  --container: min(calc(100% - 80px), 1440px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--chocolate);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

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

.gtm-noscript-frame {
  display: none;
  visibility: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--chocolate);
  color: var(--white);
  padding: 12px 16px;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  color: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.62);
  border-radius: 50%;
  animation: whatsappWave 1.8s ease-out infinite;
}

.floating-whatsapp::after {
  animation-delay: 0.9s;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: var(--white);
}

@keyframes whatsappWave {
  0% {
    opacity: 0.7;
    transform: scale(0.82);
  }

  70% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 248, 243, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand,
.site-nav,
.header-cta,
.primary-button,
.footer-inner a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--pink);
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--warm-gray);
  font-size: 15px;
}

.site-nav a,
.footer-inner a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-inner a:hover {
  color: var(--pink-dark);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink);
  border-radius: 12px;
  padding: 10px 18px;
  color: var(--pink-dark);
  font-size: 15px;
  font-weight: 700;
}

.hero-section,
.section {
  height: auto;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-section {
  background-color: var(--cream);
  background-image:
    linear-gradient(
      90deg,
      var(--cream) 0%,
      rgba(255, 248, 243, 0.98) 30%,
      rgba(255, 248, 243, 0.84) 48%,
      rgba(255, 248, 243, 0.32) 68%,
      rgba(255, 248, 243, 0) 100%
    ),
    url("assets/fundoherodesktop.webp");
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 100%;
  padding-block: clamp(48px, 7vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero-copy,
.section-heading,
.purchase-box,
.faq-grid {
  animation: enter 520ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.14;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.24;
}

.hero-text,
.section-heading p,
.purchase-box > div > p {
  max-width: 720px;
  color: var(--warm-gray);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

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

.primary-button {
  min-width: 260px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(248, 66, 104, 0.22);
  color: var(--white);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--pink-dark);
  box-shadow: 0 14px 30px rgba(201, 47, 82, 0.22);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 14px 16px;
  color: var(--warm-gray);
  font-size: 15px;
  font-weight: 700;
}

.section {
  padding-block: clamp(56px, 7vw, 96px);
}

.presentation-section {
  display: block;
  padding-block: 64px;
  background: var(--white);
}

.presentation-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.presentation-copy h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(32px, 2.8vw, 44px);
}

.presentation-copy h2 span {
  color: var(--pink-dark);
}

.presentation-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--warm-gray);
  font-size: 18px;
  line-height: 1.6;
}

.presentation-copy p:not(.eyebrow) span {
  color: var(--pink-dark);
  font-weight: 700;
}

.video-shell {
  position: relative;
  border-radius: 18px;
  padding: 2px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--pink), var(--gold), var(--pink-light)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 44px rgba(74, 33, 28, 0.12);
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(248, 66, 104, 0.16), rgba(217, 164, 65, 0.12));
}

.video-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(74, 33, 28, 0.14);
  border-radius: 14px;
  background: var(--chocolate);
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.learning-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 248, 243, 0) 0%, rgba(255, 225, 232, 0.35) 100%),
    var(--cream);
}

.learning-section::after {
  content: "1";
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  bottom: 40px;
  color: rgba(74, 33, 28, 0.05);
  font-size: clamp(180px, 22vw, 330px);
  font-weight: 800;
  line-height: 0.78;
  pointer-events: none;
}

.learning-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(24px, 4vw, 42px);
  text-align: center;
}

.learning-copy {
  max-width: 820px;
}

.learning-copy .section-kicker {
  justify-content: center;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--pink-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  flex: 0 0 36px;
  background: var(--pink-dark);
}

.learning-copy .section-kicker span {
  color: var(--pink-dark);
}

.learning-copy h2 {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
}

.learning-copy h2 span,
.learning-copy p:not(.section-kicker) span {
  color: var(--pink-dark);
}

.learning-copy p:not(.section-kicker) {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--warm-gray);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.65;
}

.learning-copy p:not(.section-kicker) span {
  font-weight: 700;
}

.dessert-mosaic {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(8, minmax(64px, 1fr));
  gap: 14px;
  filter: drop-shadow(0 18px 30px rgba(74, 33, 28, 0.12));
}

.mosaic-tile {
  width: 100%;
  aspect-ratio: 0.72;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(74, 33, 28, 0.12), 0 0 0 1px rgba(248, 66, 104, 0.08);
  object-fit: cover;
  background: var(--pink-light);
}

.mosaic-tile.is-featured {
  border: 0;
  box-shadow: 0 10px 24px rgba(74, 33, 28, 0.12), 0 0 0 1px rgba(248, 66, 104, 0.08);
}

.mosaic-mobile-only {
  display: none;
}

.section-price {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-price span {
  color: var(--warm-gray);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
}

.section-price s {
  text-decoration-thickness: 1px;
}

.section-price strong {
  color: var(--pink-dark);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.05;
}

.section-price small {
  color: var(--warm-gray);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.section-price .primary-button {
  width: min(100%, 420px);
  margin-top: 14px;
}

.section-price img {
  width: min(100%, 190px);
  margin-top: 10px;
  opacity: 0.86;
}

.learning-price {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.social-proof-section {
  padding-block: clamp(64px, 7vw, 104px);
  background-color: #fff3e7;
  background-image: radial-gradient(rgba(217, 164, 65, 0.22) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
}

.social-proof-inner {
  display: grid;
  justify-items: center;
}

.social-proof-heading {
  max-width: 780px;
  margin-bottom: 32px;
  text-align: center;
}

.section-kicker.centered {
  justify-content: center;
  margin-bottom: 18px;
}

.section-kicker.centered::after {
  content: "";
  width: 36px;
  height: 2px;
  flex: 0 0 36px;
  background: var(--pink-dark);
}

.social-proof-heading h2 {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 12px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.12;
}

.social-proof-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--warm-gray);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.proof-strip {
  width: min(100%, 1480px);
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 20px;
  align-items: start;
  margin-top: 8px;
}

.proof-card {
  margin: 0;
  border: 1px solid rgba(74, 33, 28, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(74, 33, 28, 0.12);
  overflow: hidden;
  padding: 0;
  transform: rotate(-2deg);
}

.proof-card-mobile-only {
  display: none;
}

.proof-card:nth-child(even) {
  transform: rotate(2deg);
}

.proof-card:nth-child(3n) {
  transform: rotate(-1deg);
}

.proof-card img {
  width: 100%;
  height: auto;
}

.proof-card p {
  margin: 0;
  color: var(--chocolate);
  font-size: 14px;
  line-height: 1.45;
}

.proof-card span {
  align-self: end;
  color: var(--warm-gray);
  font-size: 14px;
  font-weight: 700;
}

.social-proof-cta {
  margin-top: 32px;
  background: var(--pink-dark);
}

.social-proof-cta:hover {
  background: var(--pink);
}

details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(74, 33, 28, 0.06);
}

details p {
  margin-bottom: 0;
  color: var(--warm-gray);
  font-size: 15px;
  line-height: 1.55;
}

.method-section {
  background:
    linear-gradient(180deg, rgba(255, 225, 232, 0.28), rgba(255, 248, 243, 0.96)),
    var(--cream);
}

.faq-grid,
.purchase-box {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.course-content {
  display: grid;
  justify-items: center;
}

.course-heading {
  max-width: 860px;
  margin-bottom: 32px;
  text-align: center;
}

.course-heading h2 {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 14px;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.12;
}

.course-heading .eyebrow span {
  color: var(--pink-dark);
}

.course-heading h2 span,
.course-heading p span {
  color: var(--pink-dark);
}

.course-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--warm-gray);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.course-heading p span {
  font-weight: 700;
}

.course-lessons {
  position: relative;
  width: min(100%, 620px);
}

.course-tab {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px 8px 0 0;
  background: var(--pink-dark);
  color: var(--white);
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.course-list ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-list li {
  border-bottom: 1px solid rgba(217, 164, 65, 0.28);
  color: var(--chocolate);
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.course-list strong {
  color: var(--pink-dark);
}

.course-offer {
  display: grid;
  justify-items: center;
  margin-top: 28px;
  padding-top: 0;
  text-align: center;
}

.course-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.course-pills span {
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.88);
  color: var(--pink-dark);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 800;
}

.course-pills span::before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
}

.course-cta {
  width: min(100%, 560px);
  background: var(--pink-dark);
  text-transform: uppercase;
}

.course-cta:hover {
  background: var(--pink);
}

.course-offer p {
  margin: 16px 0 0;
  color: var(--warm-gray);
  font-size: 15px;
  font-weight: 700;
}

.workbook-section {
  padding-block: clamp(64px, 7vw, 104px);
  background-color: #fff3e7;
  background-image: radial-gradient(rgba(217, 164, 65, 0.18) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
}

.workbook-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
}

.workbook-intro {
  display: grid;
  justify-items: center;
  text-align: left;
}

.workbook-cover {
  position: relative;
  width: min(100%, 260px);
  margin: 0 0 28px;
  filter: drop-shadow(0 18px 24px rgba(74, 33, 28, 0.18));
  transform: perspective(900px) rotateY(-10deg);
}

.workbook-cover::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px -16px;
  width: 24px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    180deg,
    var(--chocolate) 0 8px,
    transparent 8px 18px
  );
  opacity: 0.7;
}

.workbook-cover img {
  width: 100%;
  aspect-ratio: 0.72;
  border: 1px solid rgba(74, 33, 28, 0.12);
  border-radius: 8px;
  object-fit: cover;
}

.workbook-cover figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  border-radius: 8px;
  background: rgba(255, 248, 243, 0.9);
  color: var(--pink-dark);
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.workbook-intro h2 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.12;
}

.workbook-intro p {
  max-width: 440px;
  margin: 0;
  color: var(--warm-gray);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.workbook-card {
  position: relative;
  border: 1px solid rgba(74, 33, 28, 0.1);
  border-radius: 18px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(74, 33, 28, 0.055) 0,
      rgba(74, 33, 28, 0.055) 1px,
      transparent 1px,
      transparent 48px
    ),
    var(--white);
  box-shadow: 0 22px 54px rgba(74, 33, 28, 0.14);
  padding: 44px 38px 40px;
}

.workbook-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.workbook-list h3 {
  margin: 0;
  color: var(--pink-dark);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workbook-list ul {
  display: grid;
  margin: 6px 0 18px;
  padding: 0;
  list-style: none;
}

.workbook-list li {
  border-bottom: 1px solid rgba(217, 164, 65, 0.28);
  color: var(--chocolate);
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.certificate-section {
  padding-block: clamp(64px, 7vw, 104px);
  background:
    linear-gradient(90deg, rgba(255, 248, 243, 0.96), rgba(255, 225, 232, 0.34)),
    var(--cream);
}

.certificate-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.certificate-preview {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
  margin: 0;
}

.certificate-preview img {
  width: 100%;
  border: 8px solid var(--white);
  border-radius: 12px;
  box-shadow: 0 22px 52px rgba(74, 33, 28, 0.18);
}

.certificate-preview span {
  position: absolute;
  right: -18px;
  bottom: -22px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 7px solid var(--cream);
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(201, 47, 82, 0.22);
  font-size: 32px;
  font-weight: 900;
}

.certificate-copy {
  max-width: 780px;
}

.certificate-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 18px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.86);
  color: var(--pink-dark);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-copy h2 {
  margin-bottom: 12px;
  color: var(--pink-dark);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.05;
}

.certificate-copy p {
  max-width: 720px;
  color: var(--warm-gray);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.certificate-lead {
  margin-bottom: 12px;
  color: var(--chocolate);
  font-weight: 700;
}

.certificate-points {
  display: grid;
  gap: 14px;
  margin: 24px 0 18px;
  padding: 0;
  list-style: none;
}

.certificate-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--chocolate);
  font-size: 17px;
  font-weight: 700;
}

.certificate-points li::before {
  content: "✓";
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 900;
}

.certificate-offer {
  display: grid;
  justify-items: center;
  width: min(100%, 360px);
  margin: 10px 0 22px;
  text-align: center;
}

.certificate-offer p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 16px;
}

.certificate-offer strong {
  color: var(--pink-dark);
  font-size: 28px;
  line-height: 1.2;
}

.certificate-offer span {
  color: var(--warm-gray);
  font-size: 15px;
}

.certificate-offer-mobile {
  display: none;
}

.certificate-cta {
  width: min(100%, 620px);
  background: var(--pink-dark);
  text-transform: uppercase;
}

.certificate-cta:hover {
  background: var(--pink);
}

.expert-section {
  padding-block: clamp(64px, 7vw, 104px);
  background:
    linear-gradient(90deg, rgba(255, 248, 243, 0.94), rgba(255, 225, 232, 0.26)),
    var(--cream);
}

.expert-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.expert-photo {
  position: relative;
  justify-self: center;
  width: min(100%, 480px);
  margin: 0;
}

.expert-photo img {
  width: 100%;
  aspect-ratio: 0.8;
  border: 3px solid rgba(217, 164, 65, 0.72);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(74, 33, 28, 0.16);
  object-fit: cover;
  object-position: 58% center;
}

.expert-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.95);
  color: var(--pink-dark);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.expert-copy {
  max-width: 780px;
}

.expert-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 4.3vw, 64px);
  line-height: 1.04;
}

.expert-lead {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--chocolate);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 700;
  line-height: 1.55;
}

.expert-copy blockquote {
  margin: 0 0 32px;
  color: var(--pink-dark);
  font-size: clamp(20px, 1.8vw, 26px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.35;
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.expert-stats article {
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  padding: 22px 16px;
  text-align: center;
}

.expert-stats span {
  display: block;
  color: var(--chocolate);
  font-size: 18px;
  font-weight: 900;
}

.expert-stats p {
  margin: 8px 0 0;
  color: var(--warm-gray);
  font-size: 15px;
}

.expert-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.expert-pills span {
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.88);
  color: var(--pink-dark);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 800;
}

.expert-pills span::before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
}

.expert-cta {
  width: min(100%, 620px);
  background: var(--pink-dark);
  text-transform: uppercase;
}

.expert-cta:hover {
  background: var(--pink);
}

.risk-section {
  padding-block: clamp(64px, 7vw, 104px);
  background:
    linear-gradient(90deg, rgba(255, 248, 243, 0.98), rgba(255, 225, 232, 0.24)),
    var(--cream);
}

.risk-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.risk-seal {
  justify-self: center;
  width: min(100%, 360px);
  margin: 0;
  filter: drop-shadow(0 22px 34px rgba(74, 33, 28, 0.18));
}

.risk-seal img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 49% 50%;
}

.risk-copy {
  max-width: 820px;
}

.risk-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.04;
}

.risk-copy > p:not(.section-kicker):not(.risk-note) {
  max-width: 820px;
  margin-bottom: 32px;
  color: var(--warm-gray);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.risk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.risk-pills span {
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.88);
  color: var(--pink-dark);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 800;
}

.risk-pills span::before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
}

.risk-cta {
  width: min(100%, 620px);
  background: var(--pink-dark);
  text-transform: uppercase;
}

.risk-cta:hover {
  background: var(--pink);
}

.risk-note {
  width: min(100%, 620px);
  margin: 16px 0 0;
  color: var(--warm-gray);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.purchase-section {
  background:
    linear-gradient(180deg, rgba(255, 225, 232, 0.68), rgba(255, 248, 243, 0.96)),
    var(--pink-light);
  padding-block: clamp(30px, 4vw, 46px);
}

.purchase-box {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.purchase-card {
  width: min(100%, 560px);
  border: 1px solid rgba(74, 33, 28, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(74, 33, 28, 0.12);
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3.4vw, 34px);
  text-align: center;
}

.purchase-card .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.purchase-card .eyebrow::before,
.purchase-card .eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--pink-dark);
}

.purchase-card h2 {
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 14px;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.1;
}

.purchase-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  max-width: 360px;
  margin: 0 auto 16px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.purchase-list li {
  position: relative;
  min-height: 20px;
  padding-left: 28px;
  color: var(--chocolate);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.purchase-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.purchase-price {
  display: grid;
  justify-items: center;
  margin-bottom: 16px;
}

.purchase-price span {
  color: var(--warm-gray);
  font-size: 14px;
}

.purchase-price strong {
  color: var(--pink-dark);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;
}

.primary-button.full {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.purchase-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 12px 0 14px;
  color: var(--warm-gray);
  font-size: 12px;
  font-weight: 700;
}

.purchase-badges span::before {
  content: "✓";
  margin-right: 5px;
  color: var(--pink);
}

.purchase-guarantee {
  border-top: 1px solid rgba(74, 33, 28, 0.12);
  padding-top: 14px;
}

.purchase-guarantee strong {
  display: block;
  margin-bottom: 6px;
  color: var(--chocolate);
  font-size: 16px;
}

.purchase-guarantee p {
  max-width: 420px;
  margin: 0 auto;
  color: var(--warm-gray);
  font-size: 14px;
  line-height: 1.45;
}

.purchase-mobile-doll {
  display: none;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--chocolate);
  font-size: 17px;
  font-weight: 700;
}

details p {
  margin-top: 12px;
}

.site-footer {
  border-top: 0;
  background: var(--pink-dark);
  color: var(--white);
}

.footer-inner {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  align-items: start;
  gap: clamp(28px, 6vw, 96px);
  padding-block: 46px 24px;
  color: var(--white);
  font-size: 15px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: inherit;
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--pink-light);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.footer-social .material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  font-size: 19px;
  line-height: 1;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.35;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.site-footer .footer-inner {
  min-height: auto;
}

/* Compactação visual geral: seções menores, leitura mais rápida e menos rolagem vazia. */
:root {
  --container: min(calc(100% - 64px), 1180px);
  --shadow: 0 10px 26px rgba(74, 33, 28, 0.08);
}

body {
  line-height: 1.5;
}

.header-inner,
.footer-inner {
  min-height: 60px;
}

.site-nav {
  gap: 18px;
}

.brand-mark {
  width: 32px;
  height: 32px;
}

.header-cta {
  min-height: 38px;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 14px;
}

.hero-section {
  padding-block: clamp(34px, 5vw, 68px);
}

.section,
.presentation-section,
.social-proof-section,
.workbook-section,
.certificate-section,
.expert-section,
.risk-section {
  padding-block: clamp(38px, 5vw, 64px);
}

.hero-grid {
  grid-template-columns: minmax(560px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(24px, 3vw, 42px);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero-copy > * {
  min-width: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.hero-video {
  display: none;
}

h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.16;
  overflow-wrap: break-word;
}

h3 {
  font-size: 18px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.section-kicker {
  gap: 10px;
}

.hero-text,
.section-heading p,
.purchase-box > div > p,
.presentation-copy p:not(.eyebrow),
.learning-copy p:not(.section-kicker),
.social-proof-heading p,
.course-heading p,
.workbook-intro p,
.certificate-copy p,
.expert-lead,
.risk-copy > p:not(.section-kicker):not(.risk-note) {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
}

.hero-text span {
  color: var(--pink-dark);
  font-weight: 700;
}

.hero-actions {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 22px;
  width: min(100%, 500px);
}

.hero-actions .primary-button {
  width: 100%;
  max-width: 500px;
}

.hero-payment-flags {
  width: min(100%, 190px);
  margin: 12px auto 0;
  opacity: 0.82;
}

.hero-price {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 1px;
  margin-top: 18px;
  text-align: center;
}

.hero-price span {
  color: var(--warm-gray);
  font-size: 15px;
  font-weight: 500;
}

.hero-price s {
  text-decoration-thickness: 1px;
}

.hero-price strong {
  color: var(--pink-dark);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
}

.hero-price small {
  color: var(--warm-gray);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.primary-button {
  min-width: 220px;
  min-height: 44px;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 15px;
}

.hero-points {
  gap: 10px;
  margin-top: 22px;
}

.hero-points li {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.hero-copy h1 span {
  color: var(--pink-dark);
  white-space: nowrap;
}

.hero-copy .eyebrow {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(201, 47, 82, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  padding: 7px 12px;
  letter-spacing: 0.08em;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-copy .primary-button {
  box-shadow: 0 14px 30px rgba(248, 66, 104, 0.24);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 16px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--chocolate);
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.hero-points li span {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  background: transparent;
  color: var(--pink-dark);
  font-size: 20px;
  line-height: 1;
}

.hero-points li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--pink-dark);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.presentation-grid,
.learning-grid,
.workbook-grid,
.certificate-grid,
.expert-grid,
.risk-grid,
.faq-grid,
.purchase-box {
  gap: clamp(24px, 4vw, 54px);
}

.presentation-copy h2 {
  font-size: clamp(26px, 2.2vw, 34px);
}

.video-shell {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(74, 33, 28, 0.1);
}

.video-shell::before {
  inset: -6px;
  border-radius: 16px;
}

.learning-section::after {
  font-size: clamp(120px, 16vw, 220px);
}

.learning-copy h2,
.social-proof-heading h2,
.course-heading h2,
.workbook-intro h2,
.certificate-copy h2,
.expert-copy h2,
.risk-copy h2,
.price {
  font-size: clamp(28px, 2.8vw, 42px);
}

.learning-copy h2 {
  margin-bottom: 14px;
}

.dessert-mosaic {
  gap: 10px;
  filter: drop-shadow(0 10px 20px rgba(74, 33, 28, 0.1));
}

.mosaic-tile {
  aspect-ratio: 0.82;
  border-radius: 10px;
}

.social-proof-heading,
.course-heading {
  margin-bottom: 22px;
}

.proof-strip {
  width: min(100%, 1120px);
  gap: 14px;
}

.proof-card {
  min-height: 220px;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(74, 33, 28, 0.1);
}

.social-proof-cta {
  margin-top: 22px;
}

.workbook-card {
  width: min(100%, 900px);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(74, 33, 28, 0.1);
  padding: 34px 28px 26px;
}

.course-tab {
  top: -15px;
  padding: 8px 18px;
  font-size: 13px;
}

.course-list,
.workbook-list {
  gap: 14px;
}

.course-list li,
.workbook-list li {
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.18;
}

.workbook-list h3 {
  font-size: 14px;
}

.course-offer {
  margin-top: 20px;
  padding-top: 18px;
}

.course-pills,
.expert-pills,
.risk-pills {
  gap: 8px;
  margin-bottom: 14px;
}

.course-pills span,
.expert-pills span,
.risk-pills span {
  padding: 7px 12px;
  font-size: 13px;
}

.course-pills span::before,
.expert-pills span::before,
.risk-pills span::before {
  width: 18px;
  height: 18px;
  font-size: 12px;
}

.method-section .container {
  width: min(calc(100% - 96px), 1500px);
}

.method-section .course-heading {
  max-width: 940px;
}

.method-section .course-heading p {
  max-width: 820px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.method-section .course-lessons {
  width: min(100%, 620px);
}

.method-section .course-tab {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.method-section .course-list {
  grid-template-columns: minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 0;
  align-items: start;
}

.method-section .course-list li {
  padding: 4px 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.method-section .course-list strong {
  font-weight: 700;
}

.method-section .course-offer {
  margin-top: 12px;
  padding-top: 12px;
}

.method-section .course-offer p {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
}

.method-section .course-pills {
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.method-section .course-pills span {
  white-space: nowrap;
}

.course-list-mobile {
  display: none !important;
}

.workbook-list-mobile,
.workbook-drag-hint,
.workbook-offer {
  display: none;
}

@media (min-width: 761px) {
  .method-section .course-list-mobile {
    display: none !important;
  }

  .method-section .course-lessons {
    width: min(100%, 1120px);
    max-width: 1120px;
  }

  .method-section .course-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
  }

  .method-section .lesson-card-primary {
    border: 1px solid rgba(74, 33, 28, 0.1);
    border-radius: 16px;
    background:
      repeating-linear-gradient(
        180deg,
        rgba(74, 33, 28, 0.055) 0,
        rgba(74, 33, 28, 0.055) 1px,
        transparent 1px,
        transparent 38px
      ),
      var(--white);
    box-shadow: 0 16px 34px rgba(74, 33, 28, 0.1);
    margin: 0;
    padding: 26px 18px 20px;
    list-style: none;
  }

  .method-section .course-tab {
    top: -16px;
  }

  .method-section .course-drag-hint {
    display: none;
  }

  .workbook-list-mobile,
  .workbook-drag-hint,
  .workbook-offer {
    display: none !important;
  }
}

.workbook-section {
  padding-block: clamp(32px, 4vw, 52px);
}

.workbook-section .container {
  width: min(calc(100% - 96px), 1380px);
}

.workbook-grid {
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(28px, 4vw, 64px);
}

.workbook-cover {
  width: min(100%, 210px);
  margin-bottom: 14px;
  filter: none;
  transform: none;
}

.workbook-cover::before,
.workbook-cover figcaption {
  display: none;
}

.workbook-cover img {
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.workbook-intro {
  justify-items: start;
}

.workbook-intro h2 {
  max-width: 320px;
  margin-bottom: 8px;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.06;
}

.workbook-intro p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.42;
}

.workbook-card {
  width: 100%;
  max-width: 1120px;
  padding: 28px 32px 22px;
}

.workbook-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.workbook-list h3 {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.workbook-list ul {
  margin: 0 0 10px;
}

.workbook-list li {
  padding: 4px 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.certificate-preview {
  width: min(100%, 430px);
}

.certificate-preview img {
  border-width: 6px;
  box-shadow: 0 14px 32px rgba(74, 33, 28, 0.14);
}

.certificate-preview span {
  width: 58px;
  height: 58px;
  border-width: 5px;
  font-size: 24px;
}

.certificate-badge {
  min-height: 34px;
  margin-bottom: 12px;
  padding: 7px 14px;
  font-size: 12px;
}

.certificate-points {
  gap: 8px;
  margin: 14px 0;
}

.certificate-points li {
  font-size: 15px;
}

.certificate-points li::before {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.certificate-offer {
  width: min(100%, 300px);
  margin-bottom: 14px;
}

.certificate-offer strong {
  font-size: 24px;
}

.expert-photo {
  width: min(100%, 360px);
}

.expert-photo img {
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(74, 33, 28, 0.14);
}

.expert-photo figcaption {
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  font-size: 13px;
}

.expert-copy h2 {
  margin-bottom: 10px;
}

.expert-lead {
  margin-bottom: 16px;
}

.expert-copy blockquote {
  margin-bottom: 20px;
  font-size: clamp(17px, 1.4vw, 21px);
}

.expert-stats {
  gap: 10px;
  margin-bottom: 20px;
}

.expert-stats article {
  border-radius: 10px;
  padding: 14px 12px;
}

.expert-stats span {
  font-size: 16px;
}

.expert-pills {
  margin-bottom: 14px;
}

.expert-cta {
  width: min(100%, 420px);
  min-height: 46px;
  padding-inline: 22px;
}

.risk-seal {
  width: min(100%, 260px);
}

.risk-copy > p:not(.section-kicker):not(.risk-note) {
  margin-bottom: 18px;
}

.risk-section {
  padding-block: clamp(34px, 4.5vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 243, 0.92)),
    var(--white);
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.risk-seal {
  width: min(100%, 210px);
  filter: drop-shadow(0 12px 24px rgba(74, 33, 28, 0.12));
}

.risk-copy {
  max-width: 820px;
  display: grid;
  justify-items: center;
}

.risk-copy .section-kicker {
  justify-content: center;
  margin-bottom: 8px;
}

.risk-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 44px);
}

.risk-copy > p:not(.section-kicker):not(.risk-note) {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 16px;
}

.risk-pills {
  justify-content: center;
  margin-bottom: 14px;
}

.risk-cta {
  width: min(100%, 420px);
  min-height: 46px;
}

.risk-note {
  width: auto;
  margin-top: 10px;
  font-size: 14px;
}

.faq-list {
  gap: 12px;
}

details {
  padding: 14px 16px;
}

summary {
  font-size: 15px;
}

.faq-section {
  padding-block: clamp(30px, 4vw, 48px);
  background: var(--white);
}

.faq-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
}

.faq-grid .section-heading {
  max-width: 760px;
  width: 100%;
  text-align: center;
}

.faq-grid .eyebrow {
  text-align: center;
}

.faq-grid .section-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(26px, 2.4vw, 34px);
}

.faq-list {
  width: min(100%, 1480px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-list details {
  border-radius: 10px;
  box-shadow: none;
  padding: 12px 14px;
}

.faq-list summary {
  font-size: 13.5px;
  line-height: 1.25;
}

.faq-list details p {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.4;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dragHintPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

@media (max-width: 1100px) {
  :root {
    --container: min(calc(100% - 44px), 960px);
  }

  .hero-section {
    background-image:
      linear-gradient(
        90deg,
        var(--cream) 0%,
        rgba(255, 248, 243, 0.99) 48%,
        rgba(255, 248, 243, 0.88) 74%,
        rgba(255, 248, 243, 0.62) 100%
      ),
      url("assets/fundoherodesktop.webp");
    background-position: left center, 64% center;
  }

  .hero-grid,
  .faq-grid,
  .purchase-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    max-width: 860px;
  }

  .section-heading.compact {
    margin-bottom: 24px;
  }

  .presentation-section {
    display: none;
  }

  .learning-grid {
    gap: 24px;
  }

  .learning-copy {
    max-width: 820px;
  }

  .learning-copy h2,
  .learning-copy p:not(.section-kicker) {
    max-width: 820px;
    margin-inline: auto;
  }

  .dessert-mosaic {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .method-section .course-list li {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .workbook-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workbook-intro {
    text-align: center;
  }

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

  .certificate-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .certificate-copy {
    max-width: 760px;
    justify-self: center;
    text-align: center;
  }

  .certificate-copy p,
  .certificate-lead {
    margin-inline: auto;
  }

  .certificate-points {
    width: min(100%, 520px);
    margin-inline: auto;
    text-align: left;
  }

  .certificate-offer {
    margin-inline: auto;
  }

  .expert-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .expert-copy {
    max-width: 760px;
    justify-self: center;
    text-align: center;
  }

  .expert-stats {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .expert-pills {
    justify-content: center;
  }

  .risk-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .risk-copy {
    max-width: 760px;
    justify-self: center;
    text-align: center;
  }

  .risk-copy > p:not(.section-kicker):not(.risk-note) {
    margin-inline: auto;
  }

  .risk-pills {
    justify-content: center;
  }

}

@media (min-width: 761px) and (max-width: 1100px) {
  .presentation-section {
    display: block;
    padding-block: clamp(34px, 5vw, 52px);
  }

  .presentation-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(calc(100% - 44px), 780px);
    text-align: center;
  }

  .presentation-copy h2,
  .presentation-copy p:not(.eyebrow) {
    margin-inline: auto;
  }

  .presentation-grid .video-shell {
    width: 100%;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .dessert-mosaic {
    width: min(100%, 720px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .method-section .course-lessons {
    width: min(100%, 760px);
    max-width: 760px;
  }

  .method-section .course-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-section .course-list .lesson-card-primary:last-child {
    grid-column: 1 / -1;
    width: min(100%, 380px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100% - 32px);
  }

  .container {
    margin-inline: auto;
  }

  .site-header {
    display: none;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav a {
    margin-right: 12px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-section {
    background-image:
      linear-gradient(
        90deg,
        var(--cream) 0%,
        rgba(255, 248, 243, 0.98) 42%,
        rgba(255, 248, 243, 0.76) 70%,
        rgba(255, 248, 243, 0.38) 100%
      ),
      url("assets/fundoherodesktop.webp");
    background-position: left center, 60% top;
    background-size: 100% 100%, auto 100%;
    padding-block: 24px 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: min(100%, 390px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    justify-content: center;
    gap: 0;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 358px;
    margin-inline: auto;
    text-align: center;
  }

  .section {
    padding-block: 38px;
  }

  h1 {
    max-width: min(100%, 320px);
    font-size: clamp(23px, 5.2vw, 26px);
    line-height: 1.08;
    margin-bottom: 10px;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .hero-video {
    display: block;
    width: min(100%, 360px);
    margin-bottom: 12px;
    overflow: hidden;
    border: 0;
    background: var(--pink);
    box-shadow: 0 0 0 4px rgba(248, 66, 104, 0.1), 0 14px 30px rgba(248, 66, 104, 0.18);
    padding: 2px;
  }

  .hero-video::before {
    display: none;
  }

  .hero-video iframe {
    border: 0;
    border-radius: 12px;
  }

  .presentation-section .video-shell {
    display: none;
  }

  .hero-copy .eyebrow {
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px 9px;
    font-size: 9.5px;
    line-height: 1.25;
    text-align: center;
  }

  .hero-copy h1 span {
    display: block;
    white-space: normal;
  }

  h2 {
    max-width: min(100%, 320px);
    font-size: clamp(21px, 5.4vw, 25px);
    text-wrap: wrap;
  }

  .hero-text,
  .section-heading p,
  .purchase-box > div > p {
    font-size: 15px;
  }

  .hero-text {
    margin-bottom: 0;
    line-height: 1.42;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 330px);
    margin-top: 12px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
  }

  .hero-points {
    width: min(100%, 330px);
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .hero-points li {
    min-width: 0;
    min-height: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    font-size: 9.25px;
    font-weight: 700;
    line-height: 1.12;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-points li span {
    font-variation-settings: "FILL" 0, "wght" 100, "GRAD" -25, "opsz" 20;
    font-size: 18px;
  }

  .hero-points li svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.15;
  }

  .hero-price {
    margin-top: 12px;
  }

  .hero-price strong {
    font-size: clamp(28px, 7.4vw, 34px);
  }

  .hero-payment-flags {
    margin-top: 8px;
  }

  .method-section .course-heading p:not(.eyebrow) {
    display: none;
  }

  .learning-section::after {
    display: none;
  }

  .learning-copy h2 {
    font-size: clamp(21px, 5.4vw, 25px);
  }

  .learning-copy p:not(.section-kicker) {
    font-size: 15px;
  }

  .dessert-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .mosaic-tile {
    border-radius: 12px;
  }

  .mosaic-mobile-only {
    display: block;
  }

  .learning-price {
    margin-top: 0;
  }

  .section-price strong {
    font-size: clamp(30px, 8vw, 38px);
  }

  .section-price .primary-button {
    margin-top: 12px;
  }

  .social-proof-section {
    padding-block: 38px;
  }

  .proof-strip {
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 16px 10px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .proof-card,
  .proof-card:nth-child(even),
  .proof-card:nth-child(3n) {
    flex: 0 0 82%;
    min-height: auto;
    scroll-snap-align: center;
    transform: none;
  }

  .proof-card-mobile-only {
    display: block;
  }

  .proof-strip::-webkit-scrollbar {
    display: none;
  }

  .social-proof-cta {
    width: 100%;
    max-width: 360px;
  }

  .course-heading h2 {
    font-size: clamp(21px, 5.4vw, 25px);
  }

  .method-section {
    overflow-x: hidden;
  }

  .method-section .container {
    width: calc(100% - 32px);
    box-sizing: border-box;
    overflow: hidden;
  }

  .method-section .course-heading {
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
    overflow: hidden;
  }

  .method-section .course-heading h2 {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .method-section .course-lessons {
    width: 100%;
    max-width: 330px;
    margin-inline: auto;
    overflow: visible;
    padding-top: 0;
  }

  .course-tab {
    max-width: calc(100% - 32px);
    overflow-wrap: normal;
    text-align: center;
    white-space: normal;
  }

  .method-section .course-lessons > .course-tab.course-tab-lessons {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(calc(100% - 22px), 230px);
    min-height: 34px;
    margin: 0 auto -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    font-size: 13px;
    line-height: 1;
  }

  .course-tab-lessons span {
    display: block;
    white-space: nowrap;
  }

  .method-section .course-list {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    width: 100%;
    max-width: 330px;
    box-sizing: border-box;
    margin-inline: auto;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 0 8px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .method-section .course-list-desktop {
    display: none !important;
  }

  .method-section .course-list-mobile {
    display: flex !important;
  }

  .method-section .course-list::-webkit-scrollbar {
    display: none;
  }

  .method-section .course-list .lesson-card-primary {
    flex: 0 0 calc(100% - 44px);
    box-sizing: border-box;
    scroll-snap-align: start;
    border: 1px solid rgba(74, 33, 28, 0.08);
    border-radius: 14px;
    background:
      repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 20px,
        rgba(217, 164, 65, 0.28) 21px
      ),
      var(--white);
    box-shadow: 0 12px 26px rgba(74, 33, 28, 0.1);
    padding: 22px 7px 18px;
  }

  .course-drag-hint {
    margin: 8px 0 0;
    color: var(--pink-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    animation: dragHintPulse 1.5s ease-in-out infinite;
  }

  .course-list li {
    font-size: 15px;
  }

  .course-list .lesson-card-primary li {
    border-bottom: 0;
    overflow: hidden;
    padding: 0;
    font-size: 11.7px;
    line-height: 21px;
    text-align: left;
    text-overflow: clip;
    white-space: nowrap;
  }

  .course-pills {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .course-pills span {
    width: 100%;
  }

  .workbook-section {
    padding-block: 38px;
  }

  .workbook-section .container {
    width: calc(100% - 32px);
  }

  .workbook-grid {
    justify-items: center;
    gap: 22px;
  }

  .workbook-intro {
    width: 100%;
    max-width: 330px;
    justify-items: center;
    text-align: center;
  }

  .workbook-cover {
    width: min(100%, 180px);
    margin-inline: auto;
    margin-bottom: 10px;
  }

  .workbook-intro h2 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(21px, 5.4vw, 25px);
    text-align: center;
  }

  .workbook-intro p {
    max-width: 330px;
    margin-inline: auto;
    font-size: 12px;
    line-height: 1.32;
    text-align: center;
  }

  .workbook-intro p span {
    color: var(--pink-dark);
    font-weight: 700;
  }

  .workbook-card {
    width: 100%;
    max-width: 330px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  .workbook-card .course-tab {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(calc(100% - 22px), 230px);
    min-height: 34px;
    margin: 0 auto -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    font-size: 13px;
    line-height: 1;
  }

  .workbook-list-desktop {
    display: none;
  }

  .workbook-list-mobile {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 8px 8px;
    scroll-padding-left: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .workbook-list-mobile::-webkit-scrollbar {
    display: none;
  }

  .workbook-list-panel {
    flex: 0 0 calc(100% - 28px);
    scroll-snap-align: start;
    border: 1px solid rgba(74, 33, 28, 0.08);
    border-radius: 14px;
    background:
      repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 20px,
        rgba(217, 164, 65, 0.28) 21px
      ),
      var(--white);
    box-shadow: 0 12px 26px rgba(74, 33, 28, 0.1);
    padding: 22px 7px 18px;
  }

  .workbook-list-panel h3 {
    margin: 0;
    padding: 0;
    font-size: 11.7px;
    line-height: 21px;
  }

  .workbook-list-panel ul {
    margin: 0;
  }

  .workbook-list-panel li {
    border-bottom: 0;
    padding: 0;
    font-size: 11.7px;
    line-height: 21px;
    white-space: nowrap;
  }

  .workbook-drag-hint {
    display: block;
    margin: 8px 0 0;
    color: var(--pink-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    animation: dragHintPulse 1.5s ease-in-out infinite;
  }

  .workbook-offer {
    display: grid;
    justify-items: center;
    margin-top: 18px;
    text-align: center;
  }

  .workbook-cta {
    width: min(100%, 280px);
    min-width: 0;
    background: var(--pink-dark);
    text-transform: uppercase;
  }

  .workbook-offer p {
    max-width: 260px;
    margin: 8px 0 0;
    color: var(--warm-gray);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
  }

  .certificate-section {
    padding-block: 38px;
  }

  .certificate-preview {
    width: min(100%, 280px);
  }

  .certificate-preview span {
    right: -8px;
    bottom: -16px;
    width: 58px;
    height: 58px;
    border-width: 5px;
    font-size: 24px;
  }

  .certificate-copy h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .certificate-offer {
    display: none;
  }

  .certificate-offer-mobile {
    display: grid;
    justify-items: center;
    margin: 10px 0 16px;
    text-align: center;
  }

  .certificate-offer-mobile span {
    color: var(--warm-gray);
    font-size: 13px;
    line-height: 1.1;
  }

  .certificate-offer-mobile s {
    text-decoration-thickness: 1px;
  }

  .certificate-offer-mobile strong {
    color: var(--pink-dark);
    font-size: clamp(28px, 9vw, 36px);
    font-weight: 800;
    line-height: 1.05;
  }

  .certificate-offer-mobile small {
    color: var(--warm-gray);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
  }

  .certificate-points li {
    align-items: flex-start;
    font-size: 16px;
  }

  .certificate-cta {
    width: 100%;
  }

  .expert-section {
    padding-block: 38px;
  }

  .expert-photo {
    width: min(100%, 280px);
  }

  .expert-photo figcaption {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    font-size: 14px;
  }

  .expert-copy h2 {
    font-size: clamp(25px, 6.5vw, 32px);
  }

  .expert-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
  }

  .expert-stats article {
    display: grid;
    justify-items: center;
    gap: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .expert-stats span {
    font-size: 13px;
    line-height: 1.15;
  }

  .expert-stats p {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .expert-pills {
    display: none;
  }

  .expert-cta {
    width: min(100%, 280px);
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  .risk-section {
    padding-block: 38px;
  }

  .risk-seal {
    width: min(100%, 190px);
  }

  .risk-copy h2 {
    font-size: clamp(25px, 6.5vw, 32px);
  }

  .risk-pills {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    margin-bottom: 16px;
  }

  .risk-pills span {
    width: auto;
    padding: 6px 7px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
  }

  .risk-pills span::before {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    font-size: 9px;
  }

  .risk-cta {
    width: 100%;
  }

  .purchase-list {
    grid-template-columns: 1fr;
  }

  .purchase-card {
    padding: 22px 18px;
  }

  .purchase-price span {
    font-size: 13px;
  }

  .purchase-price strong {
    font-size: 0;
  }

  .purchase-price strong::before {
    content: "R$ 49,90";
    color: var(--pink-dark);
    font-size: clamp(34px, 10vw, 42px);
    font-weight: 800;
    line-height: 1;
  }

  .purchase-badges {
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 500;
    white-space: nowrap;
  }

  .purchase-badges span::before {
    margin-right: 3px;
  }

  .purchase-guarantee {
    display: none;
  }

  .purchase-mobile-doll {
    display: block;
    width: min(100%, 160px);
    margin: 14px auto 0;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    padding-block: 24px 16px;
    font-size: 13px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 6px;
    font-size: 26px;
  }

  .footer-brand p {
    max-width: 280px;
    margin-inline: auto;
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-social {
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
  }

  .footer-social .material-symbols-rounded {
    font-size: 16px;
  }

  .footer-column {
    gap: 7px;
    text-align: left;
  }

  .footer-column h2 {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .footer-column a {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
    padding-top: 12px;
    text-align: center;
    font-size: 10.5px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 430px) {
  :root {
    --container: calc(100% - 28px);
  }

  .container {
    margin-inline: auto;
  }

  .brand {
    font-size: 15px;
  }

  .site-nav {
    font-size: 14px;
  }

  .section-kicker {
    align-items: flex-start;
    font-size: 14px;
    letter-spacing: 0.12em;
  }

}
