/* ============================================================
   Bruvo — Landing Page Styles
   ============================================================ */

/* ── Reset & Variáveis ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #080c08;
  --surface:    #0f140f;
  --card:       #141a14;
  --card2:      #181f18;
  --green:      #b8f542;
  --green-dim:  #7ab029;
  --text:       #e4ede4;
  --muted:      #637063;
  --border:     #1c261c;
  --orange:     #f97316;
  --blue:       #60a5fa;
  --red:        #ef4444;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Animações ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Divisor ─────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Wrappers de layout ──────────────────────────────────── */
.hero-wrapper {
  border-bottom: 1px solid var(--border);
}

.stats-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.footer-wrapper {
  border-top: 1px solid var(--border);
}

/* ── Navegação ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: rgba(8, 12, 8, 0.97);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 1.4rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-pill {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
}

.nav-login {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.nav-login:hover {
  color: var(--text);
  border-color: rgba(184, 245, 66, 0.3);
}

.nav-cta {
  background: var(--green);
  color: #080c08;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #ceff5e;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 8rem 2.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.glow-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(184, 245, 66, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  top: 60px;
  left: -100px;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 245, 66, 0.07);
  border: 1px solid rgba(184, 245, 66, 0.2);
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.5s ease both;
}

.bdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

h1 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.5s 0.08s ease both;
}

h1 .accent {
  color: var(--green);
  display: block;
}

h1 .sub {
  color: var(--muted);
  font-size: 0.5em;
  display: block;
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.4;
}

.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 430px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  animation: fadeUp 0.5s 0.14s ease both;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 400;
}

/* Notificação simulada */
.notif-preview {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: fadeUp 0.5s 0.2s ease both;
  max-width: 420px;
}

.notif-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.notif-content {
  flex: 1;
}

.notif-app {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.notif-app::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  display: inline-block;
}

.notif-text {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.5;
}

