:root {
  --navy: #06366d;
  --navy-2: #082b56;
  --navy-3: #041f42;
  --teal: #0f8290;
  --gold: #d6a21c;
  --gold-2: #f0c44c;
  --ink: #10233f;
  --muted: #59687a;
  --line: #d9e1eb;
  --paper: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(6, 54, 109, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(4, 31, 66, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 162, 28, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 3px;
  border-radius: 50%;
  background: var(--white);
}

.brand-text {
  max-width: 330px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.9;
  transition: color 200ms ease, opacity 200ms ease;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
  color: var(--gold-2);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

@media (max-width: 1080px) {
  .brand-text {
    max-width: 260px;
    font-size: 0.72rem;
  }

  .nav {
    gap: 18px;
    font-size: 0.86rem;
  }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 92px) 86px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(1.12) contrast(1.14) brightness(0.98);
}

.hero-overlay {
  background:
    radial-gradient(circle at 73% 45%, rgba(240, 196, 76, 0.14) 0%, rgba(240, 196, 76, 0.06) 20%, rgba(240, 196, 76, 0) 43%),
    radial-gradient(circle at 78% 58%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(90deg, rgba(7, 27, 61, 0.88) 0%, rgba(7, 27, 61, 0.65) 48%, rgba(7, 27, 61, 0.25) 100%),
    linear-gradient(0deg, rgba(3, 25, 55, 0.28), rgba(3, 25, 55, 0.08) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.15rem, 4.95vw, 4.42rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-copy {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.68;
}

.authority-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 800;
}

.authority-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.authority-line span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--navy-3);
  background: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #051f42;
  background: linear-gradient(180deg, #f4cf62 0%, var(--gold) 100%);
  box-shadow: 0 16px 30px rgba(214, 162, 28, 0.23);
}

.button.primary:hover {
  background: linear-gradient(180deg, #ffe08a 0%, #e2ad23 100%);
  box-shadow: 0 18px 36px rgba(214, 162, 28, 0.3);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
}

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

.button.full {
  width: 100%;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 58px 0 0;
}

.hero-cards article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease, background 250ms ease;
}

.hero-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 196, 76, 0.34);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--navy-3);
  background: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-cards h2 {
  margin: 0;
  color: var(--gold-2);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
}

.hero-cards p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 64px);
}

.section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.two-column,
.contact-layout,
.course-layout,
.opportunity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}

.opportunity {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.opportunity::before {
  content: "OPORTUNIDADE";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  color: rgba(6, 54, 109, 0.04);
  font-size: clamp(7.22rem, 11.025vw, 10.5rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.opportunity-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.opportunity-content h2 {
  max-width: 760px;
}

.opportunity-watermark {
  position: absolute;
  right: clamp(-110px, -5vw, -36px);
  top: 50%;
  width: min(42vw, 520px);
  min-width: 360px;
  transform: translateY(-50%);
  opacity: 0.065;
  z-index: 1;
  pointer-events: none;
}

.watermark-outline {
  fill: rgba(212, 175, 55, 0.1);
  stroke: #d4af37;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.watermark-line {
  fill: none;
  stroke: #d4af37;
  stroke-width: 0.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.watermark-flow {
  fill: none;
  stroke: rgba(83, 174, 219, 0.72);
  stroke-width: 0.9;
  stroke-linecap: round;
}

.watermark-point {
  fill: #d4af37;
  stroke: var(--white);
  stroke-width: 0.8;
}

.opportunity-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}

.official-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  max-width: 860px;
  margin-top: 48px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(217, 225, 235, 0.86);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 54, 109, 0.08);
}

.official-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff5d6;
  box-shadow: inset 0 0 0 1px rgba(214, 162, 28, 0.22);
}

.official-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.official-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-card p:not(.official-label) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(6, 54, 109, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: #f8fafc;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.official-link:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 162, 28, 0.45);
  background: #fff8e5;
}

.offer-band {
  background: var(--paper);
}

.methodology-section {
  background: var(--white);
}

.methodology-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.methodology-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.methodology-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(217, 225, 235, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 18px 46px rgba(6, 54, 109, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.methodology-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 162, 28, 0.38);
  box-shadow: 0 24px 58px rgba(6, 54, 109, 0.12);
}

.methodology-card-featured {
  border-color: rgba(214, 162, 28, 0.42);
}

