@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}

:root {
  --bg: #0a0a0f;
  --surface: #14141c;
  --surface-2: #1a1a24;
  --stroke: #262633;
  --text: #e8e8e8;
  --muted: #9a9aa8;
  --red: #ff2d2d;
  --orange: #ff6b35;
  --amber: #ffc93c;
  --green: #00c853;
  --cta-a: #ff3b30;
  --cta-b: #ff8a00;
  --gray: #2a2a32;
  --link: #ffb020;
  --whatsapp: #25d366;
  --grad: linear-gradient(90deg, var(--red), var(--orange), var(--amber));
  --grad-cta: linear-gradient(90deg, var(--cta-a), var(--cta-b));
  --grad-text: linear-gradient(90deg, var(--orange), var(--amber));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff1f1f, #ff7a00);
  box-shadow: 0 12px 36px rgba(255, 59, 48, 0.55);
}

.btn-gray {
  background: var(--gray);
  color: var(--text);
}

.btn-gray:hover {
  background: #33333d;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
  padding: 10px 18px;
}

.btn-ghost:hover {
  border-color: var(--link);
  color: var(--link);
}

.btn-whats {
  background: var(--whatsapp);
  color: #062b17;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whats:hover {
  background: #2ee675;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.5px;
}

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.15s ease;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 84px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.28;
  pointer-events: none;
}

.hero-glow-a {
  width: 480px;
  height: 480px;
  top: -160px;
  left: 50%;
  transform: translateX(-140%);
  background: radial-gradient(circle, var(--red), transparent 70%);
}

.hero-glow-b {
  width: 520px;
  height: 520px;
  top: 60px;
  right: 50%;
  transform: translateX(140%);
  background: radial-gradient(circle, var(--amber), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-ring {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  padding: 4px;
  background: var(--grad);
  margin-bottom: 24px;
  box-shadow: 0 0 46px rgba(255, 45, 45, 0.4);
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 45, 45, 0.35);
  }
  50% {
    box-shadow: 0 0 55px rgba(255, 107, 53, 0.55);
  }
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0e0e15;
  object-fit: cover;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  max-width: 820px;
  margin-bottom: 18px;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  margin-top: 26px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- Seções ---------- */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Benefícios ---------- */
.benefits {
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.benefit-card p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

/* ---------- Simulação ---------- */
.sim {
  background: linear-gradient(180deg, var(--bg), #0d0d14 55%, var(--bg));
}

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

.sim-desc {
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 460px;
}

.sim-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.sim-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

.sim-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.35);
  color: var(--link);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
}

.sim-form {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.sim-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text);
}

.field input,
.field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #0e0e15;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.field select option {
  background: var(--surface);
}

.pill-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pill-opt {
  position: relative;
  cursor: pointer;
}

.pill-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-opt span {
  display: grid;
  place-items: center;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #0e0e15;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.15s ease;
  text-align: center;
}

.pill-opt span:hover {
  border-color: var(--link);
}

.pill-opt input:checked + span {
  background: var(--grad-cta);
  border-color: var(--cta-a);
  color: #fff;
}

.form-note {
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

/* ---------- Sobre ---------- */
.sobre {
  background: linear-gradient(180deg, var(--bg), #0d0d14);
}

.sobre-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.avatar-ring-lg {
  width: 240px;
  height: 240px;
}

.sobre-text p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 600px;
  font-weight: 400;
}

.sobre-stats {
  list-style: none;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.sobre-stats li {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px 22px;
  min-width: 120px;
}

.sobre-stats strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sobre-stats span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- CTA final ---------- */
.cta-final {
  background: radial-gradient(circle at 50% 0%, rgba(255, 59, 48, 0.18), transparent 65%);
  padding: 90px 0;
}

.cta-final-inner {
  text-align: center;
  max-width: 720px;
}

.cta-final h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-final p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* ---------- Rodapé ---------- */
.footer {
  border-top: 1px solid var(--stroke);
  padding: 56px 0 30px;
  background: #0c0c12;
}

.footer-top {
  text-align: center;
  margin-bottom: 32px;
}

.footer-top p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 420px;
  margin: 12px auto 16px;
}

.footer-link {
  color: var(--link);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 20px 0;
  margin-bottom: 22px;
}

.footer-legal p {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ---------- Animações de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .sim-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .sobre-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-stats {
    justify-content: center;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 520px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0 72px;
  }

  .sim-form {
    padding: 26px 20px;
  }

  .pill-options {
    grid-template-columns: 1fr;
  }

  .avatar-ring-lg {
    width: 180px;
    height: 180px;
  }

  .avatar-ring-lg .avatar {
    font-size: 3.2rem;
  }
}
