/* === BLOCO: COMUM === */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

:root {
  /* Paleta do projeto */
  --color-primary:       #9C79FF;
  --color-primary-hover: #8204B6;
  --color-secondary:     #8204B6;
  --color-accent:        #9C79FF;
  --color-text:          #f0f0ff;
  --color-text-muted:    #94a3b8;
  --color-bg:            #04051F;
  --color-bg-alt:        #0B0C43;
  --color-bg-card:       rgba(156, 121, 255, 0.05);
  --color-bg-card-hover: rgba(156, 121, 255, 0.10);
  --color-border:        rgba(156, 121, 255, 0.18);
  --color-success:       #10b981;
  --color-warning:       #f59e0b;
  --color-error:         #ef4444;

  /* Tipografia */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  48px;
  --space-2xl: 96px;

  /* Border radius — bem arredondado conforme briefing */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm:   0 1px 2px rgba(4, 5, 31, 0.6);
  --shadow-md:   0 4px 12px rgba(4, 5, 31, 0.5);
  --shadow-lg:   0 12px 32px rgba(4, 5, 31, 0.6);
  --shadow-xl:   0 24px 64px rgba(4, 5, 31, 0.7);
  --shadow-glow:    0 0 32px rgba(156, 121, 255, 0.35);
  --shadow-glow-lg: 0 0 64px rgba(156, 121, 255, 0.25);

  /* Transições */
  --transition-fast: .15s ease;
  --transition-base: .25s ease;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  line-height: 1.15em;
  text-wrap: balance;
}

