@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #080807;
  --panel: #14110d;
  --panel-soft: #1d1812;
  --text: #fff8e8;
  --muted: #c8baa0;
  --gold: #f0bf5a;
  --gold-strong: #ffd978;
  --line: rgba(255, 232, 178, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --hero-glow: rgba(240, 191, 90, 0.08);
  font-family: "Plus Jakarta Sans", Inter, Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at top, #111 0%, #060606 40%, #080807 100%);
  min-height: 100vh;
  overflow-x: clip;
}

::selection {
  background: rgba(240, 191, 90, 0.24);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(8, 8, 7, 0.54);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 7, 0.88);
  border-bottom-color: var(--line);
}

.brand img {
  width: 144px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: #16110a;
  background: var(--gold);
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 156px clamp(24px, 6vw, 92px) 92px;
  background:
    radial-gradient(circle at 76% 18%, rgba(240, 191, 90, 0.18), transparent 27%),
    radial-gradient(circle at top, rgba(240, 191, 90, 0.04), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0) 0%, rgba(8, 8, 7, 0.88) 58%, rgba(8, 8, 7, 0.98) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0, 0);
  background:
    radial-gradient(circle at 76% 30%, rgba(240, 191, 90, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0.78) 42%, rgba(8, 8, 7, 0.22) 100%),
    url("./assets/fundo.png") center / cover no-repeat;
  background-attachment: fixed;
  will-change: transform;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(640px, 100%);
  max-width: 700px;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy,
.section p,
.steps span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.36);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.hero-person {
  position: absolute;
  z-index: 2;
  right: clamp(-140px, 2vw, 60px);
  bottom: 0;
  width: min(56vw, 720px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 34px rgba(240, 191, 90, 0.24));
  transition: transform 310ms ease-out;
  will-change: transform;
}

.lock-hero {
  right: clamp(14px, 7vw, 150px);
  bottom: clamp(70px, 8vw, 120px);
  width: min(35vw, 430px);
  opacity: 0.94;
}

.hero-showcase {
  position: absolute;
  z-index: 2;
  right: clamp(180px, 24vw, 520px);
  bottom: clamp(180px, 20vw, 300px);
  width: min(310px, 24vw);
}

