/* ─────────────────────────────────────────
   Tarefito — style.css
   ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:      #0d0f1f;
  --navy-mid:  #12153a;
  --navy-card: #1a1d4a;
  --cyan:      #00d4c8;
  --cyan-soft: #5ee8e0;
  --purple:    #a78bfa;
  --green:     #22c55e;
  --yellow:    #f5c518;
  --cream:     #f5f0e8;
  --cream-d:   #e8e0d0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: #1a1a4e;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--navy);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.nav-title { font-size: 26px; font-weight: 700; line-height: 1; letter-spacing: -0.5px; }
.nav-title .t    { color: var(--green); }
.nav-title .rest {
  background: linear-gradient(90deg, #a78bfa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-sub { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
.nav-sub span { color: rgba(255,255,255,0.25); margin: 0 4px; }
.beta-pill {
  background: rgba(167,139,250,0.18);
  border: 0.5px solid rgba(167,139,250,0.4);
  color: var(--purple);
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 12px; font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
  align-self: center;
}
.beta-pill:hover { background: rgba(167,139,250,0.28); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109,70,255,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 1.75rem;
}
.hero-logo {
  width: 64px; height: 64px; border-radius: 16px; object-fit: cover;
  box-shadow: 0 0 24px rgba(109,70,255,0.5);
}
.hero-wordmark { font-size: 34px; font-weight: 700; line-height: 1; }
.hero-wordmark .t    { color: var(--green); }
.hero-wordmark .rest {
  background: linear-gradient(90deg, #a78bfa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 {
  font-size: 18px; font-weight: 400; color: #fff;
  max-width: 420px; margin: 0 auto 1rem; line-height: 1.55;
}
.privacy-badge {
  display: inline-flex; align-items: flex-start; gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 0.5px solid rgba(34,197,94,0.3);
  border-radius: 12px; padding: 11px 16px;
  font-size: 12px; color: rgba(255,255,255,0.7);
  max-width: 440px; margin: 0 auto 1.75rem;
  line-height: 1.6; text-align: left;
}
.privacy-badge strong { color: var(--green); }
.privacy-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.test-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #6d46ff, #a78bfa);
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 13px 30px; border-radius: 99px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(109,70,255,0.4);
  transition: opacity 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.test-btn:hover { opacity: 0.88; }

/* ── MISSÃO ── */
.band-cream { background: var(--cream); padding: 2.75rem 2rem; text-align: center; }
.band-cream h2 {
  font-size: 22px; font-weight: 400; color: #1a1a4e;
  max-width: 360px; margin: 0 auto 0.6rem; line-height: 1.45;
  font-family: Georgia, serif;
}
.asterisk { color: #1D9E75; font-size: 22px; margin: 0.85rem 0; display: block; }
.band-cream p {
  font-size: 13.5px; color: #4a4060;
  max-width: 400px; margin: 0 auto; line-height: 1.8;
}

/* ── PILARES ── */
.pillars-band { background: var(--cream-d); padding: 2.25rem 2rem; }
.pillars-band h2 {
  font-size: 18px; font-weight: 500; color: #1a1a4e;
  text-align: center; margin-bottom: 1.25rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 12px; max-width: 640px; margin: 0 auto;
}
.pillar-card {
  background: #fff; border-radius: 14px;
  padding: 1.25rem 0.9rem; text-align: center;
  border: 0.5px solid #d0c8b8;
}
.pillar-icon { font-size: 22px; margin-bottom: 9px; display: block; }
.pillar-card h3 { font-size: 13px; font-weight: 600; color: #1a1a4e; margin-bottom: 5px; }
.pillar-card p  { font-size: 12px; color: #6a6050; line-height: 1.6; }

/* ── AGRADECIMENTO ── */
.thanks-band {
  background: var(--navy-mid); padding: 2.25rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.thanks-band::after {
  content: '';
  position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.thanks-count {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(109,70,255,0.12);
  border: 0.5px solid rgba(167,139,250,0.3);
  border-radius: 99px; padding: 7px 18px;
  font-size: 14px; font-weight: 600; color: var(--purple);
  margin-bottom: 0.9rem;
}
.thanks-band h2 {
  font-size: 20px; font-weight: 400; color: #fff;
  margin-bottom: 0.65rem; line-height: 1.4;
  font-family: Georgia, serif;
}
.thanks-band p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  max-width: 420px; margin: 0 auto; line-height: 1.8;
}
.thanks-band strong { color: var(--yellow); }

/* ── MÉTRICAS ── */
.metrics-band { background: var(--navy); padding: 2rem; }
.metrics-band h2 {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35);
  text-align: center; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 1.1rem;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px; max-width: 640px; margin: 0 auto;
}
.metric-card {
  background: var(--navy-card);
  border: 0.5px solid rgba(167,139,250,0.18);
  border-radius: 14px; padding: 1.1rem 0.9rem; text-align: center;
}
.metric-num { font-size: 30px; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 7px; }
.metric-label { font-size: 11.5px; color: rgba(255,255,255,0.48); line-height: 1.5; }

/* ── INSIGHT ── */
.insight-strip {
  background: var(--navy-mid);
  border-left: 3px solid var(--purple);
  padding: 1.4rem 2rem;
}
.insight-strip p {
  font-size: 13px; color: rgba(255,255,255,0.78);
  line-height: 1.75; max-width: 640px; margin: 0 auto;
}
.insight-strip strong { color: var(--cyan-soft); }

/* ── GOOGLE FORMS ── */
.forms-band {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  text-align: center;
}
.forms-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 0.4rem;
}
.forms-band h2 {
  font-size: 18px; font-weight: 500; color: #fff;
  margin-bottom: 0.35rem; font-family: Georgia, serif;
}
.forms-sub { font-size: 12px; color: rgba(255,255,255,0.38); margin-bottom: 1.75rem; }
.forms-wrapper {
  max-width: 660px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.forms-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 16px;
}

/* ── OPINIÃO CTA ── */
.opinion-band { background: var(--navy); padding: 2rem; text-align: center; }
.opinion-band p {
  font-size: 13px; color: rgba(255,255,255,0.42);
  margin-bottom: 1rem; max-width: 380px;
  margin-left: auto; margin-right: auto; line-height: 1.75;
}
.opinion-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(167,139,250,0.12);
  border: 0.5px solid rgba(167,139,250,0.35);
  color: var(--purple); font-size: 13px; font-weight: 600;
  padding: 11px 24px; border-radius: 99px;
  text-decoration: none; transition: background 0.15s;
}
.opinion-btn:hover { background: rgba(167,139,250,0.22); }

/* ── CONTATO ── */
.contact-band { background: var(--navy-mid); padding: 1.5rem 2rem; text-align: center; }
.contact-band a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan-soft); font-size: 13px; text-decoration: none;
  border: 0.5px solid rgba(0,212,200,0.2); border-radius: 99px;
  padding: 8px 18px; transition: background 0.15s;
}
.contact-band a:hover { background: rgba(0,212,200,0.07); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 1.75rem 2rem 1.5rem;
  text-align: center;
  border-top: 0.5px solid rgba(255,255,255,0.05);
}
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 6px; }
.footer-logo  { width: 28px; height: 28px; border-radius: 7px; object-fit: cover; }
.footer-name-t    { color: var(--green); font-size: 18px; font-weight: 700; }
.footer-name-rest {
  font-size: 18px; font-weight: 700;
  background: linear-gradient(90deg, #a78bfa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-badge {
  display: inline-block; margin-top: 8px;
  background: var(--navy-card);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 99px; padding: 5px 14px;
  font-size: 11px; color: rgba(255,255,255,0.3);
}
.copy { font-size: 11px; color: rgba(255,255,255,0.18); margin-top: 10px; }

/* ── RESPONSIVO ── */
@media (max-width: 520px) {
  .nav-title { font-size: 22px; }
  .hero h1 { font-size: 16px; }
  .hero-wordmark { font-size: 28px; }
  .metric-num { font-size: 26px; }
  .forms-wrapper iframe { height: 820px; }
}
