:root {
  --bg: #f7f9f6;
  --ink: #1a2421;
  --muted: #62726b;
  --moss: #2e7d32;
  --moss-deep: #1b5e20;
  --mist: #e8f3e9;
  --white: #fff;
  --header-h: 4.5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.pad { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .pad { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .pad { padding: 0 2rem; } }

header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
  background: #fff;
}
header .pad {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-right { display: flex; align-items: center; gap: 1.4rem; min-width: 0; flex-wrap: wrap; }
.nav-right a.nav { font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.nav-right a.nav:hover { color: var(--moss); }
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; white-space: nowrap;
  color: #000;
}
.logo img { width: 44px; height: 44px; object-fit: contain; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px; padding: 0.75rem 1.25rem; border-radius: 12px;
  font-size: 0.875rem; font-weight: 600; border: 0; cursor: pointer;
}
.btn-primary { background: var(--moss); color: #fff; box-shadow: 0 0 0 1px rgba(46, 125, 50, 0.08), 0 20px 40px -20px rgba(46, 125, 50, 0.35); }
.btn-primary:hover { background: var(--moss-deep); }
.btn-primary:disabled { opacity: 0.65; cursor: wait; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  border: 1px solid rgba(46, 125, 50, 0.2);
}
.btn-sm { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.8rem; }

.hero {
  position: relative; overflow: hidden;
  padding: 7.5rem 0 5rem;
  background: var(--bg);
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(64px); pointer-events: none; }
.hero-orb-a { right: -6rem; top: -6rem; width: 20rem; height: 20rem; background: rgba(46, 125, 50, 0.15); }
.hero-orb-b { left: -5rem; bottom: 0; width: 16rem; height: 16rem; background: var(--mist); }
.hero-grid { position: relative; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 3.5rem; }
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(46, 125, 50, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--moss); font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.375rem 0.875rem; border-radius: 999px;
}
.badge i {
  width: 8px; height: 8px; border-radius: 99px; background: var(--moss);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.45; } }
.hero h1 {
  margin-top: 1.25rem;
  font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
}
@media (min-width: 640px) { .hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 2.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 3rem; } }
.lede { margin-top: 1rem; max-width: 32rem; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.hero-steps {
  margin-top: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.55rem 1rem;
  list-style: none; color: var(--muted); font-size: 0.8rem;
}
.hero-steps li { display: flex; align-items: center; gap: 0.4rem; }
.hero-steps b {
  width: 1.25rem; height: 1.25rem; border-radius: 99px;
  display: grid; place-items: center;
  background: var(--mist); color: var(--moss);
  font-size: 0.7rem;
}
.hero-cta-hint { margin-top: 0.55rem; color: var(--muted); font-size: 0.8rem; }
.nav-menu { display: none; position: relative; }
.nav-menu summary {
  list-style: none; cursor: pointer;
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
  padding: 0.4rem 0.2rem;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu[open] summary { color: var(--moss); }
.nav-menu-list {
  display: none;
  position: absolute; right: 0; top: 2.4rem; z-index: 60;
  min-width: 11.5rem;
  background: #fff;
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 32px -16px rgba(26, 36, 33, 0.25);
  overflow: hidden;
}
.nav-menu[open] .nav-menu-list { display: grid; }
.nav-menu-list a {
  padding: 0.7rem 0.9rem;
  font-size: 0.875rem; color: var(--ink);
  border-bottom: 1px solid rgba(46, 125, 50, 0.08);
}
.nav-menu-list a:last-child { border-bottom: 0; }
.checks { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.checks li { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.9rem; list-style: none; }
.checks svg { flex: 0 0 auto; color: var(--moss); }
.checks-cards {
  gap: 0.7rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 32px -18px rgba(26, 36, 33, 0.28);
}
.checks-cards li {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}
.checks-cards svg {
  width: 22px; height: 22px; padding: 3px;
  border-radius: 99px;
  background: var(--mist);
}

.phones {
  position: relative;
  width: min(100%, 38rem);
  margin: 0 auto;
  min-height: 22rem;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.phones-glow {
  position: absolute; inset: -8%; border-radius: 3rem; pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(46, 125, 50, 0.18), transparent 68%);
  filter: blur(18px);
}
.phone {
  position: relative; overflow: hidden;
  border: 6px solid rgba(26, 36, 33, 0.92);
  border-radius: 1.75rem;
  background: #1a2421;
  box-shadow: 0 32px 64px -16px rgba(26, 36, 33, 0.22);
  transform:
    rotate(var(--rest-rot, 0deg))
    translate3d(var(--tx, 0px), var(--ty, 0px), var(--tz, 0px))
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
  will-change: transform;
}
.phone img { width: 100%; height: auto; pointer-events: none; }
.phone::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.16) 50%, transparent 65%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.25s ease, transform 0.45s ease;
  pointer-events: none;
}
.phone.is-hot { box-shadow: 0 40px 72px -12px rgba(26, 36, 33, 0.32); }
.phone.is-hot::after { opacity: 1; transform: translateX(30%); }
.phone-main { width: 58%; margin: 0 auto; z-index: 20; --rest-rot: 0deg; }
.phone-side { position: absolute; display: none; }
.phone-left { left: -2%; top: 8%; width: 40%; z-index: 10; --rest-rot: -8deg; }
.phone-right { right: -2%; bottom: 4%; width: 44%; z-index: 30; --rest-rot: 8deg; }
@media (min-width: 640px) {
  .phone-side { display: block; }
  .phones { min-height: 32rem; }
}
@media (min-width: 1024px) {
  .phone-left { left: -6%; }
  .phone-right { right: -6%; }
}
@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .phone-main { animation: float-y 5.5s ease-in-out infinite; }
  .phone-left { animation: float-y 6.2s ease-in-out infinite 0.4s; }
  .phone-right { animation: float-y 5.8s ease-in-out infinite 0.8s; }
  .phones.is-tilting .phone { animation: none; }
}
@keyframes float-y {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.trust {
  border-block: 1px solid rgba(46, 125, 50, 0.1);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.85rem 0;
}
.trust ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 2rem; list-style: none; }
.trust li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.trust i { width: 5px; height: 5px; border-radius: 99px; background: var(--moss); }