p {
  margin: 0 0 var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Layout base */
.section {
  width: 100%;
  position: relative;
}

.content-wrapper {
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 1472px) {
  .section         { padding: 96px 0; }
  .content-wrapper { width: 1280px; }
}

@media (min-width: 1025px) and (max-width: 1471px) {
  .section         { padding: 96px 0; }
  .content-wrapper { width: 961px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section         { padding: 72px 0; }
  .content-wrapper { width: 656px; }
}

@media (min-width: 320px) and (max-width: 767px) {
  .section { padding: 56px 0; }
  .content-wrapper {
    max-width: 359px;
    width: 100%;
    padding: 0 8px;
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2em;
  cursor: pointer;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  text-decoration: none;
  border: 2px solid transparent;
  user-select: none;
  font-family: var(--font-heading);
}

.btn i { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #04051F;
  transform: translateY(-2px);
}

.btn-glow {
  box-shadow: var(--shadow-glow);
}
.btn-glow:hover {
  box-shadow: var(--shadow-glow-lg);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.btn[disabled],
.btn.is-disabled {
  opacity: .5;
  pointer-events: none;
}

/* Section header */
.section-header {
  text-align: center;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(156, 121, 255, 0.12);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  border: 1px solid rgba(156, 121, 255, 0.3);
}

.section-label--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7em;
  text-wrap: pretty;
  max-width: 680px;
  margin: 0 auto;
}

/* Utilitários */
.text-gradient {
  background: linear-gradient(135deg, #9C79FF 0%, #c084fc 60%, #8204B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* WhatsApp Float */
.whatsapp-float {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
}

/* Form success state */
.form-success {
  background: var(--color-success);
  color: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  font-family: var(--font-heading);
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="header" === */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 5, 31, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-xl);
}

.logo { flex-shrink: 0; }
.logo__img { height: 36px; width: auto; }

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  font-family: var(--font-heading);
}
.main-nav a:hover { color: var(--color-primary); }

.btn-nav { padding: 10px 22px; font-size: 14px; }

.main-nav .btn-nav,
.main-nav .btn-nav:hover { color: #ffffff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

@media (max-width: 1024px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(4, 5, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    display: none;
  }
  .main-nav.is-open { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav li:last-child a { border-bottom: none; }
  .btn-nav {
    display: inline-flex;
    margin-top: 12px;
    width: auto;
    border-bottom: none !important;
  }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="hero" === */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('Imagens/BG - Home w,d,n.webp') center center / cover no-repeat;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: #8204B6;
  top: -250px;
  right: -180px;
  opacity: 0.28;
}

.hero__orb--2 {
  width: 450px;
  height: 450px;
  background: #9C79FF;
  bottom: -120px;
  left: -80px;
  opacity: 0.15;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(156, 121, 255, 0.1);
  border: 1px solid rgba(156, 121, 255, 0.3);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.hero__badge i { width: 14px; height: 14px; }

.hero__title {
  font-size: 33px;
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 24px;
  max-width: 580px;
  text-wrap: balance;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7em;
  margin-bottom: 36px;
  max-width: 500px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}
.hero__trust-item i {
  color: var(--color-success);
  width: 16px;
  height: 16px;
}

.hero__visual { position: relative; }

.hero__mockup { position: relative; }

.hero__mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-glow-lg), var(--shadow-xl);
}

.hero__stats-card {
  position: absolute;
  background: rgba(4, 5, 31, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  white-space: nowrap;
}
.hero__stats-card i {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero__stats-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-text);
}
.hero__stats-card span {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
}

.hero__stats-card--1 {
  bottom: -20px;
  left: -24px;
  animation: hero-float 3.5s ease-in-out infinite;
}
.hero__stats-card--2 {
  top: 24px;
  right: -28px;
  animation: hero-float 3.5s ease-in-out infinite 1.2s;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 1025px) and (max-width: 1471px) {
  .hero__stats-card--2 { right: -16px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__stats-card--2 { right: -8px; }
}

@media (max-width: 767px) {
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__subtitle { font-size: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .hero__orb--1 { width: 300px; height: 300px; top: -80px; right: -80px; }
  .hero__stats-card--1 { left: 8px; bottom: -12px; }
  .hero__stats-card--2 { right: 8px; top: 12px; }
}

@media (min-width: 300px) and (max-width: 767px) {
  .hero__title { font-size: 30px; }
  .section-header h2 { font-size: 34px; }
  .section-subtitle { font-size: 15px; }
  .hero { background-image: url('Imagens/BG-Celular - Home.webp'); background-size: 500px auto; background-position: top center; padding-top: 310px; }
}

@media (max-width: 358px) {
  .hero__title { font-size: 26px; }
  .section-header h2 { font-size: 28px; }
  .section-subtitle { font-size: 13px; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="dores" === */

.dores {
  background: var(--color-bg-alt);
}

.dores__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dores__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.dores__card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(156, 121, 255, 0.18);
}

.dores__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(156, 121, 255, 0.1);
  border: 1px solid rgba(156, 121, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-primary);
}
.dores__icon i { width: 22px; height: 22px; }

.dores__card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.dores__card p  { font-size: 14px; color: var(--color-text-muted); line-height: 1.6em; }

@media (min-width: 768px) and (max-width: 1024px) {
  .dores__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .dores__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dores__card { padding: 20px 16px; }
  .dores__card h3 { font-size: 15px; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="solucao" === */

.solucao {
  background: #000000;
}

.solucao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solucao__visual img {
  width: 100%;
  border-radius: 20px;
}

.solucao__content .section-label {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.solucao__content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.solucao__text {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7em;
  margin-bottom: 28px;
  text-wrap: pretty;
}

.solucao__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.solucao__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.solucao__bullets i {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .solucao__inner { grid-template-columns: 1fr; gap: 48px; }
  .solucao__content h2 { font-size: 32px; }
}

@media (max-width: 767px) {
  .solucao__inner { grid-template-columns: 1fr; gap: 32px; }
  .solucao__content h2 { font-size: 24px; }
  .solucao__text { font-size: 15px; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="funcionalidades" === */

.funcionalidades {
  background: var(--color-bg-alt);
}

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

.funcionalidades__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}
.funcionalidades__card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(156, 121, 255, 0.2);
}

.funcionalidades__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
    rgba(156, 121, 255, 0.18) 0%,
    rgba(130, 4, 182, 0.18) 100%);
  border: 1px solid rgba(156, 121, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--color-primary);
}
.funcionalidades__icon i { width: 26px; height: 26px; }

.funcionalidades__card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.funcionalidades__card p  { font-size: 14px; color: var(--color-text-muted); line-height: 1.65em; }

@media (min-width: 768px) and (max-width: 1024px) {
  .funcionalidades__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .funcionalidades__grid { grid-template-columns: 1fr; gap: 12px; }
  .funcionalidades__card { padding: 24px 20px; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="como-funciona" === */

.como-funciona {
  background: var(--color-bg);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps__grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg,
    var(--color-primary) 0%,
    var(--color-primary-hover) 100%);
  opacity: 0.25;
  pointer-events: none;
}

.steps__item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.steps__number {
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-primary);
  background: rgba(156, 121, 255, 0.1);
  border: 1px solid rgba(156, 121, 255, 0.3);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  letter-spacing: 0.04em;
}

.steps__content h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.steps__content p  { font-size: 14px; color: var(--color-text-muted); line-height: 1.65em; }

@media (min-width: 768px) and (max-width: 1024px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid::before { display: none; }
}

@media (max-width: 767px) {
  .steps__grid { grid-template-columns: 1fr; gap: 20px; }
  .steps__grid::before { display: none; }
  .steps__item { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .steps__number { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 12px; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="demonstracao" === */

.demonstracao {
  background: linear-gradient(140deg,
    #080943 0%,
    #180530 50%,
    #080943 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.demonstracao__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.demonstracao__inner .section-label {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.demonstracao__inner h2 {
  font-size: 44px;
  margin: 0 0 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.demonstracao__inner p {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  text-wrap: pretty;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .demonstracao__inner h2 { font-size: 36px; }
}

@media (max-width: 767px) {
  .demonstracao__inner h2 { font-size: 24px; }
  .demonstracao__inner p  { font-size: 15px; }
  .demonstracao__inner .btn { width: 100%; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="cadastro" === */

.cadastro {
  background: var(--color-bg);
}

.cadastro__orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #8204B6;
  bottom: -200px;
  right: -100px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
}

.cadastro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cadastro__info .section-label {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.cadastro__info h2 {
  font-size: 44px;
  margin-bottom: 20px;
  text-wrap: balance;
  line-height: 1.15em;
}

.cadastro__lead {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7em;
  margin-bottom: 32px;
}

.cadastro__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cadastro__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.cadastro__benefits i {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Formulário */
.lead-form {
  background: rgba(11, 12, 67, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lead-form__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
  font-family: var(--font-heading);
}

.form-group { margin-bottom: 20px; }

.form-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  transition: border-color 0.2s, background 0.2s;
}

.form-radio-option:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-card-hover);
}

.form-radio-option input[type="radio"] {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-radio-option:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-bg-card-hover);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}
.form-label span { color: var(--color-primary); }

.form-input,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(4, 5, 31, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(148, 163, 184, 0.45); }
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(156, 121, 255, 0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239C79FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { background: #04051F; color: var(--color-text); }

.form-input.field-error,
.form-select.field-error {
  border-color: var(--color-error) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25);
}

.form-privacy {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5em;
}
.form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cadastro__inner { grid-template-columns: 1fr; gap: 48px; }
  .cadastro__info h2 { font-size: 36px; }
}

@media (max-width: 767px) {
  .cadastro__inner { grid-template-columns: 1fr; gap: 40px; }
  .cadastro__info h2 { font-size: 28px; }
  .cadastro__lead { font-size: 15px; }
  .lead-form { padding: 28px 20px; }
  .form-input,
  .form-select { padding: 12px 16px; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="footer" === */

.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 72px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 30px;
  width: auto;
}

.footer__brand p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7em;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(156, 121, 255, 0.08);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}
.footer__social a:hover {
  background: var(--color-primary);
  color: #04051F;
  border-color: var(--color-primary);
}
.footer__social i { width: 18px; height: 18px; }

.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  font-weight: 500;
}
.footer__nav a:hover { color: var(--color-primary); }

.footer__cta p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 767px) {
  .footer { padding: 48px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* === FIM BLOCO === */
