/* Identidade Moniq — cores do app (verde #00ff06, fundo escuro #171717) */
:root {
  --moniq-green: #00ff06;
  --moniq-green-soft: #93ff93;
  --moniq-green-muted: rgba(0, 255, 6, 0.28);
  --bg-dark: #171717;
  --bg-card: #f4f4f4;
  --text-dark: #111;
  --text-muted: #666;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --font: "Poppins", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--moniq-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--moniq-green);
  color: var(--bg-dark);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 23, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 6, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-text-img {
  height: 28px;
  width: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--moniq-green);
  color: var(--bg-dark) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--moniq-green-muted);
}

/* Hero */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 3rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(
    ellipse at 50% 0%,
    var(--moniq-green-muted) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-top: 1rem;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moniq-green-soft);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(147, 255, 147, 0.35);
  border-radius: 999px;
  background: rgba(0, 255, 6, 0.06);
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.75rem;
  max-width: 36ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.store-badge {
  display: block;
  height: 54px;
  width: auto;
  transition: transform 0.15s ease;
}

.store-badge:hover {
  transform: scale(1.02);
}

.store-soon {
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mock {
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border-radius: 28%;
  background: linear-gradient(
    145deg,
    rgba(0, 255, 6, 0.15) 0%,
    rgba(23, 23, 23, 1) 45%
  );
  border: 2px solid rgba(0, 255, 6, 0.25);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.phone-mock img {
  width: 55%;
  height: auto;
}

/* Sections */
section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.features {
  background: var(--white);
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(0, 255, 6, 0.35);
  box-shadow: 0 12px 32px rgba(0, 255, 6, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 255, 6, 0.18);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Audience */
.audience {
  background: var(--bg-dark);
  color: var(--white);
}

.audience .section-heading h2 {
  color: var(--white);
}

.audience .section-heading p {
  color: rgba(255, 255, 255, 0.65);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.tag-cloud span {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 6, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Security */
.security {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--white) 100%);
}

.security-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.security-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.security-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.security-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  padding: 3.5rem 1.25rem;
  background: var(--moniq-green);
  text-align: center;
}

.cta-band-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(23, 23, 23, 0.78);
}

.cta-band .store-badge {
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
}

.site-footer strong {
  color: var(--moniq-green-soft);
  font-weight: 600;
}

.footer-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--moniq-green);
}
