/* =========================================
   ALICIA — Informação com Inteligência
   Paleta: Navy #1B2755 | Gold #B8962E | White #FFFFFF | Bg #F5F6FA
   Tipografia: Outfit (display/body) + DM Mono (dados/destaques)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  background: #F5F6FA;
  color: #1B2755;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Tokens ── */
:root {
  --navy:   #1B2755;
  --gold:   #B8962E;
  --gold-lt:#D4AE50;
  --white:  #FFFFFF;
  --bg:     #F5F6FA;
  --muted:  #6B7A99;
  --border: #DDE1ED;
  --radius: 4px;
  --max:    1160px;
}

/* ── Utilitários ── */
.container { width: 90%; max-width: var(--max); margin: 0 auto; }
.mono { font-family: 'DM Mono', monospace; }
.tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27, 39, 85, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 150, 46, 0.2);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  width: 90%;
  max-width: var(--max);
  margin: 0 auto;
}
.navbar__logo img {
  height: 64px;
  display: block;
}
.navbar__links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.navbar__links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--gold-lt); }
.navbar__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.navbar__cta:hover { background: var(--gold-lt) !important; color: var(--white) !important; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1.2rem 1.4rem 1.4rem;
  gap: 1rem;
  border-top: 1px solid rgba(184,150,46,0.15);
}
.navbar__mobile a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.navbar__mobile a:last-child {
  margin-top: 0.3rem;
  background: var(--gold);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}
.navbar__mobile.open { display: flex; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding: 148px 0 100px;
  position: relative;
  overflow: hidden;
}
/* Detalhe decorativo: linhas de impressão digital em SVG inline via pseudo */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 60% 40%, rgba(184,150,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 40% 60%, rgba(255,255,255,0.03) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__text {}
.hero__eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.4rem;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover { background: var(--gold-lt); }
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
}
.hero__stat {
  background: rgba(255,255,255,0.04);
  padding: 1.8rem 1.6rem;
  text-align: center;
}
.hero__stat-num {
  font-family: 'DM Mono', monospace;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}

/* ════════════════════════════════════════
   DIFERENCIAIS (barra horizontal)
════════════════════════════════════════ */
.strip {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}
.strip__list {
  display: flex;
  list-style: none;
  white-space: nowrap;
}
.strip__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.3);
}
.strip__list li svg { flex-shrink: 0; }

/* ════════════════════════════════════════
   SOBRE / COMO FUNCIONA
════════════════════════════════════════ */
.section { padding: 96px 0; }
.section--alt { background: var(--white); }
.section__header { margin-bottom: 3.6rem; }
.section__header.center { text-align: center; }
.section__title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 0.9rem;
}
.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.72;
}
.section__header.center .section__lead { margin: 0 auto; }

/* Como Funciona — steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  padding: 2.2rem 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  position: relative;
}
.step__num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.step__icon {
  width: 44px; height: 44px;
  background: rgba(27,39,85,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.step__icon svg { color: var(--navy); }
.step__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   PÚBLICO-ALVO
════════════════════════════════════════ */
.audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audience-card {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 1.8rem;
  border-radius: 6px;
}
.audience-card__icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.audience-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
}
.audience-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   PLANOS
════════════════════════════════════════ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.plan:hover {
  box-shadow: 0 8px 32px rgba(27,39,85,0.1);
  transform: translateY(-3px);
}
.plan--featured {
  border-color: var(--navy);
  box-shadow: 0 4px 24px rgba(27,39,85,0.12);
}
.plan__header {
  padding: 1.8rem 2rem;
  border-bottom: 1px solid var(--border);
}
.plan--featured .plan__header {
  background: var(--navy);
}
.plan__badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.plan__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.plan--featured .plan__name { color: var(--white); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}
.plan__currency {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.plan--featured .plan__currency { color: rgba(255,255,255,0.6); }
.plan__amount {
  font-family: 'DM Mono', monospace;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.plan--featured .plan__amount { color: var(--gold-lt); }
.plan__period {
  font-size: 0.8rem;
  color: var(--muted);
}
.plan--featured .plan__period { color: rgba(255,255,255,0.5); }
.plan__body {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan__features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: #3A4A6B;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.plan__features li:last-child { border-bottom: none; }
.plan__features li::before {
  content: '→';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan__features .highlight {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}
.plan__feature--highlight {
  background: rgba(27, 39, 85, 0.05);
  border-radius: var(--radius);
  margin-top: 0.3rem;
  padding: 0.6rem 0.5rem !important;
  border-bottom: none !important;
  color: var(--navy) !important;
}
.plan__feature--highlight::before {
  content: '★' !important;
  color: var(--gold) !important;
}
.plan__cta {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--navy);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.plan__cta:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.plan--featured .plan__cta {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.plan--featured .plan__cta:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

/* Nota de tokens */
.plans__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

/* ════════════════════════════════════════
   LGPD / CONFORMIDADE
════════════════════════════════════════ */
.compliance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.compliance__text {}
.compliance__list {
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compliance__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #3A4A6B;
  line-height: 1.5;
}
.compliance__list li .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.compliance__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.compliance-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.compliance-card:first-child {
  grid-column: span 2;
  background: var(--gold);
}
.compliance-card__num {
  font-family: 'DM Mono', monospace;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.compliance-card__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 60px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img {
  height: 32px;
  margin-bottom: 1.1rem;
  display: block;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  max-width: 260px;
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold-lt); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__lgpd {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .audiences { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .compliance { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { padding: 108px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 2.4rem; }
  .hero__stats { max-width: 100%; }

  .strip__list {
    animation: marquee 18s linear infinite;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .audiences { grid-template-columns: 1fr; }
  .compliance__visual { grid-template-columns: 1fr; }
  .compliance-card:first-child { grid-column: auto; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .plans { max-width: 100%; }
}

/* Acessibilidade — reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