.hero-benefit-card {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  color: rgba(255, 248, 232, 0.92);
  border: 1px solid rgba(255, 215, 118, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(240, 191, 90, 0.18), transparent 42%),
    rgba(20, 15, 9, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), 0 0 34px rgba(240, 191, 90, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-actions {
  margin-top: 32px;
  gap: 16px;
}

.reveal,
.service-card,
.plan-card,
.footer div,
.hero-person,
.hero-actions,
.trust-row {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease-out, transform 0.72s ease-out;
  will-change: opacity, transform;
}

.reveal.is-visible,
.service-card.is-visible,
.plan-card.is-visible,
.footer div.is-visible,
.hero-person.is-visible,
.hero-actions.is-visible,
.trust-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .hero-actions,
.hero .trust-row {
  position: relative;
  z-index: 4;
  opacity: 1;
  transform: none;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.button.primary {
  color: #16110a;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent 28%, rgba(255, 255, 255, 0.18) 64%, transparent),
    linear-gradient(135deg, var(--gold), var(--gold-strong));
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(240, 191, 90, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.button.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 58px rgba(240, 191, 90, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
}

.hero-actions .button {
  position: relative;
  min-height: 58px;
  padding-inline: 24px;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}

.hero-actions .button span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.86rem;
  line-height: 1;
}

.hero-actions .button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 58%);
  transform: translateX(-125%);
  transition: transform 680ms ease;
}

.hero-actions .button:hover::after {
  transform: translateX(125%);
}

.hero-main-cta {
  min-width: min(100%, 250px);
  box-shadow:
    0 18px 52px rgba(240, 191, 90, 0.42),
    0 0 34px rgba(255, 217, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}

.hero-main-cta span {
  color: #17110a;
  background: rgba(255, 255, 255, 0.38) !important;
}

.hero-service-cta {
  border-color: rgba(255, 215, 118, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(12, 10, 8, 0.48) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-about-cta {
  color: var(--gold-strong) !important;
  border-color: rgba(240, 191, 90, 0.58) !important;
  background:
    radial-gradient(circle at top right, rgba(255, 217, 120, 0.16), transparent 42%),
    rgba(240, 191, 90, 0.095) !important;
  box-shadow: 0 14px 38px rgba(240, 191, 90, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-about-cta span {
  background: rgba(240, 191, 90, 0.18) !important;
  box-shadow: 0 0 16px rgba(240, 191, 90, 0.24);
}

.hero-actions .button.secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 118, 0.5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 26px rgba(240, 191, 90, 0.12);
}

.about-trigger {
  background: rgba(240, 191, 90, 0.1);
  border-color: rgba(240, 191, 90, 0.34);
}

.trust-row {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span {
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

/* Add bottom padding so page content is not obscured by the footer */
main { padding-bottom: 0; }

.footer {
  position: relative;
}

.footer .footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(240, 191, 90, 0.15);
  border: 1px solid rgba(240, 191, 90, 0.35);
  color: var(--gold-strong);
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.footer .footer-whatsapp:hover {
  background: rgba(240, 191, 90, 0.28);
  transform: translateY(-1px);
}

.footer .footer-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-person {
  position: absolute;
  z-index: 1;
  right: clamp(-140px, 2vw, 60px);
  bottom: 0;
  width: min(56vw, 720px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.5));
}

.lock-hero {
  z-index: 2;
  right: clamp(18px, 6vw, 140px);
  bottom: clamp(30px, 5vw, 74px);
  width: min(58vw, 760px);
  opacity: 0.94;
}

.section {
  position: relative;
  padding: 88px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.92), rgba(12, 10, 8, 0.94));
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.78), rgba(8, 8, 7, 0.9) 14%, rgba(8, 8, 7, 0.94) 30%),
    radial-gradient(circle at top right, rgba(240, 191, 90, 0.06), transparent 26%);
  z-index: 1;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0), rgba(8, 8, 7, 0.92));
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 224, 156, 0.08), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.06), transparent 22%);
  pointer-events: none;
  z-index: 1;
}

.section > * {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 900;
}

.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.plans {
  position: relative;
  overflow: visible;
  padding-top: 104px;
  padding-bottom: 128px;
  background:
    radial-gradient(circle at var(--plans-glow-x, 50%) 21%, rgba(255, 210, 96, 0.22), transparent 19%),
    radial-gradient(circle at 50% 42%, rgba(240, 191, 90, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.99), rgba(9, 8, 6, 0.98));
}

.plans::before,
.plans::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.55;
  transform: translate3d(0, var(--plans-parallax, 0px), 0);
  transition: transform 120ms linear;
}

.plans::before {
  top: 86px;
  left: 38%;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(255, 214, 99, 0.18), transparent 66%);
}

.plans::after {
  right: 12%;
  bottom: 86px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 214, 99, 0.1), transparent 70%);
}

.plans .section-heading {
  margin-bottom: 58px;
}

.plans .section-heading h2 {
  position: relative;
  margin-bottom: 12px;
  text-shadow: 0 0 28px rgba(255, 215, 118, 0.2);
}

.plans .section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.18em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 22px rgba(255, 217, 120, 0.96), 0 0 54px rgba(240, 191, 90, 0.6);
  transform: translateX(6.4rem);
}

.plan-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 18px;
  padding-bottom: 28px;
  perspective: 1200px;
}

