.elementor-9 .elementor-element.elementor-element-a331418{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-9 .elementor-element.elementor-element-381f4e6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-9 .elementor-element.elementor-element-1444935{text-align:center;}.elementor-9 .elementor-element.elementor-element-1444935 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:2.8em;font-weight:900;color:#31CB6B;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-9 .elementor-element.elementor-element-6384619{text-align:center;}.elementor-9 .elementor-element.elementor-element-f4773ca{padding:0px 0px 0px 0px;}.elementor-9 .elementor-element.elementor-element-4dd0fdb{text-align:center;}.elementor-9 .elementor-element.elementor-element-c483dad{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-9 .elementor-element.elementor-element-381f4e6{--content-width:500px;}}/* Start custom CSS for html, class: .elementor-element-848d542 *//* ============ HOW IT WORKS ============ */
.how {
  padding: 80px 0;
  display: flex;
  align-items: center; /* Centraliza a seção inteira na tela (vertical) */
  min-height: 100vh;
}
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Duas colunas lado a lado */
  gap: 60px;
  align-items: start;
}
.how-header {
  position: sticky; /* Mantém o título fixo enquanto os passos rolam */
  top: 100px; 
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(180deg, var(--border-2), var(--border-1));
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.step-num.emerald {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  box-shadow: var(--shadow-emerald);
}
.step-num.purple {
  background: linear-gradient(135deg, var(--sidebar-start), var(--sidebar-end));
  box-shadow: 0 8px 24px rgba(118, 75, 162, .28);
}
.step-body {
  padding-top: 4px;
}
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.step-tag.plat { background: var(--ok-bg); color: var(--ok-fg); }
.step-tag.wpp  { background: #dcfce7; color: #15803d; }
.step-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}
/* Limites de largura (max-width) removidos para não quebrar o texto à toa */
.section-title { font-size: 36px; font-weight: 800; letter-spacing: -1px; color: var(--text-1); max-width: 100%; line-height: 1.2; }
.section-lead { font-size: 18px; color: var(--text-3); max-width: 100%; margin-top: 16px; }
.step-body p { font-size: 16px; color: var(--text-3); max-width: 100%; }

.how-note {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(166, 86, 247, .08), rgba(49, 203, 107, .08));
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.how-note .ic { font-size: 26px; }
.how-note p { font-size: 16px; color: var(--text-2); max-width: 100%; }
.how-note strong { color: var(--header); }

/* ==== IMPORTANTE: REGRAS PARA O MOBILE DESTA SEÇÃO ==== */
/* (Você pode colocar isso no final do seu CSS junto com os outros @media) */
@media (max-width: 900px) {
  .how-layout {
    grid-template-columns: 1fr; /* Empilha: Título em cima, Passos em baixo */
    gap: 40px;
  }
  .how-header {
    position: relative; /* Tira o efeito "fixo" que seria ruim em celular */
    top: 0;
  }
}
@media (max-width: 760px) {
  .step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
  .step-num {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }
  .step:not(:last-child)::after {
    left: 25px;
    top: 52px;
    bottom: -24px;
  }
  .how-note {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    height: auto !important; /* O !important força o fundo a crescer e acompanhar o conteúdo */
    min-height: 68px;        /* Mantém a altura mínima original */
    padding-top: 16px;
    padding-bottom: 16px;
    flex-direction: column;
    padding-bottom: 15px;
    
     /* Empilha o logo e o botão */
    gap: 16px;               /* Dá um respiro entre o logo e o botão */
  }

  .nav-cta {
    width: 100%;             /* Faz o botão preencher o espaço lateral de forma elegante */
    text-align: center;
    box-sizing: border-box; 
   
    /* Evita que o botão vaze para os lados */
  }
}


/* --- Estilos Base para o Logotipo (Desktops) --- */
.brand-logo {
  width: 200px;
  height: auto;
  display: block;
  padding-top: 15px;
}

/* --- Ajustes de Responsividade --- */

/* Para celulares e telas pequenas (Abaixo de 600px) */
@media (max-width: 600px) {
  .nav-inner {
    height: auto;          /* Permite que o container cresça se necessário */
    padding-top: 12px;     /* Espaçamento interno superior */
    padding-bottom: 12px;  /* Espaçamento interno inferior */
    gap: 12px;             /* Garante um espaço mínimo entre a logo e o botão */
  }

  .brand-logo {
    width: 140px;          /* Diminui um pouco o tamanho do logo em telas pequenas */
  }

  .nav-cta {
    padding: 8px 14px;     /* Reduz levemente o tamanho do botão para caber na mesma linha */
    font-size: 13px;       /* Ajusta o texto do botão */
    white-space: nowrap;   /* Impede que o texto "Quero participar" quebre em duas linhas */
  }
}

/* Para celulares muito pequenos (Abaixo de 360px) onde realmente não há espaço lado a lado */
@media (max-width: 360px) {
  .nav-inner {
    flex-direction: column; /* Empilha o logo e o botão centralizados */
    text-align: center;
  }
  
  .nav-cta {
    width: 100%;            /* O botão passa a ocupar a largura total disponível */
    text-align: center;
  }
}

/* ============ VARIABLES & BASE ============ */
:root {
  --primary-start: #31cb6b;
  --primary-end: #088764;
  --sidebar-start: #a656f7;
  --sidebar-end: #764ba2;
  --header: #5a2f83;
  --page-bg: #f4f5f8;
  --card-1: #f9fafb;
  --card-2: #f8fafc;
  --btn-sec: #f3f4f6;
  --border-1: #e5e7eb;
  --border-2: #d1d5db;
  --border-4: #ebedf2;
  --text-1: #1f2937;
  --text-2: #374151;
  --text-3: #475569;
  --text-4: #64748b;
  --text-5: #6b7280;
  --ok-bg: #d1fae5;
  --ok-fg: #065f46;
  --chip-1: #eef2ff;
  --chip-2: #e0e7ff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-md: 0 12px 32px rgba(16, 24, 40, .12);
  --shadow-emerald: 0 8px 24px rgba(8, 135, 100, .28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 248, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-tile {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--sidebar-start), var(--sidebar-end));
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-tile svg {
  width: 24px;
  height: 21px;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--text-1);
}

.brand-name .z {
  color: #088764;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-emerald);
  transition: transform .15s;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(166, 86, 247, .18), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(49, 203, 107, .14), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--chip-2);
  color: #4338ca;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #088764;
  box-shadow: 0 0 0 0 rgba(8, 135, 100, .5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(8, 135, 100, .5); }
  70% { box-shadow: 0 0 0 10px rgba(8, 135, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(8, 135, 100, 0); }
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 780px;
  position: relative;
}

.hero h1 .grad {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.sub {
  font-size: 20px;
  color: var(--text-3);
  max-width: 620px;
  margin-top: 24px;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: var(--shadow-emerald);
  transition: transform .15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--text-2);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  border: 1px solid var(--border-2);
  transition: transform .15s;
}

.btn-ghost:hover {
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-4);
  font-size: 14px;
  position: relative;
}

