:root {
  --color-primary: #0E1D26;
  --color-secondary: #F37C22;
  --color-neutral: #EAEFF2;
  --color-text-light: #FFFFFF;
  --color-text-muted: #B7C0C5;
  --color-highlight: #21C1D6;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 60px rgba(4, 16, 24, 0.28);
  --shadow-card: 0 18px 48px rgba(14, 29, 38, 0.32);
  --shadow-border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(160% 120% at 15% 10%, rgba(33, 193, 214, 0.12), transparent 60%),
    radial-gradient(120% 120% at 85% -10%, rgba(243, 124, 34, 0.18), transparent 58%),
    var(--color-primary);
  color: var(--color-text-light);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(14, 29, 38, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav-menu a:hover {
  color: var(--color-highlight);
}

.nav-cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(120deg, #F37C22 0%, #FF9A3C 90%);
  color: #1A0B00;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(243, 124, 34, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(243, 124, 34, 0.36);
}

.nav-login {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.nav-login:hover {
  border-color: var(--color-highlight);
  color: var(--color-highlight);
  background: rgba(33, 193, 214, 0.1);
  transform: translateY(-2px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Hamburguer Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

main {
  padding-bottom: 120px;
}

section {
  padding: 110px 0;
}

.section-light {
  background: var(--color-neutral);
  color: #152733;
}

.section-dark {
  background: var(--color-primary);
  padding: 120px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0 auto 52px auto;
  max-width: 720px;
  line-height: 1.6;
}

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 140px;
  background:
    radial-gradient(110% 80% at 20% 10%, rgba(33, 193, 214, 0.22), transparent 60%),
    linear-gradient(160deg, rgba(14, 29, 38, 0.92), rgba(14, 29, 38, 0.86));
  color: var(--color-text-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% -10%, rgba(243, 124, 34, 0.24), transparent 55%);
  opacity: 0.7;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(33, 193, 214, 0.16), transparent 70%);
  filter: blur(4px);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: grid;
  gap: 32px;
  max-width: 100%;
  text-align: center;
  justify-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.8vw, 3.9rem);
  line-height: 1.15;
  margin: 0;
  max-width: 100%;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 800px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(33, 193, 214, 0.12);
  color: var(--color-highlight);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-points {
  display: grid;
  justify-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
}

.hero-points li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 720px;
}

.hero-points li span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(243, 124, 34, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #F9B067;
  font-size: 0.9rem;
}

.punchline {
  margin: 0 auto;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(243, 124, 34, 0.24), rgba(33, 193, 214, 0.18));
  border: 1px solid rgba(243, 124, 34, 0.32);
  color: #FFEADA;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 680px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Problema / Solução */
.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.problem-copy h2 {
  text-align: left;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.problem-list {
  margin: 28px 0;
  display: grid;
  gap: 18px;
}

.problem-list li {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--color-text-muted);
}

.problem-list span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(243, 124, 34, 0.18);
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.solution-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(243, 124, 34, 0.22), rgba(14, 29, 38, 0.86));
  border: 1px solid rgba(243, 124, 34, 0.3);
  color: #FFE9D8;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.illustration-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(33, 193, 214, 0.16), rgba(14, 29, 38, 0.88));
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.illustration-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(243, 124, 34, 0.18), transparent 60%);
  opacity: 0.7;
}

.illustration-panel p {
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  background: var(--color-text-light);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(14, 29, 38, 0.08);
  box-shadow: 0 18px 42px rgba(14, 29, 38, 0.12);
  display: grid;
  gap: 12px;
}

.benefit-card--dark {
  background: rgba(14, 29, 38, 0.86);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--color-text-light);
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(14, 29, 38, 0.92), rgba(33, 193, 214, 0.22));
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
}

.benefit-card p {
  color: #3C4A55;
  font-size: 0.95rem;
}

.benefit-card--dark p {
  color: var(--color-text-muted);
}

.microcopy {
  margin-top: 38px;
  text-align: center;
  font-weight: 600;
  color: #20323F;
}

