/* ============================================================
   POSTEI — style.css
   Estilos globais, variáveis, nav, hero, seções e componentes
   ============================================================ */

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

:root {
  --verde: #1DB954;
  --verde-escuro: #148a3e;
  --preto: #0a0a0a;
  --cinza-fundo: #f5f5f0;
  --cinza-card: #ffffff;
  --cinza-borda: #e8e8e0;
  --cinza-texto: #6b6b6b;
  --cinza-leve: #f0f0ea;
  --branco: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cinza-fundo);
  color: var(--preto);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cinza-borda);
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--preto);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--verde); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  color: var(--cinza-texto); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--preto); }
.nav-cta {
  background: var(--preto); color: var(--branco);
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: background .2s, transform .15s;
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--verde); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 32px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,185,84,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.25);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--verde-escuro); margin-bottom: 24px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verde); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(1.3); } }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--preto);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--verde); }
.hero p {
  font-size: 1.05rem; color: var(--cinza-texto);
  font-weight: 300; margin-bottom: 36px; max-width: 440px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--preto); color: var(--branco);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--verde); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,185,84,0.3); }

.btn-secondary {
  background: transparent; color: var(--cinza-texto);
  padding: 14px 28px; border-radius: 50px; border: 1.5px solid var(--cinza-borda);
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--preto); color: var(--preto); }

.hero-social-proof {
  margin-top: 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: var(--cinza-texto);
}
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--cinza-fundo);
  background: var(--cinza-leve);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; margin-left: -8px;
  color: var(--cinza-texto);
}
.avatars span:first-child { margin-left: 0; }

/* ===== MOCKUP DASHBOARD ===== */
.hero-mockup {
  background: var(--branco);
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--cinza-borda);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.mockup-header {
  background: var(--preto);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-title { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-left: 8px; }

.mockup-body { padding: 20px; }
.mockup-tabs { display: flex; gap: 4px; margin-bottom: 16px; }
.mockup-tab {
  padding: 6px 14px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 500; cursor: pointer;
  background: var(--cinza-leve); color: var(--cinza-texto);
}
.mockup-tab.active { background: var(--verde); color: white; }

.post-card {
  background: var(--cinza-leve);
  border-radius: 12px; padding: 14px; margin-bottom: 10px;
  display: flex; gap: 12px; align-items: flex-start;
}
.post-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.post-icon.ig { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.post-icon.fb { background: #1877f2; }
.post-icon.tw { background: #000; }
.post-info { flex: 1; }
.post-info strong { font-size: 0.82rem; font-weight: 600; display: block; margin-bottom: 2px; }
.post-info span { font-size: 0.75rem; color: var(--cinza-texto); }

.post-status {
  font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 50px;
}
.post-status.agendado { background: rgba(29,185,84,0.12); color: var(--verde-escuro); }
.post-status.rascunho { background: rgba(254,188,46,0.15); color: #a07000; }

.mockup-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 4px; }
.stat-mini {
  background: var(--cinza-leve); border-radius: 10px; padding: 12px;
  text-align: center;
}
.stat-mini strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; }
.stat-mini span { font-size: 0.7rem; color: var(--cinza-texto); }

/* ===== SEÇÕES GERAIS ===== */
.section { padding: 80px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--verde); margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; color: var(--preto);
  max-width: 540px; margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--cinza-texto); font-weight: 300; max-width: 480px; margin-bottom: 56px; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--cinza-borda);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--verde); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 48px; height: 48px; background: var(--cinza-leve);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.feat-card h3 {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.feat-card p { font-size: 0.9rem; color: var(--cinza-texto); line-height: 1.65; font-weight: 300; }

/* ===== COMO FUNCIONA ===== */
.steps-section { background: var(--preto); padding: 80px 32px; }
.steps-section .section-label { color: var(--verde); }
.steps-section .section-title { color: var(--branco); }
.steps-section .section-sub { color: rgba(255,255,255,0.5); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: rgba(255,255,255,0.1);
}
.step { text-align: center; padding: 24px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--verde); color: var(--branco);
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 0 0 6px rgba(29,185,84,0.15);
}
.step h3 { color: var(--branco); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.45); font-size: 0.85rem; font-weight: 300; }

