:root {
  --bg: #071223;
  --bg-2: #0e1c33;
  --surface: rgba(12, 22, 43, 0.9);
  --surface-2: rgba(255, 255, 255, 0.06);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.74);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #f8b61b;
  --orange: #ff7a1a;
  --orange-2: #ff9b27;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(248, 182, 27, 0.2), transparent 20%),
    radial-gradient(circle at 80% 0%, rgba(255, 122, 26, 0.14), transparent 25%),
    linear-gradient(180deg, #050b16 0%, var(--bg) 25%, #081325 100%);
  color: var(--text);
}

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

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

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 36px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.35vw, 24px);
  padding: 12px clamp(16px, 1.9vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 25, 0.96), rgba(9, 14, 30, 0.92)),
    rgba(7, 18, 35, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

button,
input {
  font: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 300px);
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  background: transparent;
}

.brand-mark--wide {
  width: min(100%, 300px);
  height: 86px;
  padding: 0;
}

.brand-mark--wide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(2px, 0.3vw, 6px);
  padding: 0;
  color: rgba(247, 248, 251, 0.85);
  font-size: clamp(0.86rem, 0.36vw + 0.78rem, 0.98rem);
  font-weight: 600;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px clamp(7px, 0.55vw, 11px);
  border-radius: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.topnav__languages {
  display: none;
}