/* Planos */
.plans-wrap {
  display: grid;
  gap: 28px;
}

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

.plan-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(234, 239, 242, 0.8));
  border: 1px solid rgba(14, 29, 38, 0.08);
  box-shadow: 0 22px 54px rgba(14, 29, 38, 0.16);
  display: grid;
  gap: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: #1c2a32;
}

.plan-card.highlight {
  background: linear-gradient(160deg, rgba(243, 124, 34, 0.16), rgba(255, 255, 255, 0.95));
  border: 1.5px solid rgba(243, 124, 34, 0.45);
  transform: translateY(-12px);
  box-shadow: 0 32px 70px rgba(243, 124, 34, 0.24);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(5, 18, 26, 0.18);
}

.plan-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f1c24;
}

.plan-sub {
  font-size: 0.9rem;
  color: #4b5b65;
  margin-top: -6px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-weight: 700;
  color: #0f1c24;
}

.plan-price strong {
  font-size: 2.3rem;
  color: #F37C22;
}

.plan-price span {
  font-size: 1rem;
  color: #63717b;
}

.plan-features {
  display: grid;
  gap: 12px;
  color: #33414b;
  font-size: 0.95rem;
}

.plan-features li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plan-features svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(120deg, #0E1D26, #183548);
  color: var(--color-text-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn,
.btn-primary,
.btn-ghost {
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
}

.plan-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(14, 29, 38, 0.28);
}

.plan-cta--highlight {
  background: linear-gradient(120deg, #F37C22, #FF9A3C);
  color: #1A0B00;
  box-shadow: 0 18px 46px rgba(243, 124, 34, 0.35);
}

.plans-footer {
  text-align: center;
  margin-top: 12px;
}

.plans-footer .btn-ghost {
  border-color: rgba(14, 29, 38, 0.14);
  color: #0f1c24;
  background: rgba(255, 255, 255, 0.82);
}

.plans-footer .btn-ghost:hover {
  border-color: rgba(14, 29, 38, 0.32);
}

.plan-white {
  padding: 110px 0;
  background: linear-gradient(140deg, rgba(14, 29, 38, 0.92), rgba(12, 50, 70, 0.88));
  color: var(--color-text-light);
}

.plan-white__shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
}

.plan-white__copy {
  background:
    linear-gradient(150deg, rgba(33, 193, 214, 0.16), rgba(243, 124, 34, 0.18)),
    rgba(8, 20, 28, 0.78);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 56px 64px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.36);
  display: grid;
  gap: 26px;
}

.plan-white__badge {
  width: fit-content;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(243, 124, 34, 0.24);
  color: #FFD8B8;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.plan-white__copy h3 {
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  font-weight: 700;
  margin: 0;
}

.plan-white__copy p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}

.plan-white__features {
  display: grid;
  gap: 12px;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.plan-white__features li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(243, 124, 34, 0.8);
  margin-right: 12px;
}

.plan-white__prices {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.plan-white__price {
  padding: 18px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 4px;
  min-width: 165px;
}

.plan-white__price strong {
  font-size: 1.9rem;
  color: #F9B067;
}

.plan-white__price span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.plan-white__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.plan-white__cta .btn-primary {
  background: linear-gradient(120deg, #F37C22, #FF9A3C);
  color: #1A0B00;
  box-shadow: 0 24px 50px rgba(243, 124, 34, 0.32);
}

.plan-white__cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(243, 124, 34, 0.4);
}

.plan-white__cta .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: var(--color-text-light);
  background: rgba(12, 28, 38, 0.4);
}

.plan-white__cta .btn-ghost:hover {
  border-color: rgba(33, 193, 214, 0.46);
}

.plans-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 20, 0.78);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.plans-modal.open {
  display: flex;
}