.plan-card {
  overflow: visible;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 30px;
  align-content: space-between;
  min-height: 520px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(255, 224, 146, 0.19);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 50% 105%, rgba(255, 210, 96, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(21, 20, 18, 0.92), rgba(9, 9, 8, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 58px rgba(0, 0, 0, 0.42);
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform, box-shadow;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(240, 191, 90, 0.05));
  opacity: 0.8;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card:hover,
.plan-card.selected {
  transform: translateY(-7px);
  border-color: rgba(255, 215, 118, 0.58);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(240, 191, 90, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 50% 105%, rgba(255, 210, 96, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(24, 22, 19, 0.94), rgba(9, 9, 8, 0.94));
}

.plan-card.featured {
  min-height: 560px;
  padding: 104px 34px 34px;
  text-align: center;
  border-width: 2px;
  border-color: rgba(255, 221, 85, 1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 2%, rgba(255, 235, 138, 0.36), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(255, 204, 54, 0.3), transparent 48%),
    linear-gradient(90deg, rgba(255, 196, 36, 0.08), transparent 24%, transparent 76%, rgba(255, 196, 36, 0.08)),
    linear-gradient(180deg, rgba(19, 18, 15, 0.99), rgba(8, 8, 7, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 232, 118, 0.52),
    0 0 26px rgba(255, 221, 76, 0.78),
    0 0 82px rgba(240, 191, 90, 0.42),
    0 0 118px rgba(255, 198, 44, 0.18),
    0 34px 96px rgba(0, 0, 0, 0.58);
  transform: translateY(-16px);
}

.plan-card.featured::before {
  inset: 3px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.32), transparent 9%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 32%, rgba(255, 196, 36, 0.14));
}

.plan-card.featured::after {
  opacity: 1;
  background:
    radial-gradient(circle at calc(100% - 4px) 3px, rgba(255, 255, 255, 0.95) 0 2px, rgba(255, 231, 143, 0.88) 3px 7px, transparent 10px),
    radial-gradient(circle at calc(100% - 4px) 3px, rgba(255, 222, 70, 0.9), transparent 54px),
    linear-gradient(180deg, rgba(255, 220, 83, 0.08), transparent 30%);
  transform: none;
}

.plan-card.featured:hover,
.plan-card.featured.selected {
  transform: translateY(-20px);
  box-shadow:
    0 0 0 1px rgba(255, 238, 155, 0.62),
    0 0 56px rgba(255, 219, 72, 0.82),
    0 0 124px rgba(240, 191, 90, 0.38),
    0 40px 110px rgba(0, 0, 0, 0.58);
}

.plan-card.featured .plan-kicker {
  color: #fff;
}

.plan-card.featured h3 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.plan-kicker {
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 900;
}

.plan-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 12px;
}

.plan-price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.plan-price {
  font-size: 2.55rem;
  letter-spacing: 0;
}

.plan-price-month {
  font-size: 0.85rem;
  color: var(--muted);
}

.plan-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 56px;
}

.plan-bonus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0.72rem 1.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 221, 125, 0.22), rgba(129, 86, 19, 0.28));
  border: 1px solid rgba(255, 216, 107, 0.62);
  color: var(--gold-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 24px rgba(240, 191, 90, 0.22);
}

.featured-ribbon {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: 50%;
  display: grid;
  gap: 6px;
  width: min(86%, 350px);
  padding: 15px 24px 13px;
  color: #17110a;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, #eaa82f, #ffe08c 48%, #f4bd3c);
  border: 1px solid rgba(255, 237, 174, 0.9);
  border-radius: 5px;
  box-shadow: 0 18px 48px rgba(240, 191, 90, 0.46), 0 0 46px rgba(255, 210, 96, 0.62);
  transform: translateX(-50%);
}

.featured-ribbon::before {
  left: -26px;
}

.featured-ribbon::after {
  right: -26px;
  transform: scaleX(-1);
}

.featured-ribbon span::before {
  content: "\2606";
  margin-right: 10px;
  font-size: 1.25rem;
  vertical-align: -0.05em;
}

.featured-ribbon::before,
.featured-ribbon::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 42px;
  height: 34px;
  background: linear-gradient(135deg, #b87817, #f1b940 70%, #ffe28f);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 78%);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28));
}

.featured-ribbon span {
  font-size: 1.08rem;
  font-weight: 950;
}

.featured-ribbon small {
  display: inline-flex;
  justify-content: center;
  justify-self: center;
  padding: 3px 12px;
  color: rgba(255, 248, 232, 0.88);
  border-radius: 999px;
  background: rgba(20, 14, 8, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
}

.plan-features.dark-check-disabled li::before {
  content: "✓";
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0.35em;
}

.plan-features.light-check-disabled li::before {
  content: "✔";
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0.35em;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.plan-card.featured li {
  padding-left: 28px;
  text-align: left;
}

.plan-card.featured .plan-features {
  justify-self: center;
  width: min(100%, 330px);
  margin-top: 2px;
}

.plan-card.featured li::before {
  top: 0.28em;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-strong);
  background: transparent;
  box-shadow: 0 0 10px rgba(240, 191, 90, 0.18);
}

.plan-card.featured li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.54em;
  width: 6px;
  height: 3px;
  border-left: 1px solid var(--gold-strong);
  border-bottom: 1px solid var(--gold-strong);
  transform: rotate(-45deg);
}

