:root {
  --ink: #101826;
  --muted: #677280;
  --navy: #0e1622;
  --navy-soft: #182130;
  --cyan: #88d0e8;
  --gold: #cf8d40;
  --gold-strong: #bb7c33;
  --cream: #f4efe7;
  --sand: #e8dfd2;
  --sand-soft: #f5efe7;
  --ice: #d0dae6;
  --ice-soft: #e7edf4;
  --line: rgba(16, 24, 38, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 54px rgba(16, 24, 38, 0.18);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(207, 141, 64, 0.08), transparent 28%),
    #f5eee4;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section-anchor {
  position: relative;
  display: block;
  top: -110px;
  visibility: hidden;
}

.topbar-link-mobile {
  display: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.topbar-shell {
  min-height: 0;
  padding: 1.35rem 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.brand img {
  width: 212px;
  height: auto;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.topbar-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.topbar-links {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
  position: relative;
  z-index: 32;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 8.25rem 0 5.4rem;
  min-height: calc(100svh - 110px);
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(92deg, rgba(6, 10, 17, 0.9) 0%, rgba(8, 13, 21, 0.76) 24%, rgba(10, 15, 23, 0.48) 48%, rgba(9, 14, 22, 0.18) 76%, rgba(9, 14, 22, 0.32) 100%),
    radial-gradient(circle at 78% 18%, rgba(207, 141, 64, 0.24), transparent 22%),
    radial-gradient(circle at 18% 22%, rgba(136, 208, 232, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(9, 14, 22, 0.08), rgba(9, 14, 22, 0.28)),
    url("assets/mulher_uza3-hero.jpg") 88% 14% / cover no-repeat;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.06);
  transform-origin: center;
  transition: transform 180ms linear;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  top: 9%;
  right: 7%;
  width: 28vw;
  height: 28vw;
  max-width: 360px;
  max-height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(207, 141, 64, 0.22), rgba(207, 141, 64, 0));
  filter: blur(14px);
  opacity: 0.88;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(11, 17, 24, 0), rgba(11, 17, 24, 0.42) 58%, rgba(11, 17, 24, 0.78) 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.82fr);
  gap: 2.6rem;
  align-items: center;
  min-height: calc(100svh - 198px);
}

.hero-copy {
  color: #f7f3eb;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--cyan);
}

.section-kicker {
  color: var(--cyan);
}

.brand-line {
  margin: 0 0 1rem;
  color: rgba(247, 243, 235, 0.92);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
strong {
  font-family: "Space Grotesk", sans-serif;
}

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

h1 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.9vw, 4.5rem);
  line-height: 0.95;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 2.85vw, 2.65rem);
  line-height: 1;
}

.hero-lead,
.section-copy p,
.cta-copy p {
  max-width: 640px;
  margin: 1rem 0 0;
  line-height: 1.75;
}

.hero-lead {
  color: rgba(247, 243, 235, 0.82);
  max-width: 34rem;
  font-size: clamp(1.03rem, 1.55vw, 1.18rem);
}

.hero-support {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  color: rgba(247, 243, 235, 0.72);
  font-size: 0.97rem;
  line-height: 1.68;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 39rem;
  margin-top: 1.4rem;
}