.topnav__language {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 248, 251, 0.82);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.topnav__language small {
  color: rgba(247, 248, 251, 0.56);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.topnav__language:hover,
.topnav__language:focus-visible {
  color: var(--gold);
  border-color: rgba(248, 182, 27, 0.24);
  background: rgba(248, 182, 27, 0.08);
  transform: translateY(-1px);
}

.topnav__language.is-active {
  color: #fff7df;
  border-color: rgba(248, 182, 27, 0.24);
  background: linear-gradient(135deg, rgba(248, 182, 27, 0.16), rgba(255, 122, 26, 0.14));
}

.topnav__language.is-active small {
  color: rgba(255, 247, 223, 0.76);
}

.topnav a i {
  color: var(--gold);
  font-size: 0.92rem;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.topnav__caret::after {

  font-size: 0.92em;
  color: rgba(247, 248, 251, 0.72);
}

.topbar__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher__trigger {
  min-height: 46px;
  min-width: 108px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 248, 251, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switcher__trigger:hover,
.language-switcher__trigger:focus-visible,
.language-switcher.is-open .language-switcher__trigger {
  color: var(--gold);
  border-color: rgba(248, 182, 27, 0.26);
  background: rgba(248, 182, 27, 0.08);
  transform: translateY(-1px);
}

.language-switcher__current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switcher__chevron {
  font-size: 0.84rem;
  color: rgba(247, 248, 251, 0.54);
  transition: transform 0.2s ease, color 0.2s ease;
}

.language-switcher.is-open .language-switcher__chevron {
  color: var(--gold);
  transform: rotate(180deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 196px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(248, 182, 27, 0.18);
  border-radius: 18px;
  background: rgba(7, 18, 35, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-switcher__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(247, 248, 251, 0.82);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switcher__option:hover,
.language-switcher__option:focus-visible {
  color: var(--gold);
  background: rgba(248, 182, 27, 0.08);
  transform: translateX(2px);
}

.language-switcher__option.is-active {
  background: linear-gradient(135deg, rgba(248, 182, 27, 0.14), rgba(255, 122, 26, 0.16));
  color: #fff7df;
  box-shadow: inset 0 0 0 1px rgba(248, 182, 27, 0.18);
}

.language-switcher__option-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.language-switcher__label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.language-switcher__option small {
  color: rgba(247, 248, 251, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher__option.is-active small {
  color: rgba(255, 247, 223, 0.76);
}

.language-flag {
  position: relative;
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.language-flag--es {
  background: linear-gradient(180deg, #aa151b 0 28%, #f1bf00 28% 72%, #aa151b 72% 100%);
}

.language-flag--en {
  background:
    repeating-linear-gradient(180deg, #b22234 0 12%, #ffffff 12% 24%);
}

.language-flag--en::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 45%;
  height: 58%;
  background: #3c3b6e;
}

.language-flag--pt {
  background: linear-gradient(90deg, #046a38 0 40%, #da291c 40% 100%);
}

.language-flag--pt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffcc29;
  transform: translate(-50%, -50%);
}

.whatsapp-nav {
  min-height: 46px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.11);
  color: #74ed9f;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-nav i {
  font-size: 1.12rem;
}

.whatsapp-nav:hover,
.whatsapp-nav:focus-visible {
  transform: translateY(-2px);
  color: #071223;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.22);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nav-icon:hover,
.nav-icon:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(248, 182, 27, 0.26);
  color: var(--gold);
  background: rgba(248, 182, 27, 0.08);
}

.menu-toggle {
  display: none;
}

.site-search {
  position: absolute;
  top: calc(100% + 10px);
  right: max(26px, calc((100vw - 1280px) / 2 + 16px));
  width: min(560px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(248, 182, 27, 0.22);
  border-radius: 18px;
  background: rgba(7, 18, 35, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.site-search.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-search > i {
  color: var(--gold);
  padding-left: 6px;
}

.site-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.site-search input::placeholder {
  color: rgba(247, 248, 251, 0.5);
}

.site-search button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

#search-status {
  min-width: 54px;
  color: var(--gold);
  font-size: 0.76rem;
  text-align: right;
}

.search-hit {
  border-radius: 4px;
  outline: 3px solid rgba(248, 182, 27, 0.6);
  outline-offset: 4px;
  background: rgba(248, 182, 27, 0.14) !important;
  scroll-margin-top: 120px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(248, 182, 27, 0.28);
  background: rgba(248, 182, 27, 0.08);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #071223;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(255, 130, 26, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta i {
  margin-right: 8px;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(255, 130, 26, 0.42);
}

.cta--ghost,
.cta--soft {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.cta--soft {
  background: rgba(255, 255, 255, 0.05);
}

.cta--wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 46px;
  align-items: center;
  padding: 44px 0 26px;
}

.hero__copy {
  min-width: 0;
  max-width: 680px;
  margin-inline: auto;
  padding: 0 5px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 248, 251, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(248, 182, 27, 0.12);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.25rem, 4.15vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 12ch;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero__lead {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
  text-align: justify;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}

.hero__facts li > i {
  color: var(--orange);
  font-size: 1.05rem;
}

.hero__facts strong {
  font-size: 1.05rem;
  color: var(--gold);
}

.hero__facts span {
  color: rgba(247, 248, 251, 0.75);
  font-size: 0.82rem;
}

.hero__visual {
  display: grid;
  gap: 12px;
  align-self: center;
  min-width: 0;
  width: 100%;
  max-width: 600px;
  justify-self: end;
}

.hero__headline-card,
.floating-card,
.visual-card,
.trustbar div,
.panel,
.module-card,
.benefits-grid article,
.price-card,
.payment-card,
.discount-card,
.footer {
  box-shadow: var(--shadow);
}

.hero__headline-card {
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(8, 16, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 6px;
  text-align: center;
}

.hero__headline-card span {
  display: block;
  color: rgba(247, 248, 251, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
}

.hero__headline-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.visual-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #091222;
}

.visual-card img,
.methodology__visual img,
.cta-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #091222;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.floating-card {
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.floating-card span {
  display: block;
  color: rgba(247, 248, 251, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
}

.floating-card strong {
  display: block;
  margin-top: 5px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.floating-card--innovation {
  border-color: rgba(248, 182, 27, 0.32);
}

.floating-card--focus {
  border-color: rgba(255, 122, 26, 0.36);
}

.trustbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.trustbar div {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.trustbar strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.trustbar span,
.panel p,
.reason-grid p,
.reason-columns li {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  margin-top: 28px;
  padding-top: 32px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.split--feature {
  align-items: stretch;
}

.panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel--dark {
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.96), rgba(12, 22, 43, 0.9));
}

.panel--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 243, 251, 0.93));
  color: #0b1220;
}

.panel--light .section-kicker,
.panel--light p,
.panel--light li,
.panel--light h2 {
  color: inherit;
}

.panel h2,
.section-heading h2,
.methodology h2,
.cta-section h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.problem-grid,
.schedule-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.problem-grid article,
.schedule-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-grid strong,
.schedule-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.schedule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.schedule-grid span {
  color: rgba(247, 248, 251, 0.8);
  line-height: 1.6;
}

.checklist,
.bullet-list,
.module-list,
.payment-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.checklist li,
.bullet-list li,
.module-list li,
.payment-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
}

.checklist li::before,
.bullet-list li::before,
.module-list li::before,
.payment-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-2);
  font-weight: 900;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 860px;
}

.audience {
  position: relative;
  overflow: hidden;
  padding: 38px 34px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(248, 182, 27, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.audience::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 122, 26, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(248, 182, 27, 0.025);
  pointer-events: none;
}

.audience .section-heading {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.audience .section-heading h2 em,
.audience .section-heading h2 strong {
  font-style: normal;
  color: var(--gold);
}

.audience .section-heading h2 strong {
  color: var(--orange);
}

.chips,
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.icon-list span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 248, 251, 0.84);
}

.chips {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.chips span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(20, 32, 54, 0.9), rgba(12, 23, 40, 0.82));
  color: rgba(247, 248, 251, 0.88);
  font-size: 0.9rem;
  line-height: 1.35;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.chips span::before {
  content: attr(data-icon);
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(248, 182, 27, 0.12);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.chips span:nth-child(3n + 2)::before {
  background: rgba(255, 122, 26, 0.12);
  color: var(--orange);
}

.chips span:nth-child(3n)::before {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.chips span:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 182, 27, 0.34);
  background: linear-gradient(145deg, rgba(31, 44, 67, 0.98), rgba(16, 27, 46, 0.94));
}

.panel--light .icon-list span {
  border-color: rgba(7, 18, 35, 0.1);
  background: rgba(7, 18, 35, 0.05);
  color: #0b1220;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 26px;
}

.module-card {
  position: relative;
  overflow: visible;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(22, 34, 58, 0.96), rgba(18, 29, 49, 0.98));
  min-height: 270px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.module-card::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -28px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(248, 182, 27, 0.11);
}

.module-card:nth-child(-n + 3)::after,
.module-card:nth-child(n + 5):nth-child(-n + 7)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  z-index: 3;
  width: 32px;
  height: 18px;
  background: linear-gradient(90deg, #d69400, var(--gold));
  clip-path: polygon(0 42%, 70% 42%, 70% 0, 100% 50%, 70% 100%, 70% 58%, 0 58%);
  filter: drop-shadow(0 0 8px rgba(248, 182, 27, 0.36));
  animation: module-flow 1.8s ease-in-out infinite;
  pointer-events: none;
}

.module-card:hover,
.module-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(248, 182, 27, 0.2);
}

.module-card--accent {
  border-color: rgba(248, 182, 27, 0.42);
  background:
    linear-gradient(180deg, rgba(248, 182, 27, 0.12), rgba(255, 122, 26, 0.08)),
    linear-gradient(180deg, rgba(22, 34, 58, 0.96), rgba(18, 29, 49, 0.98));
}

.module-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffbf17;
  font-size: 0.96rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.module-card--accent > span {
  background: linear-gradient(135deg, #ffb018, #ff8612);
  color: #071223;
}

.module-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 12px;
  max-width: 16ch;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.module-list {
  position: relative;
  z-index: 1;
  margin-top: 0;
  gap: 8px;
}

.module-list li {
  color: rgba(247, 248, 251, 0.8);
  padding-left: 20px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.module-list li::before {
  font-size: 0.82rem;
}

.module-card.reveal.is-visible {
  animation: module-enter 0.65s both;
}

.module-card:nth-child(2).reveal.is-visible,
.module-card:nth-child(6).reveal.is-visible {
  animation-delay: 0.08s;
}

.module-card:nth-child(3).reveal.is-visible,
.module-card:nth-child(7).reveal.is-visible {
  animation-delay: 0.16s;
}

.module-card:nth-child(4).reveal.is-visible,
.module-card:nth-child(8).reveal.is-visible {
  animation-delay: 0.24s;
}

@keyframes module-flow {
  0%,
  100% {
    transform: translate(-3px, -50%);
    opacity: 0.58;
  }

  50% {
    transform: translate(3px, -50%);
    opacity: 1;
  }
}

@keyframes module-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.methodology {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 22px;
  align-items: start;
}

.methodology__copy,
.methodology__visual {
  min-width: 0;
}

.methodology__copy {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(14, 28, 51, 0.96), rgba(7, 18, 35, 0.96));
}

.methodology__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: transparent;
}

.methodology__visual img {
  position: static;
  width: 100%;
  height: auto;
  max-height: none;
  padding: 0;
  object-fit: contain;
  background: transparent;
}

.methodology__badge {
  width: 100%;
  margin-top: 30px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.methodology__badge strong {
  display: block;
  font-size: 1.2rem;
  color: var(--gold);
}

.methodology__badge span {
  display: block;
  margin-top: 10px;
  color: rgba(247, 248, 251, 0.78);
  line-height: 1.7;
}

.speaker {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(248, 182, 27, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 90%, rgba(248, 182, 27, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(13, 28, 51, 0.98), rgba(6, 16, 31, 0.98));
  box-shadow: var(--shadow);
}

.speaker__visual {
  position: relative;
  min-height: 620px;
}

.speaker__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b172b;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.4);
}

.speaker__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker__photo--main {
  inset: 0 18% 4% 0;
  border-radius: 30px 30px 90px 30px;
}

.speaker__photo--main img {
  object-position: center 28%;
}

.speaker__photo--secondary {
  right: 0;
  bottom: 0;
  width: 49%;
  height: 42%;
  border: 8px solid #0b172b;
  border-radius: 24px;
  transform: rotate(2deg);
}

.speaker__photo--secondary img {
  object-position: 44% center;
}

.speaker__experience {
  position: absolute;
  top: 28px;
  right: 0;
  width: 150px;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px;
  border: 1px solid rgba(248, 182, 27, 0.42);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(248, 182, 27, 0.96), rgba(255, 122, 26, 0.96));
  color: #071223;
  text-align: center;
  box-shadow: 0 18px 46px rgba(255, 122, 26, 0.24);
  transform: rotate(5deg);
}

.speaker__experience strong {
  font-size: 2.4rem;
  line-height: 1;
}

.speaker__experience span {
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.25;
}

.speaker__copy {
  min-width: 0;
}

.speaker__copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.speaker__copy h2 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.speaker__lead {
  max-width: 670px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 680;
  line-height: 1.65;
}

.speaker__credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.speaker__credentials article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.speaker__credentials article:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 182, 27, 0.34);
  background: rgba(248, 182, 27, 0.07);
}

.speaker__credentials i {
  color: var(--orange-2);
  font-size: 1.45rem;
}

.speaker__credentials span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.speaker__bio {
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.benefits-grid article {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.benefits-grid strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.benefits-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.reasons {
  position: relative;
  overflow: hidden;
  padding: 42px 34px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.09), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
}

.reasons .section-heading h2 em,
.reasons .section-heading h2 strong {
  color: var(--gold);
  font-style: normal;
}

.reasons .section-heading h2 strong {
  color: var(--orange);
}

.reason-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.reason-hero__card {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(22, 34, 58, 0.94), rgba(13, 25, 43, 0.9));
}

.reason-hero__card::after {
  content: attr(data-icon);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(248, 182, 27, 0.18);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.reason-hero__card--bright {
  border-color: rgba(248, 182, 27, 0.26);
  background: linear-gradient(135deg, rgba(248, 182, 27, 0.2), rgba(255, 122, 26, 0.17));
}

.reason-hero__card strong,
.reason-hero__card span {
  position: relative;
  z-index: 1;
  display: block;
}

.reason-hero__card strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.reason-hero__card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.reason-grid article,
.price-card,
.payment-card,
.discount-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.reason-grid article {
  position: relative;
  min-height: 190px;
  padding: 62px 18px 18px;
  background: linear-gradient(155deg, rgba(22, 34, 58, 0.9), rgba(13, 24, 42, 0.82));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.reason-grid article::before {
  content: attr(data-icon);
  position: absolute;
  top: 16px;
  left: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(248, 182, 27, 0.12);
  color: var(--gold);
  font-weight: 900;
}

.reason-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 182, 27, 0.3);
}

.reason-grid h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.reason-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.reason-columns ul {
  list-style: none;
  margin: 0;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(18, 30, 50, 0.76), rgba(10, 21, 37, 0.72));
  display: grid;
  gap: 5px;
}

.reason-columns ul:nth-child(1) { counter-reset: reason-item 0; }
.reason-columns ul:nth-child(2) { counter-reset: reason-item 5; }
.reason-columns ul:nth-child(3) { counter-reset: reason-item 10; }
.reason-columns ul:nth-child(4) { counter-reset: reason-item 15; }
.reason-columns ul:nth-child(5) { counter-reset: reason-item 20; }

.reason-columns li {
  counter-increment: reason-item;
  position: relative;
  padding: 11px 12px 11px 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(247, 248, 251, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.reason-columns li::before {
  content: counter(reason-item, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.reason-columns li:hover {
  transform: translateX(3px);
  background: rgba(248, 182, 27, 0.07);
  color: var(--text);
}

.reason-columns li.is-typing {
  color: var(--text);
}

.reason-columns li.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  vertical-align: -0.12em;
  background: var(--orange);
  animation: typing-caret 0.45s steps(1) infinite;
}

@keyframes typing-caret {
  50% {
    opacity: 0;
  }
}

.pricing-grid {
  grid-template-columns: 1.05fr 1fr 1fr;
  align-items: stretch;
  margin-top: 24px;
}

.price-card {
  background:
    linear-gradient(180deg, rgba(248, 182, 27, 0.13), rgba(255, 122, 26, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.price-card__label {
  display: block;
  color: rgba(247, 248, 251, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.price-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--text);
}

.price-card p,
.payment-card li,
.discount-card span {
  color: var(--muted);
}

.payment-card h3,
.discount-card h3 {
  margin-top: 0;
}

.discount-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.discount-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.discount-list strong {
  color: var(--text);
}

.discount-list span {
  color: var(--gold);
  font-weight: 800;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
}

.cta-section__visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.cta-section__visual img {
  position: absolute;
  inset: 0;
  padding: 0;
  background: transparent;
}

.cta-section__overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  max-width: 310px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(8, 16, 31, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.cta-section__overlay span {
  display: block;
  color: rgba(247, 248, 251, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.cta-section__overlay strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}

.cta-section__copy {
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 251, 0.94));
  color: #091221;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-section__copy p {
  color: rgba(9, 18, 33, 0.76);
  line-height: 1.8;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.lead-form label {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(7, 18, 35, 0.14);
  background: white;
  color: #091221;
  font: inherit;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.15);
}

.lead-form button {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 32px;
  padding:
    30px max(26px, calc((100vw - 1280px) / 2 + 16px))
    22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 18, 35, 0.96), rgba(4, 11, 22, 0.98));
  color: rgba(247, 248, 251, 0.78);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 0.9fr;
  gap: 28px;
}

.footer__brand {
  max-width: 360px;
}

.footer__logo {
  width: 210px;
  height: 64px;
  margin-bottom: 16px;
  padding: 0;
  background: transparent;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.footer strong,
.footer h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
}

.footer p {
  margin: 0;
  color: rgba(247, 248, 251, 0.72);
  line-height: 1.8;
}

.footer a,
.footer span {
  display: block;
  color: rgba(247, 248, 251, 0.78);
  line-height: 1.8;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1500px) {
  .topbar {
    border-radius: 0;
    grid-template-columns: minmax(240px, 280px) auto;
  }

  .topnav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 14px max(18px, calc((100vw - 1280px) / 2 + 16px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 18, 35, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .topnav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .topnav a {
    justify-content: center;
  }

  .topnav__languages {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topnav__language {
    justify-content: center;
  }

  .topbar__actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .language-switcher {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1180px) {
  .topbar,
  .hero,
  .split,
  .methodology,
  .speaker,
  .cta-section,
  .reason-hero {
    grid-template-columns: 1fr;
  }

  .speaker__visual {
    width: min(680px, 100%);
    min-height: 680px;
    margin: 0 auto;
  }

  .topbar {
    border-radius: 0;
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .topnav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 14px max(18px, calc((100vw - 1280px) / 2 + 16px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 18, 35, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .topnav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .topnav a {
    justify-content: center;
  }

  .topbar__actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .language-switcher {
    min-width: 0;
  }

  .language-switcher__trigger {
    min-width: 96px;
    min-height: 42px;
    padding: 0 12px;
  }

  .language-switcher__menu {
    width: 182px;
  }

  .hero__copy,
  .hero__visual {
    justify-self: center;
  }

  .hero__copy {
    max-width: 760px;
  }

  .module-grid,
  .benefits-grid,
  .reason-grid,
  .pricing-grid,
  .schedule-grid,
  .footer__grid,
  .chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__bottom {
    display: grid;
  }

  .module-card:nth-child(-n + 3)::after,
  .module-card:nth-child(n + 5):nth-child(-n + 7)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    padding-top: 0;
  }

  .topbar {
    position: sticky;
    padding: 16px 12px;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand-mark--wide {
    width: 178px;
    height: 56px;
  }

  .topbar__actions {
    gap: 8px;
  }

  .whatsapp-nav span {
    display: none;
  }

  .language-switcher__label {
    display: none;
  }

  .language-switcher__trigger {
    min-width: 74px;
    min-height: 42px;
    gap: 7px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .language-switcher__current {
    gap: 7px;
  }

  .language-switcher__chevron {
    font-size: 0.72rem;
  }

  .language-flag {
    width: 18px;
    height: 12px;
    border-radius: 3px;
  }

  .language-switcher__menu {
    right: 0;
    width: min(210px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    padding: 7px;
    border-radius: 16px;
  }

  .language-switcher__option {
    padding: 10px 11px;
    gap: 10px;
  }

  .language-switcher__option-main {
    gap: 9px;
  }

  .language-switcher__option small {
    font-size: 0.68rem;
  }

  .whatsapp-nav {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .topnav {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .site-search {
    right: 9px;
    width: calc(100vw - 18px);
    grid-template-columns: auto 1fr auto auto;
  }

  #search-status {
    display: none;
  }

  .topnav a {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .topnav__languages {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 8px;
  }

  .topnav__language {
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .topnav__language small {
    margin-left: auto;
  }

  .nav-icon {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero__facts,
  .trustbar,
  .module-grid,
  .benefits-grid,
  .reason-grid,
  .lead-form,
  .problem-grid,
  .schedule-grid,
  .pricing-grid,
  .footer__grid,
  .reason-columns,
  .chips {
    grid-template-columns: 1fr;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .methodology__copy,
  .cta-section__visual {
    min-height: 320px;
  }

  .methodology__visual {
    min-height: 0;
  }

  .module-card {
    min-height: auto;
  }

  .panel,
  .methodology__copy,
  .cta-section__copy {
    padding: 22px;
  }

  .speaker {
    padding: 18px;
    border-radius: 26px;
  }

  .speaker__visual {
    min-height: 440px;
  }

  .speaker__photo--main {
    inset: 0 10% 0 0;
    border-radius: 24px 24px 58px 24px;
  }

  .speaker__photo--secondary {
    width: 48%;
    height: 35%;
    border-width: 5px;
    border-radius: 18px;
  }

  .speaker__experience {
    top: 18px;
    width: 112px;
    min-height: 112px;
    padding: 13px;
  }

  .speaker__experience strong {
    font-size: 1.8rem;
  }

  .speaker__experience span {
    font-size: 0.64rem;
  }

  .speaker__copy h2 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .speaker__credentials {
    grid-template-columns: 1fr;
  }

  .audience {
    padding: 26px 18px 20px;
  }

  .reasons {
    padding: 28px 18px 22px;
  }

  .reason-grid article {
    min-height: auto;
  }

  .footer__logo {
    width: 180px;
  }

  .footer {
    padding: 24px 12px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .module-card.reveal.is-visible {
    animation: none;
  }

  .module-card::after {
    animation: none !important;
  }
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 15% 0%, rgba(248, 182, 27, 0.18), transparent 24%),
    radial-gradient(circle at 95% 18%, rgba(255, 122, 26, 0.12), transparent 25%),
    #071223;
}

.legal-topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.legal-topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 750;
  transition: 0.2s ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  border-color: rgba(248, 182, 27, 0.5);
  color: var(--gold);
  transform: translateX(-3px);
}

.legal-main {
  padding: 38px 0 30px;
}

.legal-hero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid rgba(248, 182, 27, 0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 29, 53, 0.96), rgba(7, 18, 35, 0.88));
  box-shadow: var(--shadow);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(248, 182, 27, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 122, 26, 0.03), 0 0 0 90px rgba(248, 182, 27, 0.025);
}

.legal-hero > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.legal-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.legal-hero h1 span {
  color: var(--gold);
}

.legal-hero p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.legal-updated {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(248, 182, 27, 0.12);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero__icon {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(248, 182, 27, 0.28);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(248, 182, 27, 0.14), rgba(255, 122, 26, 0.06));
  color: var(--gold);
  font-size: 4.8rem;
  transform: rotate(5deg);
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 28px;
}

.legal-index {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(12, 22, 43, 0.92);
}

.legal-index strong {
  margin: 2px 8px 12px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-index a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 8px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
  transition: 0.2s ease;
}

.legal-index a span {
  color: var(--orange-2);
  font-size: 0.7rem;
  font-weight: 900;
}

.legal-index a:hover,
.legal-index a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transform: translateX(3px);
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 31, 56, 0.94), rgba(10, 21, 40, 0.94));
  scroll-margin-top: 20px;
}

.legal-content h2 {
  max-width: calc(100% - 65px);
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.legal-content li {
  position: relative;
  padding-left: 26px;
}

.legal-content li::before {
  content: "\F633";
  position: absolute;
  left: 0;
  color: var(--orange-2);
  font-family: "bootstrap-icons";
}

.legal-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(248, 182, 27, 0.22);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.legal-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(248, 182, 27, 0.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248, 182, 27, 0.12), rgba(255, 122, 26, 0.08));
}

.legal-note > i {
  color: var(--gold);
  font-size: 1.5rem;
}

.legal-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.legal-note a {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-footer a:hover,
.legal-footer a:focus-visible,
.legal-footer .is-active {
  color: var(--gold);
}

@media (max-width: 1180px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-index strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .legal-topbar {
    min-height: 70px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .legal-topbar__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .legal-back {
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .legal-hero {
    min-height: auto;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .legal-hero__icon {
    display: none;
  }

  .legal-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .legal-index {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .legal-content section {
    padding: 24px 20px;
  }

  .legal-content h2 {
    max-width: calc(100% - 50px);
  }

  .legal-number {
    top: 22px;
    right: 20px;
    font-size: 2rem;
  }

  .legal-note {
    grid-template-columns: auto 1fr;
  }

  .legal-note a {
    grid-column: 1 / -1;
  }

  .legal-footer {
    flex-direction: column;
  }
}