section { padding: 4.5rem 0; }
.eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--moss);
}
h2 { margin-top: 0.75rem; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
@media (min-width: 640px) { h2 { font-size: 2rem; } }
@media (min-width: 1024px) { h2 { font-size: 2.25rem; } }
.sub { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

.panel {
  border: 1px solid rgba(46, 125, 50, 0.15);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px -12px rgba(26, 36, 33, 0.1);
}
.why-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }
.why-list { margin-top: 1.8rem; display: grid; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; }
.why-ico {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 999px;
  background: rgba(46, 125, 50, 0.1); color: var(--moss);
  display: grid; place-items: center;
}
.why-item h3 { font-size: 1rem; }
.why-item p { margin-top: 0.25rem; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.quote {
  margin-top: 1.5rem; padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--moss);
  color: var(--muted); font-size: 0.95rem; line-height: 1.55;
}
.quote-label {
  display: block; margin-bottom: 0.35rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--moss);
}

.day { background: linear-gradient(180deg, rgba(232, 243, 233, 0.55), var(--bg)); padding-top: 3rem; }
.moment { display: grid; gap: 2rem; align-items: start; }
.moment + .moment { margin-top: 4rem; }
@media (min-width: 1024px) {
  .moment { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: stretch; }
  .moment.reverse .moment-copy { order: 2; }
  .moment-copy { display: flex; flex-direction: column; height: 100%; }
  .store-row { margin-top: auto; padding-top: 0.75rem; transform: translateY(0.4rem); }
}
.moment h3 { margin-top: 1.1rem; font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em; }
.store-row { margin-top: 1rem; }
.store-label {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.store-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem; }
.store-badge { display: inline-flex; line-height: 0; }
.store-badge img { height: 40px; width: auto; }
.store-badge[href]:hover { opacity: 0.88; }
.store-badge-soon { pointer-events: none; }
.store-badge-soon img { filter: grayscale(1); opacity: 0.4; }
.store-signup { margin-top: 0.75rem; color: var(--muted); font-size: 0.82rem; }
.text-link {
  border: 0; padding: 0; background: none; cursor: pointer;
  color: var(--moss); font-weight: 700; text-decoration: underline;
}
.phone-solo { width: min(280px, 100%); margin: 0 auto; position: relative; perspective: 1000px; }
.phone-solo::before {
  content: ""; position: absolute; inset: -12%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.16), transparent 70%);
  filter: blur(16px); z-index: 0;
}
.phone-solo .phone { position: relative; z-index: 1; }