.hero-fact {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-fact strong {
  font-size: 0.94rem;
  color: #f7f3eb;
}

.hero-fact span {
  margin-top: 0.34rem;
  color: rgba(247, 243, 235, 0.7);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
  position: relative;
  z-index: 2;
}

.hero-actions .btn {
  position: relative;
  z-index: 2;
}

.hero-cta-note {
  max-width: 38rem;
  margin: 0.95rem 0 0;
  color: rgba(247, 243, 235, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.98rem 1.35rem;
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #dfa04d 0%, var(--gold) 58%, #b97831 100%);
  color: #181007;
  font-weight: 800;
  box-shadow:
    0 16px 30px rgba(207, 141, 64, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border: 0;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e5a957 0%, #c88739 58%, var(--gold-strong) 100%);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f7f3eb;
  font-weight: 800;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}

.lead-form-hero {
  align-self: flex-start;
  width: min(100%, 408px);
  margin-left: auto;
  margin-top: 11rem;
  padding: 1.2rem;
  border-color: rgba(255, 249, 241, 0.3);
  background:
    linear-gradient(180deg, rgba(84, 72, 55, 0.18), rgba(24, 28, 33, 0.12));
  box-shadow:
    0 34px 64px rgba(8, 12, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.visual-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 500px);
  margin-top: 4.5rem;
  margin-right: 0.35rem;
  transform: translate3d(0, calc(30px + var(--hero-card-shift, 0px)), 0);
  padding: 1.2rem;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(252, 249, 244, 0.9), rgba(234, 226, 216, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 34px 64px rgba(8, 12, 20, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
  transition: transform 180ms linear;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.visual-eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2d6487;
}

.visual-card img {
  width: 100%;
  border-radius: 20px;
}

.visual-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.visual-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.68rem 0.9rem;
  border-radius: 16px;
  background: rgba(16, 24, 38, 0.08);
  color: #1c2634;
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-band {
  padding: 1.3rem 0 1.55rem;
  background:
    linear-gradient(180deg, #121a27 0%, #182231 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: rgba(136, 208, 232, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-copy {
  max-width: 48rem;
}

.summary-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(207, 141, 64, 0.16), transparent 22%),
    radial-gradient(circle at 86% 26%, rgba(108, 225, 249, 0.1), transparent 20%),
    linear-gradient(180deg, #f8f2e8 0%, #efe5d8 100%);
  border-bottom: 1px solid rgba(16, 24, 38, 0.06);
}

.summary-shell,
.process-shell {
  display: grid;
  gap: 1.5rem;
}

.summary-shell {
  gap: 1.7rem;
}

.summary-copy h2,
.summary-copy p {
  color: var(--ink);
}

.summary-copy h2 {
  max-width: 18ch;
}

.summary-copy p {
  color: var(--muted);
  max-width: 44rem;
}

.summary-copy .section-kicker {
  color: #8c5b1d;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.summary-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 1.18rem 1.08rem 1.22rem;
  border: 1px solid rgba(16, 24, 38, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 251, 246, 0.94), rgba(242, 232, 220, 0.84));
  border-radius: 24px;
  box-shadow:
    0 16px 30px rgba(16, 24, 38, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: auto 1.08rem 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gold), rgba(108, 225, 249, 0.72));
}

.summary-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: #8c5b1d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.summary-card strong {
  display: block;
  margin-bottom: 0.58rem;
  font-size: 1.05rem;
  line-height: 1.12;
  color: var(--ink);
}

.summary-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
  max-width: 27ch;
}

.offer-focus {
  background:
    radial-gradient(circle at 82% 18%, rgba(207, 141, 64, 0.12), transparent 22%),
    linear-gradient(180deg, #101824 0%, #182130 100%);
}

.offer-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.4rem;
  align-items: center;
}

.offer-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-copy h2,
.offer-copy p {
  color: #f5f0e8;
}

.offer-copy .section-kicker {
  color: var(--cyan);
}

.offer-copy h2 {
  max-width: 14ch;
}

.offer-note {
  max-width: 31rem;
  margin-top: 1.05rem;
  color: rgba(245, 240, 232, 0.74);
  line-height: 1.7;
}

.offer-copy p {
  color: rgba(245, 240, 232, 0.8);
}

.offer-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.offer-list li {
  padding: 0.95rem 0 0.95rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 240, 232, 0.88);
  line-height: 1.6;
  position: relative;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.entry-band {
  padding: 2.7rem 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(207, 141, 64, 0.12), transparent 20%),
    linear-gradient(180deg, #f9f3ea 0%, #efe4d7 100%);
  border-top: 1px solid rgba(16, 24, 38, 0.06);
  border-bottom: 1px solid rgba(16, 24, 38, 0.06);
}

.entry-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 1.7rem;
  align-items: center;
}

.entry-copy h2,
.entry-copy p {
  color: var(--ink);
}

.entry-copy p {
  color: var(--muted);
  max-width: 42rem;
}

.entry-copy .section-kicker {
  color: #8c5b1d;
}

.entry-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.94fr) minmax(0, 1.06fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(16, 24, 38, 0.06);
  box-shadow: 0 20px 40px rgba(16, 24, 38, 0.08);
}

.entry-price-card,
.entry-detail {
  border-radius: 26px;
  border: 1px solid rgba(16, 24, 38, 0.08);
  box-shadow:
    0 14px 24px rgba(16, 24, 38, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.entry-price-card {
  padding: 1.5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(207, 141, 64, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(243, 233, 222, 0.94));
}

.entry-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8c5b1d;
}

.entry-price-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  max-width: 11ch;
  font-size: clamp(1.86rem, 2.8vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ink);
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: normal;
}

.entry-price-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.58;
  max-width: 22ch;
}