/* ===== REDES SUPORTADAS ===== */
.redes-section { padding: 60px 32px; background: var(--cinza-leve); }
.redes-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.redes-inner p { font-size: 0.85rem; color: var(--cinza-texto); font-weight: 500; margin-bottom: 28px; letter-spacing: 1px; text-transform: uppercase; }
.redes-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.rede-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 1rem;
  color: var(--cinza-texto); opacity: 0.55;
  transition: opacity .2s;
}
.rede-logo:hover { opacity: 1; }
.rede-logo .icon { font-size: 1.5rem; }

/* ===== PREÇOS ===== */
.precos-section { padding: 80px 32px; }
.precos-inner { max-width: 1100px; margin: 0 auto; }
.precos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.preco-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid var(--cinza-borda);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.preco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.preco-card.destaque {
  background: var(--preto); border-color: var(--preto);
  transform: scale(1.04);
}
.preco-card.destaque:hover { transform: scale(1.04) translateY(-4px); }
.preco-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--verde); color: white;
  font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 50px;
  letter-spacing: 0.5px; white-space: nowrap;
}
.preco-plano {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cinza-texto); margin-bottom: 12px;
}
.preco-card.destaque .preco-plano { color: rgba(255,255,255,0.5); }
.preco-valor {
  font-family: 'Syne', sans-serif; font-size: 2.4rem;
  font-weight: 800; letter-spacing: -1.5px; margin-bottom: 4px;
}
.preco-card.destaque .preco-valor { color: var(--branco); }
.preco-valor sup { font-size: 1rem; font-weight: 600; vertical-align: super; }
.preco-valor sub { font-size: 0.9rem; font-weight: 400; color: var(--cinza-texto); }
.preco-card.destaque .preco-valor sub { color: rgba(255,255,255,0.4); }
.preco-desc { font-size: 0.85rem; color: var(--cinza-texto); margin-bottom: 28px; font-weight: 300; }
.preco-card.destaque .preco-desc { color: rgba(255,255,255,0.45); }
.preco-divider { height: 1px; background: var(--cinza-borda); margin-bottom: 24px; }
.preco-card.destaque .preco-divider { background: rgba(255,255,255,0.1); }
.preco-items { list-style: none; margin-bottom: 32px; }
.preco-items li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--cinza-texto);
  margin-bottom: 12px; font-weight: 400;
}
.preco-card.destaque .preco-items li { color: rgba(255,255,255,0.7); }
.preco-items li::before { content: '✓'; color: var(--verde); font-weight: 700; flex-shrink: 0; }

.btn-plano {
  display: block; text-align: center; padding: 14px;
  border-radius: 12px; font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: all .2s; cursor: pointer;
  border: none; width: 100%; font-family: 'DM Sans', sans-serif;
}
.btn-plano-outline {
  background: transparent; color: var(--preto);
  border: 1.5px solid var(--cinza-borda);
}
.btn-plano-outline:hover { border-color: var(--preto); }
.btn-plano-verde {
  background: var(--verde); color: white;
  box-shadow: 0 4px 16px rgba(29,185,84,0.35);
}
.btn-plano-verde:hover { background: var(--verde-escuro); transform: translateY(-1px); }