.plans-modal__content {
  width: min(960px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #102330, #0E1D26 85%);
  border-radius: 24px;
  padding: 48px;
  color: var(--color-text-light);
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.plans-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.6rem;
  cursor: pointer;
}

.plans-modal__header {
  margin-bottom: 28px;
}

.plans-modal__header h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.plans-modal__header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.plans-modal__grid {
  display: grid;
  gap: 18px;
}

.plans-modal__item {
  background: rgba(9, 22, 30, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 24px;
  display: grid;
  gap: 12px;
}

.plans-modal__item h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.plans-modal__item .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #21C1D6;
}

.plans-modal__item ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.plans-modal__item .btn-primary {
  justify-self: flex-start;
}

/* Partners & Investidores */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  background: linear-gradient(145deg, rgba(9, 25, 34, 0.92), rgba(15, 40, 52, 0.88));
  border-radius: 26px;
  padding: 42px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 22px;
}

.partner-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.partner-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.partner-badge {
  width: fit-content;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(243, 124, 34, 0.16);
  color: #F9B067;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.partner-card .plan-features {
  gap: 14px;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 6px;
}

.partner-card .plan-features li {
  gap: 12px;
  line-height: 1.5;
}

.partner-card .btn-ghost {
  margin-top: 8px;
  justify-self: flex-start;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 26, 0.72);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2200;
}

.quiz-modal.open {
  display: flex;
}

.quiz-modal__content {
  position: relative;
  width: min(760px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(9, 25, 34, 0.35);
  padding: 36px 38px;
}

.quiz-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(14, 29, 38, 0.6);
  cursor: pointer;
}

.quiz-modal__close:hover {
  color: rgba(14, 29, 38, 0.9);
}

/* CTA final */
.cta-final {
  padding: 140px 0;
  background: radial-gradient(circle at top right, rgba(243, 124, 34, 0.18), transparent 60%),
              linear-gradient(135deg, #0E1D26 10%, #143141 50%, #1F4F5E 100%);
  color: var(--color-text-light);
}

.cta-final .cta-shell {
  width: min(1080px, 92vw);
  margin: 0 auto;
  background: rgba(9, 20, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 60px 58px;
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 32px;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-final p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.74);
  max-width: 720px;
  margin: 0 auto;
}

.cta-final .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-final .cta-actions .btn-primary {
  font-size: 1rem;
  padding: 18px 32px;
}

.cta-final .cta-actions .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--color-text-light);
  background: rgba(14, 29, 38, 0.35);
}

.cta-final .cta-actions .btn-ghost:hover {
  border-color: rgba(33, 193, 214, 0.5);
}

