:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --accent: #12c48b;
  --accent-dark: #0e8a63;
  --button-green: #12c48b;
  --button-green-dark: #0e8a63;
  --border: #e5e7eb;
  --bg-soft: #f6f7f8;
  --bg-soft-2: #eef1f3;
  --bg-mint: #eef9f5;
  --shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  --shadow-lg: 0 12px 34px rgba(17, 24, 39, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 28px;
  --spacing-xl: 40px;
  --spacing-2xl: 60px;
  --spacing-3xl: 84px;
}

/* Ritmo visual: fundos por bloco (via aria-label) */
section.benefits[aria-label='Benefícios'] {
  background: var(--bg);
}

section.market[aria-label='Incontestável'] {
  background: var(--bg);
}

section.compare[aria-label='Comparação'] {
  background: var(--bg);
}

section.benefits[aria-label='Garantia'] {
  background: var(--bg);
}

section.bio[aria-label='Quem é'] {
  background: var(--bg-soft);
}

section.faq[aria-label='Perguntas frequentes'] {
  background: var(--bg);
}

/* Galeria (categorias + antes/depois) */
.abGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .abGallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.categoryCard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.categoryCard__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.categoryCard__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.categoryCard__grid .gallery__image {
  border-radius: 14px;
  overflow: hidden;
}

/* Garantia premium */
section.benefits[aria-label='Garantia'] .benefits__container {
  max-width: 1120px;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(18, 196, 139, 0.28);
  box-shadow: var(--shadow-lg);
}

section.benefits[aria-label='Garantia'] .benefits__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  section.benefits[aria-label='Garantia'] .benefits__container {
    padding: 24px;
  }

  section.benefits[aria-label='Garantia'] .benefits__grid {
    grid-template-columns: 1fr;
  }
}

section.benefits[aria-label='Garantia'] .benefit {
  padding: 20px;
}

section.benefits[aria-label='Garantia'] strong {
  color: var(--accent);
}

/* Autoridade (não existia no CSS) */
.bio {
  padding: var(--spacing-3xl) 18px 92px;
}

.bio__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.bio__content {
  max-width: 620px;
}

.bio__title {
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  color: #0e1114;
}