.entry-details {
  display: grid;
  gap: 1rem;
}

.entry-detail {
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(244, 235, 225, 0.92));
}

.entry-detail span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: #8c5b1d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.entry-detail strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.entry-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.proof-band-shell p {
  margin: 0 0 0.9rem;
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.94rem;
}

.proof-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-logos div {
  min-height: 86px;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 236, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 10px 22px rgba(7, 11, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.proof-logos div:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 16px 28px rgba(7, 11, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.proof-logos img {
  width: 100%;
  max-height: 46px;
  object-fit: contain;
}

.proof-logos .proof-logo-wide {
  width: 92%;
  max-height: 38px;
}

.pain {
  padding: 3rem 0 2rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(207, 141, 64, 0.08), transparent 22%),
    linear-gradient(180deg, #f6efe6 0%, #efe5d8 100%);
}

.section {
  padding: 4.5rem 0;
}

.cta-grid,
.offer-focus-grid,
.entry-shell {
  display: grid;
  gap: 2rem;
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
}

.section-copy h2,
.section-copy p {
  color: var(--ink);
}

.section-copy p {
  color: var(--muted);
}

.process {
  background:
    radial-gradient(circle at 14% 18%, rgba(207, 141, 64, 0.09), transparent 18%),
    linear-gradient(180deg, #f7f0e7 0%, #eee2d4 100%);
  border-top: 1px solid rgba(16, 24, 38, 0.06);
}

.process-shell {
  display: grid;
  gap: 1.35rem;
}

.process-copy h2,
.process-copy p {
  color: var(--ink);
}

.process-copy p {
  color: var(--muted);
}

.process-copy .section-kicker {
  color: #7d5a2f;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-steps article {
  min-height: 0;
  padding: 1.4rem 1.25rem 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(16, 24, 38, 0.14);
  box-shadow: none;
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: #7d5a2f;
  letter-spacing: 0.08em;
}

.process-steps strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  color: var(--ink);
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.54;
}

.faq-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(136, 208, 232, 0.08), transparent 20%),
    radial-gradient(circle at 14% 22%, rgba(207, 141, 64, 0.1), transparent 18%),
    linear-gradient(180deg, #f8f1e8 0%, #efe3d6 100%);
  border-top: 1px solid rgba(16, 24, 38, 0.06);
}

.faq-shell {
  display: grid;
  gap: 1.5rem;
}

.faq-copy h2,
.faq-copy p {
  color: var(--ink);
}

.faq-copy p {
  color: var(--muted);
  max-width: 46rem;
}

.faq-copy .section-kicker {
  color: #8c5b1d;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-item {
  border-radius: 26px;
  border: 1px solid rgba(16, 24, 38, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(244, 235, 225, 0.92));
  box-shadow:
    0 16px 30px rgba(16, 24, 38, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1.2rem 3.6rem 1.2rem 1.25rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  color: #8c5b1d;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 52rem;
}

.cta-section {
  background:
    radial-gradient(circle at 16% 30%, rgba(207, 141, 64, 0.12), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(207, 141, 64, 0.14), transparent 20%),
    linear-gradient(180deg, #0d1520 0%, #121b28 46%, #172131 100%);
}

.cta-copy h2,
.cta-copy p {
  color: #f6f1e8;
}

.cta-copy .section-kicker {
  color: var(--cyan);
}

.cta-copy p {
  color: rgba(246, 241, 232, 0.8);
}

.cta-points {
  margin: 0.95rem 0 0;
  padding-left: 1.15rem;
  color: rgba(246, 241, 232, 0.84);
}

.cta-points li {
  line-height: 1.58;
}

.cta-direct {
  display: flex;
  margin-top: 1.15rem;
}

.cta-direct .btn {
  min-width: min(100%, 320px);
}

.cta-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.lead-form {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 249, 241, 0.12);
  background:
    linear-gradient(180deg, rgba(92, 79, 58, 0.72), rgba(29, 34, 39, 0.9));
  box-shadow:
    0 28px 48px rgba(7, 11, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 42%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 52%),
    radial-gradient(circle at top right, rgba(207, 141, 64, 0.12), transparent 32%);
  pointer-events: none;
}

.section-visual-card {
  width: min(100%, 560px);
  margin-top: 0;
  margin-right: 0;
  transform: none;
}

.form-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 241, 232, 0.9);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form-title {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
  color: #f7f3eb;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.42rem, 1.9vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.form-intro {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  margin-top: 0.85rem;
  color: rgba(245, 240, 232, 0.84);
  font-size: 0.94rem;
  line-height: 1.62;
}

.field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(245, 240, 232, 0.92);
}

.field-compact {
  gap: 0;
  margin-bottom: 0.8rem;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #f5f0e8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(16, 24, 38, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field select {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 2.8rem 0.8rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.055));
  color: #f5f0e8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(16, 24, 38, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245, 240, 232, 0.9) 50%),
    linear-gradient(135deg, rgba(245, 240, 232, 0.9) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.055));
  background-position:
    calc(100% - 1.2rem) calc(50% - 3px),
    calc(100% - 0.85rem) calc(50% - 3px),
    0 0;
  background-size:
    9px 9px,
    9px 9px,
    100% 100%;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 240, 232, 0.62);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field input:-webkit-autofill:active,