.cta-final .cta-footnote {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.quiz-shell {
  width: min(960px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.quiz-shell header {
  text-align: center;
}

.quiz-shell header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

.quiz-shell header p {
  font-size: 1rem;
}

.quiz-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0E1D26;
  margin-bottom: 8px;
}

.quiz-inputs {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.quiz-inputs input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(14, 29, 38, 0.12);
  font-size: 0.95rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.quiz-inputs input:focus {
  border-color: #21C1D6;
  box-shadow: 0 0 0 4px rgba(33, 193, 214, 0.18);
  outline: none;
}

.quiz-option {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(14, 29, 38, 0.12);
  background: #ffffff;
  color: #0E1D26;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.quiz-option:hover {
  border-color: rgba(243, 124, 34, 0.38);
  background: rgba(243, 124, 34, 0.08);
  transform: translateX(4px);
}

.quiz-progress {
  width: 100%;
  height: 6px;
  background: rgba(14, 29, 38, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 24px;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(120deg, #F37C22, #FF9A3C);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.quiz-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(14, 29, 38, 0.08);
  box-shadow: 0 30px 80px rgba(14, 29, 38, 0.14);
  padding: 40px;
  display: grid;
  gap: 28px;
}

.quiz-step {
  display: grid;
  gap: 22px;
}

.quiz-options {
  display: grid;
  gap: 12px;
}

.quiz-feedback {
  display: none;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(33, 193, 214, 0.18);
  color: #0a3b45;
  font-weight: 600;
  text-align: center;
}

.quiz-feedback.visible {
  display: block;
}

.faq-section {
  padding: 120px 0;
  background:
    radial-gradient(180% 120% at 0% 0%, rgba(33, 193, 214, 0.14), transparent 60%),
    radial-gradient(140% 90% at 100% 0%, rgba(243, 124, 34, 0.12), transparent 55%),
    linear-gradient(180deg, #08141b 0%, #0d1f2a 100%);
  color: rgba(255, 255, 255, 0.88);
}

.faq-shell {
  width: min(1020px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.faq-header {
  text-align: center;
  display: grid;
  gap: 18px;
}

.faq-header span {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(143, 233, 245, 0.9);
}

.faq-header h2 {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 700;
  margin: 0;
}

.faq-header p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 22px;
}

.faq-item {
  background: linear-gradient(130deg, rgba(8, 24, 33, 0.92), rgba(11, 28, 38, 0.84));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.faq-toggle {
  cursor: pointer;
  width: 100%;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
}

.faq-toggle__title {
  display: grid;
  gap: 6px;
}

.faq-toggle__subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.faq-toggle__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(143, 233, 245, 0.45);
  display: grid;
  place-items: center;
  color: rgba(143, 233, 245, 0.9);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle__icon {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  padding: 0 32px 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.open .faq-body {
  display: block;
}

.faq-footnote {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #EAEFF2 0%, #f5f8fa 100%);
  color: #0E1D26;
}

.gallery-shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 52px;
}

.gallery-header {
  text-align: center;
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}

.gallery-badge {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(33, 193, 214, 0.14);
  color: #1a8a9a;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.gallery-header h2 {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #0E1D26;
}

.gallery-header p {
  color: rgba(14, 29, 38, 0.72);
  font-size: 1.05rem;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.gallery-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14, 29, 38, 0.12);
  border: 1px solid rgba(14, 29, 38, 0.08);
  transition: all 0.4s ease;
  display: grid;
  grid-template-rows: 1fr auto;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(14, 29, 38, 0.18);
  border-color: rgba(33, 193, 214, 0.3);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.gallery-caption {
  padding: 24px;
  display: grid;
  gap: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-top: 1px solid rgba(14, 29, 38, 0.06);
}

.gallery-caption strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0E1D26;
}

.gallery-caption span {
  font-size: 0.9rem;
  color: rgba(14, 29, 38, 0.65);
}

.gallery-footer {
  text-align: center;
  padding: 32px 24px;
  background: rgba(33, 193, 214, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(33, 193, 214, 0.2);
}

.gallery-footer p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0E1D26;
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(243, 124, 34, 0.14), transparent 60%),
    radial-gradient(120% 90% at 100% 0%, rgba(33, 193, 214, 0.12), transparent 55%),
    linear-gradient(180deg, #0a151d 0%, #0d1f2a 100%);
  color: rgba(255, 255, 255, 0.88);
}

.contact-shell {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 52px;
}

.contact-header {
  text-align: center;
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}

.contact-badge {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(243, 124, 34, 0.14);
  color: #F9B067;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-header h2 {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}

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

.contact-info__block h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.92);
}

.contact-info__block p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.contact-channels {
  display: grid;
  gap: 16px;
}

.contact-channel {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(9, 25, 34, 0.88), rgba(15, 40, 52, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.contact-channel:hover {
  border-color: rgba(243, 124, 34, 0.4);
  background: linear-gradient(145deg, rgba(15, 30, 40, 0.92), rgba(20, 45, 58, 0.88));
  transform: translateX(4px);
}

.contact-channel__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(243, 124, 34, 0.12);
  display: grid;
  place-items: center;
  color: #F9B067;
  flex-shrink: 0;
}

.contact-channel__content {
  display: grid;
  gap: 4px;
}

.contact-channel__content strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.contact-channel__content span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-info__footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
}

.contact-info__footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

.contact-info__footer strong {
  color: rgba(255, 255, 255, 0.85);
}

.contact-form-wrapper {
  background: linear-gradient(145deg, rgba(9, 25, 34, 0.92), rgba(15, 40, 52, 0.88));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  padding: 42px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form__group {
  display: grid;
  gap: 8px;
}

.contact-form__group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 29, 38, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: rgba(243, 124, 34, 0.5);
  background: rgba(14, 29, 38, 0.6);
  box-shadow: 0 0 0 4px rgba(243, 124, 34, 0.08);
  outline: none;
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__submit {
  margin-top: 8px;
  justify-self: start;
  min-width: 200px;
}

.contact-form__feedback {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.contact-form__feedback.success {
  display: block;
  background: rgba(33, 193, 214, 0.16);
  color: #8fe9f5;
  border: 1px solid rgba(33, 193, 214, 0.3);
}

.contact-form__feedback.error {
  display: block;
  background: rgba(243, 124, 34, 0.16);
  color: #F9B067;
  border: 1px solid rgba(243, 124, 34, 0.3);
}

.about-section {
  padding: 120px 0;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(33, 193, 214, 0.16), transparent 60%),
    radial-gradient(120% 90% at 100% 0%, rgba(243, 124, 34, 0.12), transparent 55%),
    linear-gradient(180deg, #0B1B24 0%, #0F2430 100%);
  color: rgba(255, 255, 255, 0.88);
}

.about-shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 56px;
}

.about-intro {
  display: grid;
  gap: 22px;
  text-align: center;
}

.about-badge {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(33, 193, 214, 0.14);
  color: #8fe9f5;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-intro h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
}

.about-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 780px;
  margin: 0 auto;
}

.about-metrics {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-metric {
  min-width: 180px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 6px;
  text-align: center;
}

.about-metric strong {
  font-size: 1.9rem;
  font-weight: 700;
  color: #F9B067;
}

.about-panels {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-panel {
  background:
    linear-gradient(145deg, rgba(9, 25, 34, 0.92), rgba(15, 40, 52, 0.88));
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  padding: 36px;
  display: grid;
  gap: 18px;
}

.about-panel h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
}

.about-list {
  display: grid;
  gap: 10px;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.about-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(243, 124, 34, 0.65);
}

.about-timeline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 18px;
}

.about-timeline h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.about-timeline ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.about-timeline li span {
  font-weight: 600;
  color: #8fe9f5;
  margin-right: 10px;
}

.about-founders {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.about-founders blockquote {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.about-signature {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a151d 0%, #08121a 100%);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-grid {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(243, 124, 34, 0.12);
  border-color: rgba(243, 124, 34, 0.3);
  color: #F9B067;
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F9B067;
}

.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 18, 26, 0.6);
}

.footer-bottom-grid {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-copy p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-dev {
  font-size: 0.85rem;
}

.footer-dev a {
  color: #8fe9f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-dev a:hover {
  color: #F9B067;
}

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

.footer-legal a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsivo */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

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

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

  .cta-final .cta-shell {
    padding: 48px 36px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 15px;
  }

  /* Mobile Menu */
  .nav-toggle {
    display: flex;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #0E1D26 0%, #0a151d 100%);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-wrapper.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a {
    display: block;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
  }

  .nav-menu a:hover {
    color: var(--color-highlight);
    padding-left: 8px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav-login,
  .nav-cta {
    width: 100%;
    text-align: center;
    display: block;
  }

  /* Overlay quando menu está aberto */
  .nav-wrapper.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 300px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
  }

  .hero-copy {
    padding: 32px;
  }

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

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

  .plan-card.highlight {
    transform: none;
  }

  section {
    padding: 80px 0;
  }

  .plans-modal__content {
    padding: 36px 24px;
  }

  .quiz-card {
    padding: 32px 24px;
  }

  .cta-final .cta-shell {
    padding: 42px 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-item img {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding: 26px;
  }

  .hero-visual {
    padding: 40px 28px;
  }

  .mockup-card {
    gap: 12px;
  }

  .plan-price strong {
    font-size: 2rem;
  }

  .cta-final .cta-actions {
    flex-direction: column;
  }
}
