/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --bg: #F8FAFC;
  --text: #1F2937;

  --topbar: #0F4C47;
  --hero: #115E59;

  --primary: #10B981;
  --primary-100: #D1FAE5;
  --primary-200: #A7F3D0;
  --border: rgba(255,255,255,0.20);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px;
}

/* =========================
   BOTÕES
========================= */
.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.btn-full { width: 100%; }

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 0;
}

.btn-primary:hover{
  filter: brightness(0.98);
}

.btn-login {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--primary-100);
  border: 1px solid #5EEAD4;
  text-decoration: none;
  font-weight: 500;
}

.btn-login:hover {
  background: rgba(94, 234, 212, 0.15);
}

/* =========================
   TOP BAR
========================= */
.topbar {
  background: var(--topbar);
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-logo { height: 56px; }

.topbar-name {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

/* =========================
   HERO
========================= */
.hero {
  background: var(--hero);
  color: #fff;
}

.hero-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-200);
  letter-spacing: 0.2px;
}

.hero-title {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
  max-width: 720px;
}

.hero-subtitle {
  color: var(--primary-100);
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 560px;
}

.hero-points{
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 520px;
  text-align: left;
}

.hero-points li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.25rem;
  opacity: 0.95;
}

.hero-points li::before{
  content: "✓";
  font-weight: 800;
  line-height: 1;
  transform: translateY(2px);
  color: #EFFFF7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 18px;
}

.badge-pill {
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--border);
  color: #EFFFF7;
}

.hero-cta {
  width: 100%;
  max-width: 380px;
  margin-top: 6px;
}

.hero-cta small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--primary-200);
}

.hero-phone {
  margin-top: 18px;
}

.hero-phone img {
  width: 100%;
  max-width: 340px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* =========================
   SEÇÃO: COMO FUNCIONA (ENXUTO)
========================= */
.how-simple{
  background: #fff;
}

.how-simple h2{
  font-size: 22px;
  color: #0F172A;
  text-align: center;
  margin-bottom: 14px;
}

.steps{
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.step{
  background: #FFFFFF;
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  color: #111827;
  text-align: left;
}

.step strong{
  color: var(--primary);
}

/* =========================
   SEÇÃO: FAQ CURTO
========================= */
.faq-short{
  background: #F1F5F9;
}

.faq-short h2{
  font-size: 22px;
  color: #0F172A;
  text-align: center;
  margin-bottom: 14px;
}

.faq-short p{
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  margin-bottom: 10px;
  line-height: 1.35rem;
  color: #111827;
}

.faq-short p strong{
  color: #0F172A;
}

/* =========================
   CTA FINAL
========================= */
.cta-final{
  background: var(--hero);
  color: #fff;
  text-align: center;
}

.cta-final h2{
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  font-size: 14px;
  color: #6B7280;
  padding: 24px;
}

.footer a{
  color: #0F172A;
  font-weight: 600;
  text-decoration: none;
}

.footer a:hover{
  text-decoration: underline;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 768px){
  .container{ padding: 42px 24px; }

  .topbar-logo{ height: 64px; }

  .hero-title{ font-size: 40px; }
  .hero-subtitle{ font-size: 18px; }

  .hero-wrapper{ padding-bottom: 52px; }

  .hero-phone img{ max-width: 380px; }

  .how-simple h2,
  .faq-short h2{ font-size: 26px; }

  .cta-final h2{ font-size: 32px; }

  .steps{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-short p{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-full{
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