.plan-card .button {
  position: relative;
  min-height: 58px;
  width: 100%;
  overflow: hidden;
  color: #0f0b06;
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 30%, rgba(255, 255, 255, 0.18) 64%, transparent),
    linear-gradient(135deg, #f0b63c, #ffe28f 52%, #f6c857);
  box-shadow: 0 18px 42px rgba(240, 191, 90, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  font-weight: 950;
}

.plan-card.featured .button {
  min-height: 68px;
  gap: 12px;
  border-radius: 999px;
  font-size: 1.08rem;
  box-shadow: 0 24px 58px rgba(240, 191, 90, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.premium-cta span {
  font-size: 1.35rem;
  line-height: 1;
}

.plan-card .button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.48) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.plan-card .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(240, 191, 90, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.plan-card .button:hover::after {
  transform: translateX(120%);
}

.plan-card .button:active {
  transform: translateY(-1px) scale(0.99);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea,
.mp-card-field {
  width: 100%;
  min-height: 50px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}

.mp-card-field {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 50px;
}

.mp-card-field iframe {
  width: 100%;
  height: 50px !important;
  border: 0;
}

.mp-hidden-field {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

textarea {
  min-height: 96px;
  padding: 14px;
  resize: none;
}

select option {
  color: #17120d;
}

.modal-open {
  overflow: hidden;
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 78;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 38px);
}

.about-modal[hidden] {
  display: none;
}

.about-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, 0.78);
  backdrop-filter: blur(12px);
}

.about-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 28px));
  height: min(820px, calc(100dvh - 28px));
  overflow: hidden;
  border: 1px solid rgba(240, 191, 90, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 8%, rgba(240, 191, 90, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 8, 0.98), rgba(7, 7, 6, 0.98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62), 0 0 50px rgba(240, 191, 90, 0.12);
  animation: checkout-flip-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-scroll {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: clamp(28px, 4vw, 58px);
}

.about-scroll::-webkit-scrollbar {
  width: 8px;
}

.about-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.about-scroll::-webkit-scrollbar-thumb {
  background: rgba(240, 191, 90, 0.48);
  border-radius: 999px;
}

.about-hero,
.about-story,
.about-values {
  position: relative;
  display: grid;
  gap: clamp(22px, 4vw, 54px);
  margin-bottom: clamp(34px, 6vw, 74px);
}

.about-hero {
  min-height: 440px;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.55fr);
  align-items: center;
}

.about-hero h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.7rem);
  line-height: 0.98;
}

.about-hero p,
.about-text p,
.about-values p {
  color: var(--muted);
  line-height: 1.7;
}

.about-hero img {
  justify-self: center;
  width: min(260px, 70%);
  filter: drop-shadow(0 0 34px rgba(240, 191, 90, 0.28));
}

.about-story {
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1fr);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(240, 191, 90, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.about-story.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.78fr);
}

.about-text span,
.about-values span {
  color: var(--gold-strong);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.about-text h3 {
  margin: 12px 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

.about-image {
  min-height: 340px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border: 1px solid rgba(240, 191, 90, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 40%, rgba(240, 191, 90, 0.14), transparent 40%),
    url("./assets/fundo.png") center / cover no-repeat;
  background-blend-mode: screen;
}

.about-image img {
  width: min(420px, 86%);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.44));
}

.about-image.lock-card {
  place-items: center;
}

.about-image.lock-card img {
  width: min(340px, 72%);
}