.methodology-label {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.methodology-card h3 {
  max-width: 440px;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
}

.methodology-card p:not(.methodology-label) {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.methodology-button {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(6, 54, 109, 0.16);
  border-radius: 8px;
  color: var(--navy);
  background: #f8fafc;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.methodology-button:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 162, 28, 0.42);
  background: #fff8e5;
}

.comparison-card {
  margin-top: clamp(30px, 5vw, 52px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(217, 225, 235, 0.86);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(6, 54, 109, 0.07);
}

.comparison-intro {
  max-width: 680px;
  margin-bottom: 30px;
}

.comparison-intro h3 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.comparison-intro p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.comparison-grid {
  display: grid;
  gap: 2px;
}

.comparison-grid-head,
.comparison-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.78fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.comparison-grid-head {
  min-height: 78px;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
}

.comparison-grid-head span {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-grid-head strong {
  font: inherit;
}

.comparison-grid-head em {
  width: fit-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.comparison-grid-head .method-column-head em {
  color: #0f3b24;
  background: rgba(164, 232, 184, 0.9);
}

.comparison-item {
  min-height: 66px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(217, 225, 235, 0.58);
  color: var(--muted);
  transition: background 180ms ease;
}

.comparison-item:last-child {
  border-bottom: 0;
}

.comparison-item:hover {
  background: #fbfcfe;
}

.comparison-item span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.comparison-grid-head span:nth-child(2),
.comparison-item span:nth-child(2) {
  position: relative;
  padding: 12px 14px;
  border-radius: 12px;
}

.comparison-grid-head span:nth-child(2) {
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: linear-gradient(180deg, rgba(255, 248, 229, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.comparison-item span:nth-child(2) {
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
  box-shadow: 0 10px 24px rgba(6, 54, 109, 0.04);
}

.comparison-item .criterion {
  color: var(--navy);
  font-weight: 900;
}

.icon-check,
.icon-neutral {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-style: normal;
  font-size: 0.78rem;
}

.icon-check {
  color: var(--navy-3);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.48);
}

.icon-neutral {
  background: #eef2f6;
  box-shadow: inset 0 0 0 1px #d7dfe8;
}

.comparison-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 225, 235, 0.62);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker),
.course-copy p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.product-card,
.price-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 28px;
}

.products-section {
  background: var(--paper);
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
}

.featured-product {
  border-color: rgba(214, 162, 28, 0.55);
  box-shadow: 0 24px 54px rgba(6, 54, 109, 0.18);
}

.product-label {
  align-self: flex-start;
  margin: 0;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--navy-3);
  background: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.product-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-card .check-list {
  margin-top: 0;
  flex: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 6px;
  color: var(--navy-3);
  background: var(--gold-2);
  font-weight: 900;
}

.feature-card p,
.step p {
  color: var(--muted);
}

.course-section {
  background: var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff2c7;
}

.positioning-section {
  padding-top: clamp(100px, 9vw, 140px);
  padding-bottom: clamp(100px, 9vw, 140px);
  background: #f7f9fc;
}

.positioning-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.positioning-heading p:not(.section-kicker) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.positioning-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(217, 225, 235, 0.9);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 54, 109, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.positioning-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 162, 28, 0.32);
  box-shadow: 0 22px 52px rgba(6, 54, 109, 0.1);
}

.positioning-card h3 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

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

.positioning-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}

.positioning-list.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--navy-3);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
}

.positioning-list.scope li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(214, 162, 28, 0.76);
}

.commitment-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(217, 225, 235, 0.86);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 18px 42px rgba(6, 54, 109, 0.07);
}

.commitment-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff5d6;
  box-shadow: inset 0 0 0 1px rgba(214, 162, 28, 0.22);
  font-size: 1.45rem;
}

.commitment-card h3 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.commitment-card p {
  max-width: 900px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.price-card {
  padding: 30px;
  position: sticky;
  top: 98px;
}

.price-label {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 10px 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.price-note {
  color: var(--muted);
}

.method-section {
  color: var(--white);
  background: var(--navy-3);
}

.method-section h2,
.method-section h3 {
  color: var(--white);
}

.method-section .section-heading p:not(.section-kicker) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.step {
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 220ms ease, border-color 220ms ease;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 196, 76, 0.62);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
  filter: saturate(0.96);
  transition: filter 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.step:hover span {
  filter: brightness(1.12) saturate(1.08);
  box-shadow: 0 0 22px rgba(240, 196, 76, 0.28);
  transform: translateY(-1px);
}

.step p {
  color: rgba(255, 255, 255, 0.75);
}

.method-sale-section {
  background: var(--white);
}

.method-sale-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.64fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.method-sale-copy {
  max-width: 760px;
}

.method-sale-copy p:not(.section-kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.sale-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.sale-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 800;
}

.sale-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--navy-3);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
}

.sale-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(214, 162, 28, 0.34);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 26px 64px rgba(6, 54, 109, 0.15);
}

.sale-badge {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--navy-3);
  background: #fff5d6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.installment-price span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.installment-price strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(2.85rem, 5vw, 4.35rem);
  line-height: 1;
}

.installment-price small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1;
}

.pix-discount-line {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
}

.sale-actions {
  display: grid;
  gap: 12px;
}