.field select:-webkit-autofill,
.field select:-webkit-autofill:hover,
.field select:-webkit-autofill:focus,
.field select:-webkit-autofill:active {
  -webkit-text-fill-color: #f5f0e8;
  caret-color: #f5f0e8;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.055) inset;
  box-shadow:
    0 0 0 1000px rgba(255, 255, 255, 0.055) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(16, 24, 38, 0.08);
  transition: background-color 9999s ease-out 0s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(207, 141, 64, 0.44);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 3px rgba(207, 141, 64, 0.14);
}

.wa-gate[hidden] {
  display: none;
}

.wa-gate {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.wa-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 18, 0.7);
  backdrop-filter: blur(8px);
}

.wa-gate-dialog {
  position: relative;
  width: min(560px, calc(100% - 1.5rem));
  margin: min(10vh, 72px) auto 0;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 249, 241, 0.14);
  background:
    linear-gradient(180deg, rgba(92, 79, 58, 0.78), rgba(29, 34, 39, 0.94));
  box-shadow:
    0 28px 48px rgba(7, 11, 18, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f7f3eb;
  backdrop-filter: blur(16px);
}

.wa-gate-dialog h2 {
  max-width: 10ch;
  margin-top: 0.2rem;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 0.98;
}

.wa-gate-dialog p {
  max-width: 24rem;
  margin: 0.7rem 0 0;
  color: rgba(245, 240, 232, 0.82);
  line-height: 1.55;
}

.wa-gate-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.wa-gate-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #f5f0e8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(16, 24, 38, 0.08),
    0 10px 22px rgba(16, 24, 38, 0.12);
}

.wa-gate-form input::placeholder {
  color: rgba(245, 240, 232, 0.66);
}

.wa-gate-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  color: rgba(245, 240, 232, 0.72);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.form-note {
  position: relative;
  z-index: 1;
  min-height: 1.4rem;
  margin: 0.45rem 0 0;
  color: rgba(245, 240, 232, 0.74);
}

.lead-form-hero .btn {
  min-height: 52px;
  padding: 0.82rem 1.1rem;
  margin-top: 0.1rem;
}

.cta-mini-note {
  display: inline-flex;
  margin-top: 1rem;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.92rem;
}

.cta-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.cta-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 241, 232, 0.8);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #121a27 0%, #0d141f 100%);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-shell img {
  width: 110px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-center {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(244, 239, 231, 0.72);
  white-space: nowrap;
}

