﻿:root {
  --primary: #2a9d8f;
  --primary-700: #21867a;
  --background: #f5f7fa;
  --card: #ffffff;
  --text: #333333;
  --muted: #6c7a89;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #eaf7f5;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Neutraliza estilos genéricos do elemento header nesta página */
header { background: transparent; color: inherit; padding: 0; }
header .logo { font-size: inherit; font-weight: inherit; }
/* Removido o reset agressivo para não quebrar hover do botão Entrar */

main {
  flex: 1;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3.2rem 1.25rem 1.5rem 1.25rem;
  background: transparent;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero .btn {
  font-size: 1rem;
}

/* Hero actions */
.btn.btn-link { color:#0f172a; text-decoration: none; padding:10px 14px; border-radius:10px; }
.btn.btn-link:hover { background: rgba(0,0,0,.04); }

/* Benefícios */
.benefits {
  padding: 2rem;
  text-align: center;
}

/* Steps */
.steps { padding: 18px 0 10px; }
.steps h2 { text-align:center; color:#23364a; margin-bottom:14px; }
.step-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:14px; }
.step-card { background:#fff; border:1px solid #e6f0ee; border-radius:12px; padding:14px 16px; box-shadow:0 6px 14px rgba(0,0,0,.06); }
.step-badge { width:26px; height:26px; border-radius:50%; background:#2a9d8f; color:#fff; display:inline-flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:8px; }

.benefits h2 {
  font-size: 1.8rem;
  color: #23364a;
  margin-bottom: 1.4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.3s;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.benefit-card .icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA Final */
.cta-final {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.cta-final h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Modal Login */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: var(--card);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

.modal-content h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.25);
}

.btn-primary {
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--primary-700);
  transform: scale(1.03);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ---- Melhorias visuais da landing ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header com leve gradiente e sombra */
.site-header { background:#eaf7f5; color:#1f2a37; border-bottom:1px solid #d8eeeb; box-shadow:none; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.site-header .logo { font-size:1.1rem; font-weight:700; letter-spacing:.2px; }
.site-header nav button { padding:10px 14px; border:none; border-radius:10px; cursor:pointer; font-weight:600; background:#2a9d8f; color:#fff; }
.site-header nav button:hover { background:#21867a; }

/* Hero aprimorado */
.hero { position:relative; padding:64px 0 10px; overflow:hidden; }
.hero::before { content:""; display:none; }
.hero-inner { display:grid; grid-template-columns:1.1fr .9fr; align-items:center; gap:28px; }
.hero-text .tag { display:inline-block; background:#eaf7f5; color:#1f6d65; padding:6px 10px; border-radius:999px; font-weight:600; margin-bottom:12px; }
.hero-text h1 { font-size:2.4rem; line-height:1.15; color:#234; margin-bottom:14px; }
.hero-text p { font-size:1.1rem; color:#5f6b7a; margin-bottom:18px; }
.hero-actions .btn { font-size:1rem; }
.hero-art { width:100%; height:260px; border-radius:18px; background: linear-gradient(135deg,#ffffff,#f3faf8); box-shadow:0 10px 30px rgba(0,0,0,.06); position:relative; }
.hero-art::after { content:""; position:absolute; inset:16px; border-radius:14px; background: repeating-linear-gradient(45deg, rgba(42,157,143,.08) 0 14px, transparent 14px 28px); }

/* (stats removidos por decisão de produto) */

/* Cards mais elegantes */
.benefit-card { background: var(--card); border-radius:14px; padding:18px; box-shadow:0 6px 16px rgba(0,0,0,0.08); transition: transform .25s, box-shadow .25s; cursor: default; border:1px solid #eef2f6; }
.benefit-card h3 { color:#23364a; margin-bottom:.4rem; }
.benefit-card p { color:#647489; font-size:.96rem; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.10); }

/* CTA com gradiente */
.cta-final { background: linear-gradient(135deg,#2a9d8f,#21867a); color:#fff; text-align:center; padding:36px 0; margin-top:26px; }

/* Modal com borda e sombra mais suaves */
.modal-content { border:1px solid #eef2f6; box-shadow: 0 12px 32px rgba(0,0,0,.15); border-radius:14px; }

/* Rodapé simples */
.site-footer { padding:18px 0 28px; color:#6b7788; text-align:center; }

/* Features detalhadas */
.features { padding: 24px 0 40px; }
.features h2 { text-align:center; color:#23364a; margin-bottom:18px; }
.feature-list { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:16px; }
.feature-item { display:flex; gap:12px; background:#fff; border:1px solid #eef2f6; border-radius:12px; padding:14px 16px; box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.feature-item .check { width:24px; height:24px; display:inline-flex; align-items:center; justify-content:center; background:#eaf7f5; color:#1f6d65; border-radius:50%; font-weight:700; }
.feature-item strong { color:#23364a; }
.feature-item p { color:#6c7a89; margin-top:2px; font-size:.95rem; }

/* Botões */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; }
.gradient-text { background: linear-gradient(135deg,#fff,#d1fff6); -webkit-background-clip: text; background-clip: text; color: #fff; }

/* Responsividade */
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
}

/* Screenshot placeholder */
.screenshot { padding: 6px 0 24px; }
.screen-box { height: 280px; border-radius:14px; border:1px solid #e6f0ee; background: linear-gradient(135deg,#ffffff,#f4faf9); box-shadow: 0 8px 24px rgba(0,0,0,.08); }


/* --- Ajustes finais (prioridade) --- */
/* Logo final */
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-mark { width:30px; height:30px; border-radius:50%; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.brand-text { font-size:1.06rem; color:#0f172a; font-weight:800; letter-spacing:-0.02em; }

.modules-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; }
.module-card { cursor: default; transition: box-shadow .2s !important; text-decoration:none; }
.module-card:hover { transform: none !important; box-shadow: 0 10px 22px rgba(0,0,0,.08); }
/* ---- Overrides para layout minimalista ---- */
.site-header { background:#ffffff !important; color:#1f2a37; border-bottom:1px solid #e9eef6; position:sticky; top:0; z-index:10; box-shadow:none; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.brand { display:inline-block; font-weight:800; letter-spacing:-0.02em; text-decoration:none; }
.brand-text { font-size:1.05rem; color:#0f172a; }
.brand-text::after { content:""; display:inline-block; width:6px; height:6px; margin-left:6px; border-radius:50%; background:#2a9d8f; vertical-align:middle; }
.site-header nav button { padding:10px 14px; border:none; border-radius:10px; cursor:pointer; font-weight:600; background:#2a9d8f; color:#fff; }
.site-header nav button:hover { background:#21867a; }

.hero.hero-min { padding:56px 0 24px; background: linear-gradient(180deg,#f8fbfb, #f6f8fb 60%, transparent); }
.hero .hero-center { text-align:center; max-width: 820px; }
.hero .tag { display:inline-block; background:#eaf7f5; color:#1f6d65; padding:6px 10px; border-radius:999px; font-weight:600; margin-bottom:12px; }
.hero h1 { color:#0f172a; letter-spacing:-0.02em; }
.hero p { color:#5f6b7a; }

/* Módulos principais */
.modules { padding: 26px 0 40px; }
.modules h2 { text-align:center; color:#23364a; margin-bottom:16px; }
.modules-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:14px; }
.module-card { display:flex; flex-direction:column; gap:6px; padding:14px; border:1px solid #eef2f6; border-radius:12px; background:#fff; box-shadow:0 4px 12px rgba(0,0,0,.05); text-decoration:none; color:#0f172a; transition: transform .2s, box-shadow .2s; }
.module-card .icon { font-size:22px; }
.module-card small { color:#6c7a89; }
.module-card:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.08); }