.hero-trust strong {
  color: var(--text-2);
}

/* ============ PROBLEM ============ */
.problem {
  padding: 70px 0;
  background: #fff;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}

.eyebrow {
  color: #088764;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-1);
  max-width: 680px;
  line-height: 1.2;
}

.section-lead {
  font-size: 18px;
  color: var(--text-3);
  max-width: 640px;
  margin-top: 16px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.problem-card {
  background: var(--card-1);
  border: 1px solid var(--border-4);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.problem-card .ic {
  font-size: 30px;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-3);
}

/* ============ HOW IT WORKS ============ */
.how {
  padding: 80px 0;
}

.steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom:-24px;
  width: 2px;
  background: linear-gradient(180deg, var(--border-2), var(--border-1));
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.step-num.emerald {
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  box-shadow: var(--shadow-emerald);
}

.step-num.purple {
  background: linear-gradient(135deg, var(--sidebar-start), var(--sidebar-end));
  box-shadow: 0 8px 24px rgba(118, 75, 162, .28);
}

.step-body {
  padding-top: 4px;
}

.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.step-tag.plat {
  background: var(--ok-bg);
  color: var(--ok-fg);
}

.step-tag.wpp {
  background: #dcfce7;
  color: #15803d;
}

.step-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 16px;
  color: var(--text-3);
  max-width: 560px;
}

.how-note {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(166, 86, 247, .08), rgba(49, 203, 107, .08));
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-note .ic {
  font-size: 26px;
}

.how-note p {
  font-size: 16px;
  color: var(--text-2);
}

.how-note strong {
  color: var(--header);
}

/* ============ BENEFITS ============ */
.benefits {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border-1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  transition: background .15s;
}

.benefit:hover {
  background: var(--card-2);
}

.benefit .check {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ok-bg);
  color: var(--ok-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.benefit h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}

.benefit p {
  font-size: 15px;
  color: var(--text-3);
}

/* ============ TURMA ZERO / SCARCITY ============ */
.scarcity {
  padding: 80px 0;
}

.scarcity-box {
  background: linear-gradient(135deg, var(--sidebar-start), var(--sidebar-end));
  border-radius: 24px;
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.scarcity-box::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(49, 203, 107, .25), transparent 70%);
}