/* ===== APP SIMULADOR ===== */
.app-section { padding: 80px 32px; background: var(--cinza-leve); }
.app-inner { max-width: 860px; margin: 0 auto; }
.app-box {
  background: var(--branco);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--cinza-borda);
}
.app-topbar {
  background: var(--preto);
  padding: 14px 24px;
  display: flex; align-items: center; gap: 8px;
}
.app-dots { display: flex; gap: 6px; }
.app-dots span { width: 10px; height: 10px; border-radius: 50%; }
.app-dots span:nth-child(1){ background:#ff5f57; }
.app-dots span:nth-child(2){ background:#febc2e; }
.app-dots span:nth-child(3){ background:#28c840; }
.app-topbar-title { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-left: 8px; }
.app-content { display: grid; grid-template-columns: 220px 1fr; min-height: 480px; }
.app-sidebar {
  background: var(--cinza-leve);
  border-right: 1px solid var(--cinza-borda);
  padding: 24px 0;
}
.app-sidebar-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.2rem; padding: 0 20px 20px;
  border-bottom: 1px solid var(--cinza-borda);
}
.app-sidebar-logo span { color: var(--verde); }
.sidebar-menu { list-style: none; padding: 16px 0; }
.sidebar-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 0.88rem;
  color: var(--cinza-texto); text-decoration: none;
  transition: background .2s, color .2s;
}
.sidebar-menu li a:hover, .sidebar-menu li a.ativo {
  background: rgba(29,185,84,0.08); color: var(--verde-escuro);
}
.sidebar-menu li a .icon { font-size: 1rem; width: 20px; }
.app-main { padding: 28px; overflow: auto; }
.app-main h2 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.3rem; margin-bottom: 20px; letter-spacing: -0.3px;
}

/* ===== FORMULÁRIO DO POST ===== */
.post-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--cinza-texto); letter-spacing: 0.3px; }
.form-input, .form-select, .form-textarea {
  border: 1.5px solid var(--cinza-borda); border-radius: 10px;
  padding: 10px 14px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  color: var(--preto); background: var(--cinza-fundo);
  outline: none; transition: border-color .2s;
  resize: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--verde); background: white; }

.redes-checkboxes { display: flex; gap: 10px; flex-wrap: wrap; }
.rede-check {
  display: flex; align-items: center; gap: 6px;
  background: var(--cinza-leve); border: 1.5px solid var(--cinza-borda);
  padding: 8px 14px; border-radius: 50px; cursor: pointer;
  font-size: 0.83rem; font-weight: 500; transition: all .2s;
}
.rede-check input { display: none; }
.rede-check.checked { background: rgba(29,185,84,0.1); border-color: var(--verde); color: var(--verde-escuro); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-agendar {
  background: var(--preto); color: white;
  border: none; padding: 13px 24px; border-radius: 12px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 8px; justify-content: center;
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.btn-agendar:hover { background: var(--verde); }

.agendados-mini { margin-top: 20px; }
.agendados-mini h3 { font-size: 0.85rem; font-weight: 600; color: var(--cinza-texto); margin-bottom: 12px; }
.agendado-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--cinza-leve);
  border-radius: 10px; margin-bottom: 8px;
  font-size: 0.83rem; border: 1px solid var(--cinza-borda);
}
.agendado-rede { font-size: 1.1rem; }
.agendado-info { flex: 1; }
.agendado-info strong { display: block; font-size: 0.82rem; }
.agendado-info span { font-size: 0.75rem; color: var(--cinza-texto); }
.agendado-status { font-size: 0.7rem; font-weight: 600; color: var(--verde); background: rgba(29,185,84,0.1); padding: 3px 8px; border-radius: 50px; }

/* ===== TOAST ===== */
#toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--preto); color: white;
  padding: 14px 24px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
  box-shadow: var(--shadow-lg); transition: transform .4s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 999; display: flex; align-items: center; gap: 8px;
}
#toast.show { transform: translateX(-50%) translateY(0); }
#toast .toast-icon { font-size: 1.1rem; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 32px; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cinza-borda); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 500; font-size: 0.95rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--verde); }
.faq-arrow { font-size: 1.1rem; transition: transform .25s; }
.faq-a {
  font-size: 0.88rem; color: var(--cinza-texto); line-height: 1.7;
  font-weight: 300; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--verde); }