.about-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-values article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(240, 191, 90, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(240, 191, 90, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.about-values strong {
  display: block;
  margin: 12px 0 10px;
  color: var(--text);
  font-size: 1.25rem;
}

.about-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
}

.checkout-modal.is-opening .checkout-dialog {
  animation: checkout-flip-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes checkout-flip-in {
  0% {
    opacity: 0;
    filter: blur(1px);
    transform: translate3d(0, 16px, 0) scale(0.965);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-form[hidden],
.payment-result[hidden] {
  display: none !important;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, 0.74);
  backdrop-filter: blur(10px);
}

.checkout-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: start;
  width: min(1050px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(240, 191, 90, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.96), rgba(8, 8, 7, 0.95)),
    url("./assets/fundo.png") center / cover no-repeat;
  background-blend-mode: multiply;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.checkout-dialog::-webkit-scrollbar {
  width: 0;
}

.checkout-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-copy {
  max-width: 680px;
}

.checkout-copy h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.checkout-copy p {
  max-width: 36rem;
  margin-bottom: 0;
}

.secure-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.google-badge {
  color: #101010;
  background: linear-gradient(90deg, #ffffff 0%, #f7f7f7 100%);
  border-color: rgba(255, 255, 255, 0.72);
}

.google-badge img {
  display: block;
  width: 118px;
  height: auto;
}

.checkout-form,
.payment-result {
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-form {
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.95fr);
  align-items: start;
}

.checkout-column {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(240, 191, 90, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(35, 29, 20, 0.78), rgba(18, 15, 11, 0.72));
}

.customer-column {
  border-color: rgba(240, 191, 90, 0.38);
}

.card-column {
  background: linear-gradient(180deg, rgba(30, 25, 18, 0.8), rgba(17, 14, 11, 0.76));
}

.checkout-form.is-processing {
  opacity: 0.7;
  pointer-events: none;
}

.payment-result {
  align-self: stretch;
  justify-items: center;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.payment-result .checkout-summary-card {
  width: 100%;
}

.attendance-button {
  width: min(100%, 360px);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.single-method .payment-method {
  cursor: default;
}

.payment-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method span {
  font-weight: 900;
}

.payment-method.is-selected {
  color: #17120d;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 10px;
}

.checkout-summary-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(240, 191, 90, 0.38);
  border-radius: 8px;
  background: rgba(240, 191, 90, 0.1);
}

.checkout-summary-card span {
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-summary-card strong {
  color: var(--text);
  font-size: 1.3rem;
}

.checkout-summary-card p,
.form-status {
  margin: 0;
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  color: var(--gold-strong);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 1fr));
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer strong {
  color: var(--text);
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 8, 7, 0.96);
  }

  .nav.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 0;
  }

  .hero-content {
    padding-bottom: 360px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 220px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.78) 55%, rgba(8, 8, 7, 0.36) 100%),
      url("./assets/fundo.png") center / cover;
  }

  .hero-person {
    right: clamp(-72px, -12vw, -36px);
    width: min(620px, 92vw);
  }

  .lock-hero {
    right: -46px;
    bottom: 24px;
    width: min(560px, 94vw);
    max-width: 94vw;
  }

  .hero-showcase {
    right: auto;
    left: 18px;
    bottom: 250px;
    width: min(280px, calc(100vw - 36px));
  }

  .hero-benefit-card {
    padding: 16px;
    font-size: 0.82rem;
  }

  .service-grid,
  .plan-grid,
  .checkout-form,
  .about-hero,
  .about-story,
  .about-story.reverse,
  .about-values,
  .footer {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card.featured,
  .plan-card.featured:hover,
  .plan-card.featured.selected {
    transform: none;
  }

  .featured-ribbon {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .plan-card.featured {
    padding-top: 28px;
  }

  .about-dialog {
    width: calc(100vw - 18px);
    height: calc(100dvh - 18px);
  }

  .about-scroll {
    padding: 58px 18px 22px;
  }

  .about-hero {
    min-height: auto;
  }

  .about-image {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 118px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-content {
    padding-bottom: 390px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .checkout-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100dvh - 18px);
    padding: 58px 14px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-card {
    min-height: auto;
  }

  .footer {
    display: grid;
  }

  .about-values article {
    min-height: auto;
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  height: 56px;
  padding: 0 16px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.32);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-card,
  .checkout-modal.is-opening .checkout-dialog,
  .about-dialog,
  .about-reveal,
  .plans::before,
  .plans::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
