:root {
  --green-950: #06380c;
  --green-900: #0a5317;
  --green-800: #146d21;
  --green-700: #1f842e;
  --green-600: #2f9a3b;
  --green-500: #61c248;
  --green-200: #dff4d7;
  --green-100: #eef9ea;
  --cream: #f7faf3;
  --surface: #ffffff;
  --text: #112015;
  --muted: #5c6a60;
  --border: #dfe9da;
  --shadow: 0 24px 70px rgba(6, 56, 12, .13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 243, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 233, 218, .75);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; color: var(--green-800); font-size: 1.24rem; }
.brand-icon { width: 42px; height: 42px; border-radius: 12px; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 700; }
.nav-links a:hover { color: var(--green-700); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: var(--green-100); border-radius: 14px; padding: 11px; }
.menu-button span { display: block; height: 2px; background: var(--green-800); margin: 5px 0; border-radius: 5px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 85% 18%, rgba(97, 194, 72, .23), transparent 32%),
    linear-gradient(135deg, #fbfff8 0%, #eef9ea 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before { right: -130px; bottom: -120px; width: 520px; height: 520px; background: rgba(47, 154, 59, .15); }
.hero::after { left: -120px; top: 140px; width: 260px; height: 260px; background: rgba(97, 194, 72, .12); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 52px; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green-700); font-weight: 850; letter-spacing: .02em; }
.dot { width: 10px; height: 10px; background: var(--green-500); border-radius: 999px; box-shadow: 0 0 0 7px rgba(97, 194, 72, .15); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 18px 0 20px; font-size: clamp(3.2rem, 8vw, 6.8rem); line-height: .92; letter-spacing: -.065em; color: var(--green-950); }
.hero-copy p { font-size: 1.35rem; color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 999px; padding: 0 24px; font-weight: 850; border: 1px solid transparent; transition: .2s ease; }
.button.primary { background: linear-gradient(135deg, var(--green-500), var(--green-800)); color: #fff; box-shadow: 0 14px 34px rgba(47, 154, 59, .28); }
.button.primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(47, 154, 59, .34); }
.button.ghost { background: #fff; color: var(--green-800); border-color: var(--border); }
.button.secondary { background: var(--green-100); color: var(--green-800); border-color: var(--green-200); margin-top: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-row span { padding: 9px 13px; background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: .94rem; font-weight: 700; }
.hero-art { background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.85); border-radius: var(--radius-xl); padding: 16px; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.hero-art img { border-radius: 24px; width: 100%; }
.section { padding: 92px 0; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.045em; color: var(--green-950); margin: 10px 0 16px; }
.section-heading p { color: var(--muted); font-size: 1.15rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 14px 38px rgba(6, 56, 12, .06); }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--green-100); font-size: 1.9rem; margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; color: var(--green-900); font-size: 1.28rem; }
.feature-card p { margin: 0; color: var(--muted); }
.showcase { padding: 92px 0; background: linear-gradient(135deg, var(--green-950), #0f5f18 58%, #4eb53b); color: #fff; overflow: hidden; }
.showcase .light h2, .showcase .light p, .showcase .light .eyebrow { color: #fff; }
.showcase .light p { opacity: .82; }
.screens-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.screen-card { position: relative; overflow: hidden; border-radius: 28px; background: #fff; box-shadow: 0 26px 70px rgba(0,0,0,.28); aspect-ratio: 9/16; }
.screen-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.screen-card:hover img { transform: scale(1.04); }
.screen-card span { position: absolute; left: 16px; bottom: 16px; padding: 9px 13px; background: rgba(255,255,255,.92); color: var(--green-900); border-radius: 999px; font-weight: 850; }
.split-section { background: #fff; }
.split-grid { display: grid; grid-template-columns: 1.05fr .8fr; gap: 32px; align-items: center; }
.split-grid h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.045em; margin: 10px 0 18px; color: var(--green-950); }
.split-grid p { color: var(--muted); font-size: 1.08rem; }
.privacy-card { background: linear-gradient(145deg, var(--green-100), #fff); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow); }
.privacy-card img { width: 92px; border-radius: 24px; margin-bottom: 18px; }
.privacy-card h3 { color: var(--green-900); font-size: 1.65rem; margin-bottom: 14px; }
.privacy-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.cta { padding: 54px 0 92px; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: linear-gradient(135deg, #fff, var(--green-100)); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 42px; box-shadow: var(--shadow); }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; margin: 10px 0 10px; color: var(--green-950); }
.cta-card p { margin: 0; color: var(--muted); }
.footer { padding: 36px 0; background: var(--green-950); color: rgba(255,255,255,.76); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer .brand { color: #fff; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: #fff; }
.footer p { margin: 0; }
.legal-page { background: #fff; }
.legal-hero { padding: 78px 0 46px; background: linear-gradient(135deg, var(--green-100), #fff); }
.legal-hero h1 { font-size: clamp(2.7rem, 7vw, 5rem); margin-bottom: 10px; }
.legal-hero p { color: var(--muted); font-weight: 700; }
.legal-content { max-width: 880px; padding: 58px 0 92px; }
.legal-content h2 { margin-top: 36px; color: var(--green-900); font-size: 1.6rem; }
.legal-content p { color: #3e4b42; }
.legal-content a { color: var(--green-700); font-weight: 800; }
@media (max-width: 960px) {
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 58px; }
  .hero-art { transform: none; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav { height: 68px; }
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 14px; right: 14px; top: 74px; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links.open, .nav-links.always-visible { display: flex; position: static; flex-direction: row; background: transparent; border: 0; box-shadow: none; padding: 0; }
  .nav-links a { padding: 10px; }
  h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
  .hero-copy p { font-size: 1.12rem; }
  .section, .showcase { padding: 66px 0; }
  .feature-grid, .screens-grid { grid-template-columns: 1fr; }
  .screen-card { max-width: 390px; margin: 0 auto; }
  .cta-card { align-items: stretch; flex-direction: column; padding: 28px; }
  .footer-grid { flex-direction: column; text-align: center; }
  .hero-actions .button, .cta-card .button { width: 100%; }
}

.play-badge-link { display: inline-flex; align-items: center; transition: .2s ease; }
.play-badge-link:hover { transform: translateY(-2px); }
.download-section { padding: 78px 0; background: linear-gradient(135deg, #fff, var(--green-100)); }
.download-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 42px; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.download-copy h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.045em; color: var(--green-950); margin: 10px 0 16px; max-width: 720px; }
.download-copy p { color: var(--muted); font-size: 1.12rem; margin: 0; max-width: 680px; }
.download-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; min-width: 240px; }
@media (max-width: 700px) {
  .download-section { padding: 56px 0; }
  .download-card { flex-direction: column; align-items: stretch; padding: 28px; }
  .download-actions { align-items: stretch; min-width: 0; }
  .play-badge-link, .play-badge-link.large { justify-content: center; }
}


/* Ajuste do badge do Google Play */
.play-badge { width: 120px; max-width: 100%; height: auto; filter: drop-shadow(0 10px 18px rgba(0,0,0,.16)); }
.play-badge-hero { width: 120px; }
.play-badge-download { width: 135px; }
.play-badge-link.large .play-badge-download { width: 135px; }
@media (max-width: 700px) {
  .play-badge, .play-badge-hero { width: 110px; }
  .play-badge-download, .play-badge-link.large .play-badge-download { width: 125px; }
}