.notif-time {
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Tags simples */
.simple-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.5s 0.24s ease both;
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.stag.hi {
  border-color: rgba(184, 245, 66, 0.2);
  color: var(--green);
}

/* Botões */
.cta-group {
  animation: fadeUp 0.5s 0.28s ease both;
}

.btn-primary {
  background: var(--green);
  color: #080c08;
  border: none;
  padding: 0.9rem 1.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover  { background: #ceff5e; }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.9rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
}

.btn-secondary:hover {
  border-color: rgba(184, 245, 66, 0.3);
  color: var(--text);
}

.cta-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── Telas mockup (hero direita) ─────────────────────────── */
.screens-stack {
  position: relative;
  height: 580px;
  animation: fadeUp 0.5s 0.12s ease both;
}

.screen {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.screen-chat {
  width: 228px;
  right: 10px;
  top: 0;
  z-index: 3;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(184, 245, 66, 0.06);
}

.screen-dash {
  width: 255px;
  left: 0;
  top: 55px;
  z-index: 2;
  transform: rotate(-3deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.screen-bike {
  width: 220px;
  right: 5px;
  bottom: 0;
  z-index: 4;
  transform: rotate(1.5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Cabeçalho das telas mockup */
.sh {
  padding: 0.72rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
}

.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.sdot--orange { background: var(--orange); }
.sdot--pulse  { animation: pulse 2s infinite; }

.stitle {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Chat */
.chat-body {
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cmsg {
  padding: 0.52rem 0.68rem;
  border-radius: 10px;
  font-size: 0.68rem;
  line-height: 1.45;
  max-width: 92%;
  opacity: 0;
  animation: msgIn 0.35s ease forwards;
}

.cmsg.coach {
  background: var(--card2);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.cmsg.user {
  background: rgba(184, 245, 66, 0.1);
  border: 1px solid rgba(184, 245, 66, 0.18);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.cmsg:nth-child(1) { animation-delay: 0.9s; }
.cmsg:nth-child(2) { animation-delay: 1.7s; }
.cmsg:nth-child(3) { animation-delay: 2.5s; }
.cmsg:nth-child(4) { animation-delay: 3.3s; }

.mpill {
  display: inline-block;
  background: rgba(184, 245, 66, 0.1);
  border: 1px solid rgba(184, 245, 66, 0.2);
  color: var(--green);
  font-size: 0.58rem;
  padding: 0.08rem 0.32rem;
  border-radius: 4px;
  margin: 0.08rem;
}

/* Dashboard */
.dash-body { padding: 0.8rem; }

.dash-row {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.dash-m {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.45rem 0.55rem;
  text-align: center;
}

.dash-m .v {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.dash-m .l {
  font-size: 0.52rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.18rem;
}

.dash-m .v--green  { color: var(--green); }
.dash-m .v--orange { color: var(--orange); }
.dash-m .v--blue   { color: var(--blue); }

.clbl {
  font-size: 0.58rem;
  color: var(--muted);
  margin-bottom: 0.28rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Bike */
.bike-body { padding: 0.7rem; }

.bike-hdr {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.bike-icon { font-size: 1rem; }
.bike-name { font-size: 0.72rem; font-weight: 500; }
.bike-km   { font-size: 0.6rem; color: var(--muted); margin-left: auto; }

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.comp {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.45rem 0.6rem;
}

.comp-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.comp-name { font-size: 0.65rem; font-weight: 500; }

.comp-st {
  font-size: 0.58rem;
  padding: 0.08rem 0.35rem;
  border-radius: 3px;
  font-weight: 500;
}

.comp-st.ok    { background: rgba(184, 245, 66, 0.12); color: var(--green); }
.comp-st.warn  { background: rgba(249, 115, 22, 0.12);  color: var(--orange); }
.comp-st.alert { background: rgba(239, 68, 68, 0.12);   color: var(--red); }

.comp-bw {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  height: 3px;
  overflow: hidden;
  margin-bottom: 0.18rem;
}

.comp-b { height: 100%; border-radius: 3px; }
.comp-b.ok    { background: var(--green); }
.comp-b.warn  { background: var(--orange); }
.comp-b.alert { background: var(--red); }

.comp-det {
  display: flex;
  justify-content: space-between;
  font-size: 0.56rem;
  color: var(--muted);
}

/* ── Stats ───────────────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.25rem 2.5rem;
}

.stat .n {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 2rem;
  color: var(--green);
  letter-spacing: -0.03em;
  display: block;
}

.stat .l {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Seções genéricas ────────────────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.section--features {
  padding-top: 4rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2.75rem;
}

.section-title--sm-gap {
  margin-bottom: 2rem;
}

/* ── Manifesto ───────────────────────────────────────────── */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-left h2 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.manifesto-left h2 em {
  font-style: normal;
  color: var(--green);
}

.manifesto-left p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 380px;
}

.manifesto-left p + p {
  margin-top: 0.75rem;
}

.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contrast-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contrast-list .no {
  font-size: 0.76rem;
  color: var(--muted);
  text-decoration: line-through;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.contrast-list .yes {
  font-size: 0.76rem;
  color: var(--text);
  padding: 0.5rem 0.75rem;
  background: rgba(184, 245, 66, 0.05);
  border: 1px solid rgba(184, 245, 66, 0.12);
  border-radius: 6px;
}

.contrast-list .yes::before {
  content: '✓ ';
  color: var(--green);
}

/* ── Passos ──────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.7rem;
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: rgba(184, 245, 66, 0.28);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 2.4rem;
  color: #b8f542;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.step h3 {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.int-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.2rem 0.5rem;
  font-size: 0.63rem;
  color: var(--muted);
  margin-top: 0.55rem;
}

.int-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Features ────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition: border-color 0.3s;
}

.feat:hover {
  border-color: rgba(184, 245, 66, 0.22);
}

.feat-icon {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.feat h3 {
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 0.32rem;
}

.feat p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
}

.feat.soon {
  border-style: dashed;
  border-color: rgba(184, 245, 66, 0.12);
}

.feat.soon h3::after {
  content: ' · em breve';
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── Preço ───────────────────────────────────────────────── */
.price-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.price-card {
  background: var(--card);
  border: 1px solid rgba(184, 245, 66, 0.2);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: 'BETA';
  position: absolute;
  top: 1.1rem;
  right: -1.8rem;
  background: var(--green);
  color: #080c08;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.28rem 2.5rem;
  transform: rotate(35deg);
}

.price-amount {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 3.2rem;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-amount .cur { font-size: 1.1rem; color: var(--muted); }
.price-amount .per { font-size: 0.95rem; color: var(--muted); }

.price-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.28rem;
  margin-bottom: 1.6rem;
}

.price-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.price-perks li {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.price-perks li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.price-text h2 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.price-text h2 em {
  font-style: normal;
  color: var(--green);
}

.price-text p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

.price-beta-note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Build section ───────────────────────────────────────── */
.build-section {
  background: linear-gradient(135deg, rgba(184, 245, 66, 0.04), rgba(184, 245, 66, 0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.build-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.build-left h2 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.build-left h2 em {
  font-style: normal;
  color: var(--green);
}

.build-left p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.build-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.build-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: border-color 0.2s;
}

.build-card:hover {
  border-color: rgba(184, 245, 66, 0.2);
}

.build-card-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.build-card h4 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.build-card p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(184, 245, 66, 0.2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  text-align: left;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q:hover { color: var(--green); }

.faq-icon {
  color: var(--muted);
  font-size: 1rem;
  transition: transform 0.25s, color 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0.9rem 1.25rem 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-a-inner a {
  color: var(--green);
  text-decoration: none;
}

/* ── CTA final ───────────────────────────────────────────── */
.cta-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(184, 245, 66, 0.04) 0%, transparent 100%);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 5.5rem 2.5rem;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cta-inner h2 em {
  font-style: normal;
  color: var(--green);
}

.cta-inner p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.cta-btn-center {
  margin: 0 auto;
  display: inline-flex;
}

/* ── Rodapé ──────────────────────────────────────────────── */
footer {
  padding: 1.6rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

footer p { font-size: 0.73rem; color: var(--muted); }

.footer-logo {
  font-family: 'Dela Gothic One', sans-serif;
  color: var(--green);
  font-size: 1.05rem;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
}

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover { color: var(--text); }

.modal-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.modal-header h3 em {
  font-style: normal;
  color: var(--green);
}

.modal-header p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.modal-body { padding: 1.5rem 2rem 2rem; }

/* Formulário */
.form-group    { margin-bottom: 1.1rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.form-label .opt {
  color: var(--muted);
  font-weight: 300;
}

.form-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: var(--muted); }
.form-input:focus         { border-color: var(--green-dim); }

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.radio-option input,
.checkbox-option input {
  accent-color: var(--green);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.radio-option span,
.checkbox-option span {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

.radio-option:hover span,
.checkbox-option:hover span {
  color: var(--text);
}

.form-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.form-note-sm {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.form-note-sm--center {
  text-align: center;
  margin-top: 0.75rem;
}

.modal-submit {
  width: 100%;
  background: var(--green);
  color: #080c08;
  border: none;
  padding: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 1.25rem;
  transition: background 0.2s, transform 0.1s;
}

.modal-submit:hover  { background: #ceff5e; }
.modal-submit:active { transform: scale(0.99); }

.modal-success {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
}

.modal-success .big-check {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modal-success h3 {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.modal-success p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 800px) {
  nav { padding: 1rem 1.25rem; }
  .nav-pill { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 6.5rem;
    gap: 2.5rem;
  }

  .hero-right { order: -1; }

  .screens-stack { height: 290px; }
  .screen-chat   { width: 158px; right: 5px; }
  .screen-dash   { width: 180px; }
  .screen-bike   { width: 155px; }

  .manifesto-inner,
  .build-inner,
  .price-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps,
  .features {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }

  .contrast-list li { grid-template-columns: 1fr; }
  .contrast-list .no { display: none; }

  footer {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}