.footer-link {
  color: rgba(244, 239, 231, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease;
}

.footer-link::before {
  content: "- ";
  color: rgba(244, 239, 231, 0.46);
}

.footer-link:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(15, 24, 35, 0.94), rgba(24, 35, 48, 0.92));
  color: #f7f3eb;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 32px rgba(8, 12, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  background:
    linear-gradient(135deg, rgba(19, 30, 43, 0.98), rgba(30, 43, 59, 0.96));
  box-shadow:
    0 22px 36px rgba(8, 12, 20, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.whatsapp-float span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.whatsapp-float span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

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

  .btn,
  .js .reveal {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-layout,
  .offer-focus-grid,
  .cta-grid,
  .entry-shell,
  .entry-panel,
  .process-steps,
  .summary-grid,
  .offer-list,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 1.6rem;
    min-height: auto;
  }

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

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

  .entry-price-card,
  .summary-card {
    min-height: 0;
  }

  .summary-card,
  .process-steps article {
    padding-right: 0;
  }

  .visual-card {
    width: min(100%, 456px);
    margin-top: 2.2rem;
    margin-right: 0;
  }

  .lead-form-hero,
  .section-visual-card {
    width: min(100%, 396px);
    margin-left: 0;
  }

  .lead-form-hero {
    margin-top: 1rem;
  }

  .cta-visual {
    justify-content: flex-start;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }

  .footer-shell img {
    justify-self: center;
  }

  .footer-center {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-link::before {
    content: "";
  }
}

@media (max-width: 720px) {
  .topbar-shell {
    padding: 0.95rem 0 0;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  .topbar,
  .hero,
  .proof-band,
  .section,
  .entry-band,
  .footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero-copy,
  .hero-visual,
  .section-copy,
  .proof-band-shell,
  .summary-shell,
  .entry-shell,
  .entry-panel,
  .entry-details,
  .cta-grid,
  .proof-logos,
  .summary-grid,
  .faq-list,
  .lead-form,
  .lead-form-hero {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .wrap {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .eyebrow,
  .section-kicker,
  .proof-kicker {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.34;
    letter-spacing: 0.08em;
  }

  .topbar-shell {
    min-height: 0;
    padding: 0.85rem 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.62rem;
  }

  .brand img {
    width: 168px;
  }

  .topbar-link {
    min-height: 34px;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.76rem;
    line-height: 1;
    white-space: nowrap;
  }

  .topbar-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem;
    margin-left: 0;
  }

  .topbar-link-desktop {
    display: none;
  }

  .topbar-link-mobile {
    display: inline;
  }

  .hero {
    min-height: 0;
    padding: 8.55rem 0 2.8rem;
  }

  .hero-bg {
    width: 100%;
    transform: none;
    background:
      linear-gradient(180deg, rgba(9, 14, 22, 0.78) 0%, rgba(9, 14, 22, 0.54) 40%, rgba(9, 14, 22, 0.84) 100%),
      radial-gradient(circle at 76% 18%, rgba(207, 141, 64, 0.16), transparent 24%),
      url("assets/mulher_uza3-hero.jpg") 64% 20% / cover no-repeat;
  }

  h1 {
    font-size: clamp(1.68rem, 8vw, 2.35rem);
    line-height: 1;
    max-width: 12ch;
  }

  h2 {
    font-size: clamp(1.46rem, 6.8vw, 2rem);
    line-height: 1.02;
  }

  .hero-layout,
  .cta-grid {
    gap: 1.35rem;
  }

  .hero-lead {
    max-width: 21rem;
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .hero-support {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-facts {
    margin-top: 1.05rem;
    gap: 0.8rem;
  }

  .hero-fact {
    padding-top: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.82rem;
    margin-top: 1.35rem;
    max-width: 100%;
  }

  .btn,
  .btn-block {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 54px;
    text-align: center;
    white-space: normal;
  }

  .hero-cta-note {
    margin-top: 1.15rem;
    max-width: 22rem;
    font-size: 0.84rem;
    line-height: 1.42;
    color: rgba(247, 243, 235, 0.66);
    text-align: left;
  }

  .hero-visual {
    margin-top: 0.2rem;
  }

  .lead-form-hero {
    width: 100%;
    margin-left: 0;
    margin-top: 2.25rem;
  }

  .visual-card {
    width: 100%;
    margin-top: 0;
    transform: translate3d(0, calc(18px + var(--hero-card-shift, 0px)), 0);
    padding: 0.82rem;
    border-radius: 24px;
  }

  .visual-card img {
    border-radius: 16px;
  }

  .section-visual-card {
    transform: none;
  }

  .visual-points {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .visual-points span {
    min-height: 38px;
    font-size: 0.8rem;
  }

  .proof-band {
    padding: 0.9rem 0 1.05rem;
  }

  .proof-band-shell p {
    max-width: 21rem;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .proof-kicker {
    margin-bottom: 0.58rem;
    font-size: 0.68rem;
  }

  .proof-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    max-width: 100%;
  }

  .proof-logos div {
    min-height: 72px;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .proof-logos img {
    max-height: 34px;
  }

  .proof-logos .proof-logo-wide {
    width: 100%;
    max-height: 30px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 0.68rem;
    max-width: 100%;
  }

  .summary-copy p {
    max-width: 21rem;
  }

  .entry-band {
    padding: 1.95rem 0;
  }

  .summary-card strong,
  .process-steps strong,
  .entry-price-card strong,
  .entry-detail strong {
    font-size: 0.98rem;
    line-height: 1.16;
  }

  .entry-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.85rem;
    overflow: hidden;
  }

  .entry-price-card strong {
    white-space: normal;
    line-height: 0.98;
    max-width: 12ch;
  }

  .section {
    padding: 3.05rem 0;
  }

  .process-steps article {
    min-height: auto;
    padding: 1.05rem 1rem;
    border-radius: 20px;
  }

  .entry-price-card,
  .entry-detail,
  .summary-card,
  .faq-item,
  .visual-card,
  .section-visual-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .entry-price-card,
  .entry-detail,
  .summary-card {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .summary-card span {
    margin-bottom: 0.56rem;
    font-size: 0.68rem;
  }

  .summary-card p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .summary-card,
  .process-steps article {
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.9), rgba(247, 240, 231, 0.82));
    border: 1px solid rgba(16, 24, 38, 0.08);
    box-shadow:
      0 12px 22px rgba(16, 24, 38, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .cta-copy h2 {
    max-width: 20ch;
  }

  .cta-direct .btn {
    width: 100%;
    min-width: 0;
  }

  .faq-item summary {
    padding: 1rem 3rem 1rem 1rem;
    font-size: 0.98rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
  }

  .faq-item {
    border-radius: 20px;
  }

  .cta-mini-note {
    margin-top: 0.82rem;
    font-size: 0.88rem;
  }

  .cta-assurance {
    gap: 0.5rem;
    margin-top: 0.88rem;
  }

  .cta-assurance span {
    min-height: 32px;
    padding: 0.46rem 0.72rem;
    font-size: 0.78rem;
  }

  .cta-points {
    margin-top: 0.78rem;
    font-size: 0.92rem;
    padding-left: 1rem;
  }

  .section-visual-card .visual-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .section-visual-card .visual-points span {
    min-height: 36px;
    padding: 0.58rem 0.68rem;
    font-size: 0.76rem;
  }

  .lead-form {
    padding: 1rem;
    border-radius: 24px;
  }

  .form-badge {
    min-height: 32px;
    padding: 0.4rem 0.68rem;
    font-size: 0.68rem;
  }

  .form-intro {
    max-width: 20.5rem;
    margin-top: 0.78rem;
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .lead-form-title {
    margin-top: 0.6rem;
    font-size: clamp(1.68rem, 7vw, 2.35rem);
  }

  .field {
    margin-bottom: 0.78rem;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 0.9rem 0.92rem;
    border-radius: 16px;
  }


  .footer {
    padding: 1.45rem 0 5.6rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }

  .footer-shell img {
    justify-self: center;
  }

  .footer-center {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    white-space: normal;
  }

  .footer-link::before {
    content: "";
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    min-height: 52px;
    padding: 0.82rem 0.95rem;
    font-size: 0.84rem;
  }

  .topbar-link,
  .whatsapp-float {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

}

@media (max-width: 480px) {
  .hero {
    padding: 8rem 0 2.55rem;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(9, 14, 22, 0.8) 0%, rgba(9, 14, 22, 0.56) 38%, rgba(9, 14, 22, 0.9) 100%),
      radial-gradient(circle at 76% 16%, rgba(207, 141, 64, 0.14), transparent 22%),
      url("assets/mulher_uza3-hero.jpg") 62% 12% / cover no-repeat;
  }

  .brand img {
    width: 154px;
  }

  .topbar-link {
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(1.54rem, 8vw, 1.98rem);
  }

  h2 {
    font-size: clamp(1.3rem, 6.4vw, 1.76rem);
  }

  .hero-lead,
  .section-copy p,
  .cta-copy p {
    line-height: 1.52;
  }

  .hero-cta-note,
  .faq-copy p,
  .process-copy p,
  .entry-copy p {
    line-height: 1.46;
  }

  .proof-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .proof-logo-wide-card {
    grid-column: auto;
  }

  .proof-logos div {
    min-height: 68px;
    padding: 0.72rem;
  }

  .proof-logos img {
    max-height: 30px;
  }

  .proof-logos .proof-logo-wide {
    width: 100%;
    max-height: 24px;
  }

  .cta-section {
    padding-bottom: 5.6rem;
  }

  .footer {
    padding-bottom: calc(6.2rem + env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    right: 0.75rem;
    left: auto;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    min-height: 48px;
    max-width: calc(100% - 1.5rem);
    padding: 0.76rem 0.9rem;
    justify-content: center;
    border-radius: 999px;
  }

  .whatsapp-float span {
    gap: 0.38rem;
  }

  .whatsapp-float span::before {
    width: 8px;
    height: 8px;
  }
}
