:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --secondary: #0f172a;
  --secondary-2: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), #1d4ed8);
  color: #fff;
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

.btn-nav {
  color: #fff !important;
  background: var(--primary);
  padding: 12px 18px;
  border-radius: 12px;
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(22, 163, 74, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-title {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.highlight {
  color: var(--primary);
}

.hero-desc,
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-cta,
.hero-store-links,
.quick-access-buttons,
.footer-legal-links,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta {
  margin-top: 26px;
}

.hero-store-links {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #111827;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  background: #f8fafc;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn-light:hover {
  background: #f8fafc;
}

.btn-full {
  width: 100%;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-weight: 600;
}

.trust-item i {
  color: var(--primary);
}

/* MOCKUP */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.phone-mockup {
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(145deg, #0f172a, #334155);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
}

.phone-screen {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
}

.app-logo-sm,
.app-status-dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.app-logo-sm {
  background: rgba(255,255,255,0.14);
}

.app-status-dot {
  background: #22c55e;
}

.map-placeholder {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #dbeafe, #f0fdf4);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
}

.map-pin {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ef4444;
  font-size: 2.2rem;
  z-index: 2;
}

.pulse-pin {
  animation: pulsePin 1.8s infinite;
}

@keyframes pulsePin {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.12); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.map-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.map-card-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.map-card-value {
  font-weight: 800;
  color: var(--text);
}

.dot-green {
  color: #22c55e;
  font-size: 0.7rem;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}

.stat-box {
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}

.stat-box i {
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-val {
  display: block;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.card-1 {
  top: 90px;
  left: 10px;
}

.card-2 {
  right: 0;
  bottom: 90px;
}

/* SECTIONS */
.section {
  padding: 84px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 14px 0 10px;
  line-height: 1.1;
}

.section-title.left {
  text-align: left;
}

.steps-grid,
.includes-grid,
.diff-grid {
  display: grid;
  gap: 24px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.step-card,
.include-card,
.diff-card,
.audience-card,
.aviso-box,
.contato-form,
.contato-info {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.step-card,
.include-card,
.diff-card {
  padding: 24px;
}

.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.step-icon,
.diff-icon,
.contact-icon,
.include-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.step-icon,
.diff-icon,
.contact-icon {
  background: rgba(22, 163, 74, 0.12);
  color: var(--primary);
}

.include-icon {
  background: color-mix(in srgb, var(--color) 15%, white);
  color: var(--color);
}

.step-divider {
  display: none;
}

.include-highlight {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-2));
  color: #fff;
}

.include-highlight p,
.include-highlight .btn-link {
  color: rgba(255,255,255,0.9);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  overflow: hidden;
}

.audience-img {
  min-height: 180px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: #fff;
}

.audience-personal {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.audience-business {
  background: linear-gradient(135deg, #0f172a, #334155);
}

.audience-content {
  padding: 24px;
}

.audience-content ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.audience-content li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: #334155;
}

.audience-content i {
  color: var(--primary);
}

/* QUICK ACCESS */
.quick-access {
  padding: 28px 0 12px;
}

.quick-access-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.quick-access-box h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.quick-access-box p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.85);
}

/* AVISO */
.aviso-box {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(135deg, #fff, #f8fafc);
}

.aviso-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* CONTATO */
.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.contato-info,
.contato-form {
  padding: 28px;
}

.contact-items {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-value {
  color: var(--text);
  font-weight: 700;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #86efac;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.form-error {
  display: block;
  margin-top: 6px;
  color: #dc2626;
  font-size: 0.85rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 14px;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer .logo,
.footer .logo a,
.footer .logo-text,
.footer .logo-icon {
  color: #fff;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,0.82);
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.footer-legal-links {
  margin-top: 16px;
}

.footer-legal-links a {
  opacity: 0.92;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: #0f172a;
  color: #fff;
  font-size: 0.84rem;
  padding: 8px 12px;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: 0.25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: #0f172a;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.98);
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.28);
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

.cookie-banner a {
  color: #7dd3fc;
  font-weight: 600;
}

.cookie-actions {
  margin-top: 16px;
}

.cookie-btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.cookie-btn.accept {
  background: #22c55e;
  color: #052e16;
}

.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* ANIMAÇÃO */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .hero .container,
  .contato-wrapper,
  .footer-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .includes-grid,
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: auto;
  }

  .card-1,
  .card-2 {
    position: static;
    margin: 14px auto 0;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    width: min(320px, calc(100% - 32px));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding-top: 42px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .includes-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .quick-access-box,
  .contato-info,
  .contato-form,
  .aviso-box {
    padding: 22px;
  }

  .app-stats {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .cookie-actions .cookie-btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