/* ===== CTA FINAL ===== */
.cta-section {
  padding: 80px 32px;
  background: var(--preto);
  text-align: center;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--branco); letter-spacing: -1px;
  max-width: 540px; margin: 0 auto 16px;
}
.cta-section p { color: rgba(255,255,255,0.45); font-size: 1rem; font-weight: 300; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-verde {
  background: var(--verde); color: white;
  padding: 15px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(29,185,84,0.4); transition: all .2s;
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.btn-verde:hover { background: var(--verde-escuro); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  padding: 15px 32px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.12);
  font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: white; }

/* ===== FOOTER ===== */
footer {
  background: #060606; padding: 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: rgba(255,255,255,0.5); }
.footer-logo span { color: var(--verde); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.3); font-size: 0.83rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { color: rgba(255,255,255,0.2); font-size: 0.78rem; }
.footer-copy1 { text-align: center; color: rgba(255,255,255,0.2); font-size: 0.78rem; }

/* ===== MODAL CADASTRO ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--branco);
  border-radius: 24px;
  width: 100%; max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  overflow: hidden;
  flex-shrink: 0;
  margin: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform .35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  background: var(--preto);
  padding: 28px 32px 24px;
  position: relative;
}
.modal-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: var(--branco); margin-bottom: 10px;
}
.modal-logo span { color: var(--verde); }
.modal-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.25rem;
  color: var(--branco); letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.modal-header p { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: rgba(255,255,255,0.6); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.18); color: white; }
.modal-body { padding: 28px 32px 32px; }

.btn-google {
  width: 100%; padding: 13px 20px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 12px; background: var(--branco);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  color: var(--preto); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  margin-bottom: 20px;
}
.btn-google:hover {
  border-color: #4285f4;
  box-shadow: 0 2px 12px rgba(66,133,244,0.15);
  background: #fafafa;
}
.btn-google svg { width: 20px; height: 20px; flex-shrink: 0; }

.modal-divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--cinza-borda);
}
.modal-divider span { font-size: 0.78rem; color: var(--cinza-texto); white-space: nowrap; font-weight: 500; }

.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form .form-group { gap: 6px; }
.modal-form .form-label { font-size: 0.78rem; font-weight: 600; color: var(--cinza-texto); letter-spacing: 0.5px; }
.modal-form .form-input { padding: 12px 14px; font-size: 0.92rem; }
.modal-form .form-input:focus { border-color: var(--verde); background: #fafffe; }

.modal-input-wrap { position: relative; }
.modal-input-wrap .form-input { padding-right: 44px; }
.toggle-pw {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--cinza-texto); font-size: 1rem; padding: 0; line-height: 1;
  transition: color .2s;
}
.toggle-pw:hover { color: var(--preto); }

.modal-terms { font-size: 0.76rem; color: var(--cinza-texto); line-height: 1.5; text-align: center; }
.modal-terms a { color: var(--verde-escuro); text-decoration: underline; }

.btn-cadastrar {
  width: 100%; padding: 14px;
  background: var(--preto); color: white;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .15s;
}
.btn-cadastrar:hover { background: var(--verde); transform: translateY(-1px); }

.modal-login { text-align: center; margin-top: 16px; font-size: 0.83rem; color: var(--cinza-texto); }
.modal-login a { color: var(--preto); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--cinza-borda); }
.modal-login a:hover { border-color: var(--verde); color: var(--verde); }

/* Barra de força da senha */
.pw-strength { margin-top: 6px; display: none; }
.pw-strength.visible { display: block; }
.pw-bar-bg { height: 4px; background: var(--cinza-borda); border-radius: 4px; overflow: hidden; }
.pw-bar { height: 100%; border-radius: 4px; transition: width .3s, background .3s; width: 0%; }
.pw-label { font-size: 0.72rem; margin-top: 4px; font-weight: 500; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #0a0a0a; color: white; padding: 16px 20px;
  border-radius: 12px; display: none; z-index: 9999;
  max-width: 90%; width: 420px; font-size: 13px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .precos-grid { grid-template-columns: 1fr; }
  .preco-card.destaque { transform: none; }
  .app-content { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .modal-body { padding: 24px 24px 28px; }
  .modal-header { padding: 24px 24px 20px; }
}