.pix-button {
  color: var(--navy);
  border-color: rgba(6, 54, 109, 0.16);
  background: #f8fafc;
  box-shadow: none;
}

.pix-button:hover {
  border-color: rgba(214, 162, 28, 0.42);
  background: #fff8e5;
}

.checkout-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.contact-info {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 225, 235, 0.9);
}

.contact-info p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-info ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  gap: 2px;
}

.contact-info span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info a {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-info strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
}

.contact-form h3 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #cbd8e3;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, outline-color 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(6, 54, 109, 0.13);
  border-color: var(--navy);
  box-shadow: 0 0 0 1px rgba(6, 54, 109, 0.04);
}

.form-success {
  padding: 16px;
  border: 1px solid rgba(214, 162, 28, 0.32);
  border-radius: 10px;
  background: #fff8e5;
}

.form-success strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.form-success p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.privacy-consent {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.privacy-consent a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 32px rgba(6, 54, 109, 0.3);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.75);
  background: #041a36;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.footer-service {
  display: grid;
  gap: 4px;
}

.footer-service p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.footer-service a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-service a:hover {
  color: var(--gold-2);
}

.footer-service span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-link {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.footer-link:hover {
  color: var(--gold-2);
}

.privacy-page {
  background: #f7f9fc;
}

.privacy-nav {
  gap: 20px;
}

.privacy-hero {
  padding: 148px clamp(20px, 6vw, 92px) 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 196, 76, 0.16), rgba(240, 196, 76, 0) 34%),
    linear-gradient(135deg, #041f42 0%, #06366d 100%);
}

.privacy-hero-inner {
  width: min(900px, 100%);
}

.privacy-hero h1 {
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.privacy-hero p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.privacy-content {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(72px, 9vw, 110px);
}

.privacy-document {
  max-width: 920px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(217, 225, 235, 0.92);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(6, 54, 109, 0.08);
}

.privacy-updated {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.privacy-document article {
  padding: 28px 0;
  border-top: 1px solid rgba(217, 225, 235, 0.75);
}

.privacy-document article:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.privacy-document article:last-child {
  padding-bottom: 0;
}

.privacy-document h2 {
  color: var(--navy);
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.privacy-document p,
.privacy-document li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-document p {
  margin: 14px 0 0;
}

.privacy-document ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.privacy-document a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .brand-text {
    max-width: 210px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(7, 22, 42, 0.96);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 82px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 76% 34%, rgba(240, 196, 76, 0.11) 0%, rgba(240, 196, 76, 0.04) 26%, rgba(240, 196, 76, 0) 52%),
      linear-gradient(90deg, rgba(7, 27, 61, 0.9) 0%, rgba(7, 27, 61, 0.72) 58%, rgba(7, 27, 61, 0.5) 100%),
      linear-gradient(0deg, rgba(3, 25, 55, 0.34), rgba(3, 25, 55, 0.18));
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.25rem, 8vw, 3.7rem);
  }

  .hero-copy {
    max-width: 620px;
  }

  .authority-line {
    gap: 12px 20px;
  }

  .hero-cards,
  .feature-grid,
  .product-grid,
  .methodology-cards,
  .positioning-grid,
  .method-sale-layout,
  .steps,
  .two-column,
  .opportunity-layout,
  .contact-layout,
  .course-layout {
    grid-template-columns: 1fr;
  }

  .official-card {
    grid-template-columns: 1fr;
  }

  .opportunity-watermark {
    right: -180px;
    opacity: 0.045;
  }

  .opportunity::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(6, 54, 109, 0.03);
    font-size: 6.3rem;
  }

  .price-card {
    position: static;
  }

  .methodology-card {
    min-height: 0;
  }

  .commitment-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 0.68rem;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.06;
  }

  .hero-copy {
    margin-top: 26px;
    line-height: 1.58;
  }

  .authority-line {
    margin-top: 24px;
  }

  .hero-cards {
    margin-top: 44px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .comparison-card {
    padding: 20px;
  }

  .comparison-grid-head {
    display: none;
  }

  .comparison-item {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 16px;
    border: 1px solid rgba(217, 225, 235, 0.78);
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .comparison-item span:nth-child(2),
  .comparison-item span:nth-child(3) {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .comparison-item span:nth-child(2)::before,
  .comparison-item span:nth-child(3)::before {
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-item span:nth-child(2)::before {
    content: "Método PNCL";
  }

  .comparison-item span:nth-child(3)::before {
    content: "Consultoria Estratégica";
  }

  .comparison-item:last-child {
    margin-bottom: 0;
  }

  .hero-cards article,
  .feature-card,
  .methodology-card,
  .positioning-card,
  .commitment-card,
  .price-card,
  .contact-form {
    padding: 20px;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
  }
}