.roles { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 1024px) { .roles { grid-template-columns: repeat(3, 1fr); } }
.role {
  background: #fff; border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 24px; padding: 1.25rem;
  box-shadow: 0 24px 48px -12px rgba(26, 36, 33, 0.1);
}
.role .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
.role h3 { margin-top: 0.2rem; font-size: 1.15rem; }
.role ul { margin-top: 1.1rem; display: grid; gap: 0.7rem; list-style: none; }
.role li { display: flex; gap: 0.55rem; color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.role svg { flex: 0 0 auto; margin-top: 2px; color: var(--moss); }

.more { background: linear-gradient(180deg, rgba(232, 243, 233, 0.55), var(--bg)); }
.pillars { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar {
  border: 1px solid rgba(46, 125, 50, 0.1);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px; padding: 1.25rem;
  box-shadow: 0 24px 48px -12px rgba(26, 36, 33, 0.1);
}
.pillar-ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; color: var(--moss);
  font-size: 1.75rem; line-height: 1;
  background: linear-gradient(to bottom right, #e8f3e9, #fff);
  box-shadow: 0 0 0 1px rgba(46, 125, 50, 0.1);
}
.pillar h3 { margin-top: 1rem; font-size: 1.1rem; }
.pillar p { margin-top: 0.45rem; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

.audiences { background: #fff; }
.signup { background: #fff; }

.field { display: grid; gap: 0.35rem; margin-top: 0.85rem; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.field input, .field select {
  height: 46px; border-radius: 12px; border: 1px solid rgba(46, 125, 50, 0.22);
  padding: 0 0.9rem; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus { outline: 2px solid rgba(46, 125, 50, 0.35); border-color: var(--moss); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.hint { margin-top: 0.7rem; color: var(--muted); font-size: 0.8rem; }
.form-error { margin-top: 0.7rem; color: #b42318; font-size: 0.85rem; min-height: 1.2em; }
.form-ok { margin-top: 0.7rem; color: var(--moss-deep); font-size: 0.85rem; }

/* «Esqueci minha senha» do login da equipe. Existia só no app Flutter — quem
   entrava pela homepage no desktop não tinha como recuperar a senha. */
.link-btn {
  background: none; border: 0; padding: 0.2rem 0.1rem; cursor: pointer;
  color: var(--moss); font: inherit; font-size: 0.85rem; font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--moss-deep); }
.link-btn:focus-visible { outline: 2px solid var(--moss); outline-offset: 2px; border-radius: 3px; }
.link-btn[disabled] { opacity: 0.55; cursor: default; text-decoration: none; }

.cta-green {
  border-radius: 24px; padding: 3rem 1.5rem; text-align: center; color: #fff;
  background: linear-gradient(to bottom right, #2e7d32, #1b5e20);
  box-shadow: 0 20px 40px -20px rgba(46, 125, 50, 0.45);
}
.cta-green h2 { color: #fff; }
.cta-green p { color: rgba(255, 255, 255, 0.82); }
.cta-green .btn-ghost { color: var(--ink); }

footer {
  background: #08110d; color: rgba(255, 255, 255, 0.72);
  padding: 2.2rem 0; font-size: 0.85rem;
}
footer strong { color: #fff; }
.footer-copy { margin-top: 0.55rem; }
footer .row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.1rem; }
.footer-links a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.footer-links a:hover { color: #c8e6c9; }
.hint a { color: var(--moss); font-weight: 600; }

.modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 80;
  background: rgba(26, 36, 33, 0.45);
  padding: 1.25rem;
  overflow: auto;
}
.modal-backdrop.open { display: grid; place-items: start center; }
.modal-card {
  width: min(860px, 100%);
  margin: 4.5rem auto 2rem;
  position: relative;
  background: #fff;
  display: grid; gap: 1.5rem;
}
@media (min-width: 900px) {
  .modal-card { grid-template-columns: 1fr 1fr; align-items: start; }
  .modal-card.login-card { align-items: center; }
}
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border: 0; border-radius: 99px;
  background: #f7f9f6; color: var(--ink); cursor: pointer;
  font-size: 1.25rem; line-height: 1;
}
@media (max-width: 720px) {
  .nav-right a.nav { display: none; }
  .nav-menu { display: block; }
}
