/* ─── Reset + base ──────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2C2C2A;
  background: #F1EFE8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: #1D9E75; text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }

/* ─── Layout helpers ────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-title { font-size: clamp(28px, 4vw, 38px); font-weight: 600; color: #085041; letter-spacing: -0.5px; text-align: center; margin-bottom: 10px; }
.section-sub { font-size: 16px; color: #5F5E5A; text-align: center; max-width: 600px; margin: 0 auto 48px; }

/* ─── Top nav ───────────────────────────────────────────────────── */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(8, 80, 65, 0.06);
  position: sticky; top: 0; z-index: 50;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 600;
  color: #085041;
  letter-spacing: -0.3px;
}
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; color: #5F5E5A; font-weight: 500;
}
.nav-links a:hover { color: #085041; text-decoration: none; }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, #085041 0%, #0a5e4d 100%);
  padding: 80px 24px 100px;
  text-align: center;
  color: #E1F5EE;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-logo { display: flex; justify-content: center; margin-bottom: 24px; }
.hero-brand {
  font-size: clamp(48px, 8vw, 64px); font-weight: 500;
  letter-spacing: -1px; margin-bottom: 10px;
}
.hero-tagline {
  font-size: 12px; color: #9FE1CB; font-weight: 600;
  letter-spacing: 2px; margin-bottom: 32px;
}
.hero-pitch {
  font-size: clamp(16px, 2.4vw, 19px); color: #C7EBDB;
  line-height: 1.55; margin-bottom: 40px;
}
.hero-pitch span { color: #9FE1CB; }

.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 14px;
}
.cta-store {
  display: flex; flex-direction: column;
  background: #fff; color: #085041;
  border-radius: 12px;
  padding: 10px 22px;
  min-width: 180px;
  text-align: left;
  transition: transform 0.15s ease;
}
.cta-store:hover { text-decoration: none; transform: translateY(-2px); }
.cta-small { font-size: 11px; color: #5F5E5A; font-weight: 500; }
.cta-big { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; }
.cta-disabled { opacity: 0.65; cursor: not-allowed; }
.cta-disabled:hover { transform: none; }
.hero-note { font-size: 12px; color: #5DCAA5; margin-top: 8px; }

/* ─── Steps ─────────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step {
  background: #fff; border-radius: 16px; padding: 28px;
  border: 0.5px solid rgba(8, 80, 65, 0.1);
  text-align: center;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: #085041; color: #E1F5EE;
  font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step h3 { font-size: 17px; color: #085041; margin-bottom: 8px; font-weight: 600; }
.step p { font-size: 14px; color: #5F5E5A; }

/* ─── Two-col organizador/membro ─────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.col-label {
  font-size: 11px; color: #1D9E75; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.col-label-alt { color: #1D689E; }
.col h2 {
  font-size: clamp(22px, 3vw, 28px); color: #2C2C2A;
  margin-bottom: 20px; letter-spacing: -0.5px; font-weight: 600;
}
.bullets { list-style: none; }
.bullets li {
  font-size: 15px; color: #2C2C2A;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #F1EFE8;
}
.bullets li:last-child { border-bottom: none; }
.bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: #1D9E75; font-weight: 700;
}

/* ─── Categorias ────────────────────────────────────────────────── */
.categories {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.cat {
  border-radius: 16px; padding: 22px 16px;
  text-align: center;
  border: 0.5px solid rgba(0,0,0,0.05);
}
.cat-icon { font-size: 32px; margin-bottom: 8px; }
.cat-label { font-size: 13px; font-weight: 600; }

/* ─── Planos ────────────────────────────────────────────────────── */
.plans {
  display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 20px;
  align-items: stretch;
  justify-content: center;
  max-width: 760px; margin: 0 auto;
}
.plan {
  background: #fff; border-radius: 18px; padding: 32px 24px;
  border: 0.5px solid rgba(8, 80, 65, 0.1);
  position: relative;
  display: flex; flex-direction: column;
}
.plan-featured {
  background: #085041; color: #E1F5EE;
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(8, 80, 65, 0.25);
}
.plan-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: #1D9E75; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 12px;
}
.plan-name { font-size: 14px; font-weight: 600; color: #1D9E75; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.plan-featured .plan-name { color: #9FE1CB; }
.plan-price { font-size: 36px; font-weight: 700; letter-spacing: -1px; margin-bottom: 4px; }
.plan-price span { font-size: 14px; font-weight: 500; color: #888780; }
.plan-featured .plan-price span { color: #9FE1CB; }
.plan-limit { font-size: 13px; color: #888780; margin-bottom: 20px; }
.plan-featured .plan-limit { color: #9FE1CB; }
.plan ul { list-style: none; flex: 1; }
.plan li {
  font-size: 14px; padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid #F1EFE8;
}
.plan-featured li { border-bottom: 1px solid rgba(159, 225, 203, 0.18); }
.plan li:last-child { border-bottom: none; }
.plan li::before {
  content: "→";
  position: absolute; left: 0; color: #1D9E75; font-weight: 700;
}
.plan-featured li::before { color: #9FE1CB; }
.plans-note { font-size: 13px; color: #5F5E5A; text-align: center; margin-top: 28px; }

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq {
  background: #fff; border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 10px;
  border: 0.5px solid rgba(8, 80, 65, 0.1);
}
.faq summary {
  font-size: 16px; font-weight: 600; color: #085041;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: #1D9E75;
  transition: transform 0.2s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p {
  font-size: 14px; color: #5F5E5A;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid #F1EFE8;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: #085041; color: #C7EBDB;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  color: #E1F5EE; font-size: 20px; font-weight: 600; letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.footer-tagline { font-size: 12px; color: #9FE1CB; letter-spacing: 1.2px; font-weight: 500; }
.footer-col h4 { font-size: 12px; color: #E1F5EE; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: #9FE1CB; padding: 4px 0; }
.footer-col a:hover { color: #E1F5EE; text-decoration: none; }
.footer-bottom {
  font-size: 12px; color: #5DCAA5; text-align: center;
  padding-top: 24px; border-top: 1px solid rgba(159, 225, 203, 0.1);
}

/* ─── Responsivo ────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
}
@media (max-width: 540px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav { padding: 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}