.bio__text {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.bio__media {
  width: 100%;
  display: grid;
  place-items: center;
}

.bio__image {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .bio__grid {
    grid-template-columns: 1fr;
  }

  .bio__content {
    max-width: none;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
}

a:focus-visible,
button:focus-visible,
[role='button']:focus-visible {
  outline: 3px solid rgba(18, 196, 139, 0.45);
  outline-offset: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.page {
  min-height: 100%;
}

.siteHeader {
  padding: 0 var(--spacing-md);
  background: linear-gradient(120deg, rgba(8, 160, 142, 1) 0%, rgba(6, 135, 170, 1) 45%, rgba(4, 78, 115, 1) 100%);
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.siteHeader__container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) 0;
}

.siteHeader__kicker {
  margin: 0 0 var(--spacing-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.siteHeader__logoWrap {
  width: min(760px, 100%);
  height: auto;
  overflow: visible;
  display: flex;
  justify-content: center;
}

.siteHeader__logo {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 49px;
  display: block;
  object-fit: contain;
  transform: none;
}

.hero {
  padding: 88px var(--spacing-md) 88px;
  background: var(--bg);
}

.hero__container {
  max-width: 1120px;
  margin: 0 auto;
}

.hero__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.hero__badge {
  margin: 0 auto var(--spacing-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-2xl);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 21px;
  box-shadow: var(--shadow);
}

.hero__premise {
  margin: 0 0 var(--spacing-md);
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.hero__title {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
}

.hero__accent {
  color: var(--accent);
}

.hero__subtitle {
  margin: 16px 0 0;
  font-weight: 600;
  font-size: 19px;
  color: var(--text);
  line-height: 1.4;
}

.hero__grid {
  margin-top: var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.video {
  background: #0b0d10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 16 / 9;
}

.video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.liteYt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  background: #0b0d10;
  background-size: cover;
  background-position: center;
}

.liteYt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.liteYt::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.liteYt:focus-visible {
  outline: 3px solid rgba(18, 196, 139, 0.55);
  outline-offset: 4px;
}

.liteYt__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-42%, -50%);
  border-left: 18px solid #0b0d10;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  z-index: 1;
}

.hero__content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero__video {
  margin-top: var(--spacing-md);
}

@media (min-width: 901px) {
  .hero__grid {
    grid-template-columns: 1fr 0.7fr;
    align-items: start;
  }

  .hero__video {
    margin-top: 0;
    justify-self: end;
    width: 100%;
    max-width: 740px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 72px var(--spacing-md) 72px;
  }

  .hero__title {
    font-size: clamp(30px, 6.6vw, 42px);
  }
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--spacing-md);
}

.bullets__item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
}

.bullets__marker {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(18, 184, 134, 0.12);
}

.bullets__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.cta {
  margin-top: var(--spacing-lg);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--spacing-md) 70px var(--spacing-md) var(--spacing-lg);
  min-width: min(400px, 100%);
  border-radius: 999px;
  background: var(--button-green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(18, 196, 139, 0.18);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.cta:hover {
  background: var(--button-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 196, 139, 0.22);
}

.cta:active {
  transform: translateY(0);
}

.cta__text {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.cta__icon {
  position: absolute;
  right: var(--spacing-sm);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.cta:hover .cta__icon {
  background: rgba(255, 255, 255, 0.3);
}

.benefits {
  padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-2xl);
  background: var(--bg);
}

.benefits__container {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid var(--border);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: var(--spacing-sm);
  padding: 24px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.benefit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.benefit__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.benefit:hover .benefit__icon {
  background: rgba(16, 185, 129, 0.15);
  transform: scale(1.05);
}

.benefit__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.benefit__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.agents {
  padding: var(--spacing-3xl) 18px 88px;
  background: var(--bg-mint);
}

.agents__container {
  max-width: 1120px;
  margin: 0 auto;
}

.agents__title {
  margin: 0 0 26px;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--text);
}

.agents .market__subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.agents__stage {
  display: grid;
  grid-template-columns: 1fr 3.6fr 1fr;
  gap: 18px;
  align-items: center;
}

.agents__visual {
  display: grid;
  place-items: center;
}

.agents__image {
  width: 100%;
  max-width: 1700px;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.agents__callout {
  position: relative;
  padding: 12px 8px;
  max-width: 290px;
}

.agents__calloutTitle {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

.agents__calloutText {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}

@media (max-width: 900px) {
  .agents {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
  }
}

.agents__callout::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 140px;
  border-top: 2px dotted rgba(18, 196, 139, 0.55);
}

.agents__callout::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(18, 184, 134, 0.12);
}

.agents__callout--left {
  justify-self: end;
  text-align: left;
}

.agents__callout--left::before {
  right: -148px;
}

.agents__callout--left::after {
  right: -14px;
}

.agents__callout--right {
  justify-self: start;
  text-align: left;
}

.agents__callout--right::before {
  left: -148px;
}

.agents__callout--right::after {
  left: -14px;
}

@media (max-width: 900px) {
  .siteHeader {
    padding: var(--spacing-lg) var(--spacing-md) 0;
  }

  .siteHeader__logoWrap {
    width: min(640px, 100%);
  }

  .siteHeader__logo {
    max-height: 42px;
  }

  .hero {
    padding: 72px var(--spacing-md) 72px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero__content {
    padding: var(--spacing-md);
    order: 2;
  }

  .hero__video {
    order: 1;
  }

  .cta {
    width: 100%;
    min-width: auto;
    padding: var(--spacing-md) 60px var(--spacing-md) var(--spacing-lg);
    order: 3;
  }

  .benefits {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
  }

  .benefits__container {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .benefit__title {
    font-size: 16px;
  }

  .benefit__text {
    font-size: 15px;
  }

  .benefit__icon {
    width: 50px;
    height: 50px;
  }

  .agents {
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
  }

  .agents__stage {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .agents__title {
    font-size: clamp(24px, 4vw, 32px);
  }

  .agents__callout {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .agents__callout::before,
  .agents__callout::after {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fit {
  padding: 0 var(--spacing-md) var(--spacing-lg);
}

.fit__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-md) 0 var(--spacing-lg);
}

.fit__title {
  margin: 0 0 var(--spacing-md);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--text);
}

.fit__accent {
  color: var(--accent);
}

.fit__text {
  margin: 0 0 var(--spacing-lg);
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pillCta {
  margin: 0 auto var(--spacing-xl);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--spacing-md) 60px var(--spacing-md) var(--spacing-lg);
  min-width: min(400px, 100%);
  border-radius: 999px;
  background: var(--button-green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(18, 196, 139, 0.18);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.pillCta:hover {
  background: var(--button-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 196, 139, 0.22);
}

.pillCta--compact {
  padding: var(--spacing-sm) 50px var(--spacing-sm) var(--spacing-md);
  min-width: min(300px, 100%);
  font-size: 15px;
}

.pillCta__text {
  width: 100%;
  text-align: center;
  font-weight: 700;
}

.pillCta__icon {
  position: absolute;
  right: var(--spacing-sm);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.pillCta:hover .pillCta__icon {
  background: rgba(255, 255, 255, 0.3);
}

.plan {
  padding: var(--spacing-3xl) 18px 100px;
  background: var(--bg-soft);
}

.plan__container {
  max-width: 1120px;
  margin: 0 auto;
}

.plan__header {
  text-align: center;
  padding: 16px 0 32px;
}

.plan__title {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  color: #0e1114;
}

.plan__accent {
  color: var(--accent);
}

.plan__text {
  margin: 18px auto 0;
  max-width: 880px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.plan__card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--border);
}

.plan__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.phases {
  padding: 18px 0 0;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.phases__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.phase {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid var(--border);
}

.phase__head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.phase__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #111;
  background: rgba(17, 24, 28, 0.08);
}

.phase__badge--gray {
  background: rgba(17, 24, 28, 0.1);
}

.phase__badge--pink {
  background: rgba(255, 71, 164, 0.16);
  color: #a8125b;
}

.phase__badge--dark {
  background: rgba(17, 24, 28, 0.12);
  color: #1b2228;
}

.phase__badge--purple {
  background: rgba(138, 43, 226, 0.14);
  color: #5a1aa8;
}

.phase__badge--green {
  background: rgba(18, 184, 134, 0.14);
  color: #0a7b59;
}

.phase__badge--lime {
  background: rgba(34, 197, 94, 0.16);
  color: #0f7a38;
}

.phase__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 800;
  color: #12181d;
}

.phase__meta {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--accent);
}

.phase__description {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.phase__list {
  margin: 10px 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.phase__list li {
  margin: 5px 0;
}

.phase__result {
  margin: 15px 0 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text);
}

.compare {
  padding: var(--spacing-3xl) 18px 92px;
  background: var(--bg);
}

.compare__container {
  max-width: 1120px;
  margin: 0 auto;
}

section.compare[aria-label='Transição'] {
  background: var(--bg-soft);
}

section.compare[aria-label='Transição'] .compare__container {
  max-width: 920px;
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  section.compare[aria-label='Transição'] .compare__container {
    padding: 28px;
  }
}

.compare__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0e1114;
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compareCard {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid var(--border);
}

.compareCard--bad {
  background: var(--bg-soft);
}

.compareCard__head {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.compareCard__icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(18, 184, 134, 0.18);
}

.compareCard__icon--bad {
  background: rgba(239, 68, 68, 0.18);
}

.compareCard__title {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  color: #12181d;
}

.compareCard__accent {
  color: var(--accent);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.checklist__item {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}

.checklist__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(17, 24, 28, 0.08);
}

.checklist__item::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

.checklist__item--ok::before {
  background: rgba(18, 184, 134, 0.18);
}

.checklist__item--ok::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2312B886' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.checklist__item--no::before {
  background: rgba(239, 68, 68, 0.18);
}

.checklist__item--no::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='%23EF4444' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: none;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery__image:hover {
  transform: scale(1.02);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal__content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.modal__video {
  width: min(980px, 92vw);
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #0b0d10;
}

.modal__videoInner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.modal__videoIframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.market {
  padding: var(--spacing-3xl) 18px 92px;
  background: var(--bg);
}

.market__container {
  max-width: 1120px;
  margin: 0 auto;
}

section.market[aria-label='Mercado de infoprodutos'] {
  background: var(--bg-soft);
}

.market__header {
  text-align: center;
  padding: 14px 0 28px;
}

.market__title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0e1114;
}

.market__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 19.2px;
}

.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.newsCard {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(28, 35, 39, 0.1);
  padding: 14px;
}

.newsCard__brand {
  font-size: 12px;
  font-weight: 900;
  color: #111;
  opacity: 0.8;
}

.newsCard__title {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  color: #12181d;
}

.newsCard__text {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.learn {
  padding: var(--spacing-3xl) 18px 92px;
  background: var(--bg);
}

.learn__container {
  max-width: 1120px;
  margin: 0 auto;
}

.learn__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 22px;
  align-items: start;
}

.faq {
  padding: var(--spacing-3xl) 18px 92px;
  background: var(--bg);
}

.faq__container {
  max-width: 1120px;
  margin: 0 auto;
}

.faq__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0e1114;
}

.faq__items {
  display: grid;
  gap: 12px;
}

.faqItem {
  background: var(--card);
  border-radius: 14px;
  box-shadow: none;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faqItem:hover {
  background: #f9fafb;
}

.faqItem__summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.25;
  color: #12181d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faqItem__summary::-webkit-details-marker {
  display: none;
}

.faqItem__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(18, 196, 139, 0.14);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

section.compare[aria-label='Chamada final'] {
  background: var(--bg-mint);
}

.faqItem[open] .faqItem__icon {
  transform: rotate(45deg);
}

.faqItem__content {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.faqItem__content p {
  margin: 10px 0 0;
}

.faqItem__content p:first-child {
  margin-top: 0;
}

.learn__title {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0e1114;
}

.learn__text {
  margin: 14px 0 18px;
  max-width: 420px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.topics {
  background: var(--card);
  border-radius: 16px;
  box-shadow: none;
  border: 1px solid #dde3e8;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dde3e8;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.bundle {
  padding: var(--spacing-3xl) 18px 130px;
  background: var(--bg-mint);
}

.bundle__container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.bundle__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #0e1114;
}

.bundle__card {
  margin: 24px auto 28px;
  width: 100%;
  max-width: 920px;
  background: linear-gradient(135deg, rgba(18, 196, 139, 0.16) 0%, rgba(18, 196, 139, 0.08) 100%);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 196, 139, 0.28);
  overflow: hidden;
  padding: 24px;
}

.bundle__image {
  width: 100%;
  height: auto;
  display: block;
}

.bundle__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.whats {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 64px 16px 24px;
  min-width: min(300px, 100%);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 900;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whats:hover {
  background: var(--bg-mint);
  transform: translateY(-1px);
}

.whats__text {
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.whats__icon {
  position: absolute;
  right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(18, 196, 139, 0.14);
  display: grid;
  place-items: center;
}

.siteFooter {
  padding: 0;
  background: linear-gradient(120deg, rgba(8, 160, 142, 1) 0%, rgba(6, 135, 170, 1) 45%, rgba(4, 78, 115, 1) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.siteFooter__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 18px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 18px;
}

.siteFooter__brand {
  display: flex;
  align-items: flex-start;
}

.siteFooter__logo {
  height: 48px;
  width: auto;
  display: block;
  filter: none;
}

.siteFooter__nav {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.siteFooter__navTitle {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.siteFooter__link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.siteFooter__link:hover {
  text-decoration: underline;
}

.siteFooter__top {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  justify-self: end;
}

.siteFooter__top:hover {
  background: rgba(0, 0, 0, 0.36);
}

.siteFooter__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 22px;
}

.siteFooter__copy {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.legalPage {
  padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-3xl);
  color: #0b0d10;
}

.legalPage__container {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow);
}

.legalPage__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b0d10;
  text-decoration: none;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
}

.legalPage__back:hover {
  text-decoration: underline;
}

.legalPage__title {
  margin: 0 0 var(--spacing-md);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
}

.legalPage__lead {
  margin: 0 0 var(--spacing-xl);
  color: rgba(11, 13, 16, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.legalSection {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legalSection + .legalSection {
  margin-top: var(--spacing-lg);
}

.legalSection__title {
  margin: 0 0 var(--spacing-sm);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.legalSection__text {
  margin: 0 0 var(--spacing-md);
  color: rgba(11, 13, 16, 0.9);
}

.legalList {
  margin: 0 0 var(--spacing-md);
  padding-left: 18px;
  color: rgba(11, 13, 16, 0.9);
}

.legalList__item + .legalList__item {
  margin-top: 8px;
}

.legalLink {
  color: #0b0d10;
  font-weight: 800;
}

.legalPage__updated {
  margin: var(--spacing-xl) 0 0;
  font-size: 13px;
  color: rgba(11, 13, 16, 0.7);
}

@media (max-width: 720px) {
  .legalPage__container {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 720px) {
  .siteFooter__container {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .siteFooter__top {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .phases__grid {
    grid-template-columns: 1fr;
  }

  .compare__grid {
    grid-template-columns: 1fr;
  }

  .news {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .learn__grid {
    grid-template-columns: 1fr;
  }

  .topic {
    white-space: normal;
  }

  .bundle {
    padding: var(--spacing-2xl) 16px 96px;
  }
}