.scarcity-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.scarcity-box h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  max-width: 600px;
  position: relative;
}

.scarcity-box p {
  font-size: 18px;
  opacity: .92;
  max-width: 560px;
  margin-top: 16px;
  position: relative;
}

.scarcity-perks {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.perk .pk-ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ============ FORM ============ */
.signup {
  padding: 80px 0 100px;
}

.signup-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 24px;
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.signup-card .eyebrow {
  text-align: center;
}

.signup-card h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 12px;
}

.signup-card p.lead {
  font-size: 17px;
  color: var(--text-3);
  margin-bottom: 32px;
}

/* ===== FORM PLACEHOLDER ===== */
.form-placeholder {
  border: 2px dashed var(--border-2);
  border-radius: var(--radius);
  padding: 40px 24px;
  background: var(--card-2);
  color: var(--text-4);
}

.form-placeholder .ph-tag {
  display: inline-block;
  background: var(--chip-2);
  color: #4338ca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.form-placeholder p {
  font-size: 14px;
  line-height: 1.6;
}

.form-placeholder code {
  background: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-1);
  font-size: 13px;
  color: var(--header);
}

.form-demo {
  margin-top: 28px;
  text-align: left;
  opacity: .55;
  pointer-events: none;
}

.form-demo label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 6px;
}

.form-demo .fld {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: var(--text-5);
  margin-bottom: 16px;
}

.form-demo .fake-btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
}

.signup-fine {
  font-size: 13px;
  color: var(--text-4);
  margin-top: 20px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--text-1);
  color: #fff;
  padding: 48px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .ft-name {
  font-size: 20px;
  font-weight: 800;
}

.footer-brand .ft-name .z {
  color: #31cb6b;
}

.footer-tag {
  font-style: italic;
  color: #9aa5b4;
  font-size: 15px;
}

.footer-copy {
  color: #64748b;
  font-size: 13px;
  margin-top: 24px;
  text-align: center;
  border-top: 1px solid #1f2d3d;
  padding-top: 24px;
}

/* ============ MEDIA QUERIES (RESPONSIVIDADE) ============ */

/* Tablets e Telas Médias (Desktops pequenos) */
@media (max-width: 900px) {
  .hero {
    padding: 60px 0;
    text-align: center;
  }
  .hero h1 {
    font-size: 44px;
    margin: 0 auto;
  }
  .hero p.sub {
    margin: 24px auto 0;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
}

/* Tablets e Celulares Maiores */
@media (max-width: 760px) {
  .section-title {
    font-size: 30px;
  }
  .section-lead {
    font-size: 16px;
  }
  
  /* Grids passam de colunas lado a lado para empilhadas */
  .problem-grid, 
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Componente de Passos (How It Works) */
  .step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
  .step-num {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }
  .step:not(:last-child)::after {
    left: 25px;
    top: 52px;
    bottom: -24px;
  }
  
  /* Nota explicativa */
  .how-note {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
}

/* Celulares e Dispositivos Pequenos */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  
  /* Ajustes finos do topo da página (Nav e Hero) */
  .nav-inner {
    height: 60px;
  }
  .brand-name {
    font-size: 19px;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  .hero p.sub {
    font-size: 16px;
  }
  
  /* Botões adaptativos em mobile ocupando largura inteira */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, 
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  /* Seção de Escassez / Caixa de Destaque */
  .scarcity-box {
    padding: 36px 20px;
    border-radius: 16px;
  }
  .scarcity-box h2 {
    font-size: 26px;
  }
  .scarcity-box p {
    font-size: 16px;
  }
  .scarcity-perks {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Card do Formulário de Inscrição */
  .signup-card {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .signup-card h2 {
    font-size: 26px;
  }
  .signup-card p.lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .form-placeholder {
    padding: 24px 16px;
  }
  
  /* Rodapé */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}/* End custom CSS */