/* ============ ACHAOFERTA · LANDING PAGE STYLES ============ */
/* Design system extraído do brandbook v2.0 */

:root {
  --green: #00C26E;
  --green-light: #00E68A;
  --green-dark: #00A85E;
  --green-darker: #007A47;
  --green-tint: #E8FBF1;
  --navy: #1A2B4A;
  --navy-light: #2A3F66;
  --yellow: #FFC233;
  --red: #E63946;
  --text: #3D4759;
  --text-light: #6B7689;
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --border: #E5E8EE;
  --shadow-sm: 0 1px 3px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);
  --shadow-md: 0 4px 12px rgba(16,24,40,.08), 0 2px 4px rgba(16,24,40,.04);
  --shadow-lg: 0 20px 40px rgba(16,24,40,.10), 0 8px 16px rgba(16,24,40,.06);
  --shadow-xl: 0 32px 64px rgba(16,24,40,.12), 0 12px 24px rgba(16,24,40,.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--navy); line-height: 1.2; font-weight: 700; }
h1 { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; }
h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -.5px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p { margin-bottom: 1rem; }
a { color: var(--green-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green); }

ul, ol { padding-left: 0; list-style-position: inside; }
ul li, ol li { margin-bottom: .5rem; }

/* ============ CONTAINER ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ============ NAV ============ */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: 'Plus Jakarta Sans'; font-weight: 800; color: var(--navy); font-size: 1.25rem; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links li { margin: 0; }
.nav-links a { color: var(--text-light); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--green-dark); }
.mobile-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 24px; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 0; text-decoration: none; transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--green); color: white; box-shadow: 0 4px 14px rgba(0,194,110,.35); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,194,110,.45); color: white; }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--navy); border: 1px solid var(--border); }
.btn-ghost:hover { background: white; border-color: var(--green); color: var(--green-dark); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #128C7E; color: white; transform: translateY(-1px); }
.btn-telegram { background: #0088CC; color: white; }
.btn-telegram:hover { background: #006699; color: white; transform: translateY(-1px); }
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-xl { padding: 20px 36px; font-size: 1.1rem; }

/* ============ BADGE ============ */
.badge {
  display: inline-block;
  background: var(--green-tint); color: var(--green-dark);
  padding: 6px 16px; border-radius: 999px;
  font-weight: 600; font-size: .8rem;
  letter-spacing: .5px; margin-bottom: 20px;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  padding: 80px 0 120px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,110,.12) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,194,51,.10) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-darker) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.2rem; color: var(--text-light); margin-top: 20px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-row { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-item { font-size: .9rem; color: var(--text-light); }
.trust-item strong { display: block; color: var(--navy); font-family: 'Plus Jakarta Sans'; font-size: 1.5rem; font-weight: 800; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
  .hero-visual { display: flex; justify-content: center; }
}

/* ============ PHONE MOCKUP (hero) ============ */
.phone-mockup {
  width: 300px; max-width: 100%;
  background: #0a0a0a; border-radius: 36px; padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.phone-mockup::before {
  content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #0a0a0a; border-radius: 0 0 16px 16px; z-index: 2;
}
.phone-screen {
  background: white; border-radius: 26px; overflow: hidden;
  min-height: 560px; display: flex; flex-direction: column;
}
.phone-header { background: #075E54; color: white; padding: 38px 16px 12px; display: flex; align-items: center; gap: 12px; }
.phone-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--green-light), var(--green-dark)); display: flex; align-items: center; justify-content: center; color: white; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.phone-name { font-weight: 600; font-size: .9rem; }
.phone-status { font-size: .72rem; opacity: .8; }
.phone-body { background: #ECE5DD; flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.phone-msg { background: white; padding: 10px 12px; border-radius: 8px 8px 8px 2px; font-size: .82rem; line-height: 1.4; box-shadow: 0 1px 1px rgba(0,0,0,.1); color: #303030; max-width: 95%; }
.phone-msg.pulse { animation: msgPulse 2.5s ease-in-out infinite; }
@keyframes msgPulse { 0%,100% { box-shadow: 0 1px 1px rgba(0,0,0,.1); } 50% { box-shadow: 0 0 0 4px rgba(0,194,110,.25); } }
.msg-title { font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.price-old { text-decoration: line-through; color: #999; font-size: .8rem; }
.price-new { color: var(--red); font-weight: 700; }
.msg-meta { color: #555; font-size: .7rem; margin-top: 6px; }
.msg-cta { background: #f5f5f5; padding: 6px 8px; border-radius: 5px; font-size: .68rem; color: var(--green-dark); margin-top: 6px; border-left: 3px solid var(--green); word-break: break-all; }
.msg-time { color: #999; font-size: .65rem; margin-top: 4px; text-align: right; }

/* ============ SECTIONS ============ */
.block { padding: 80px 0; }
.block.alt { background: white; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-label { display: inline-block; color: var(--green-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .75rem; margin-bottom: 12px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-light); font-size: 1.1rem; }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: white; padding: 32px 24px; border-radius: 16px;
  border: 1px solid var(--border); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number { position: absolute; top: 18px; right: 22px; width: 32px; height: 32px; border-radius: 50%; background: var(--green-tint); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Plus Jakarta Sans'; font-size: 1rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: .9rem; margin: 0; }

/* ============ NICHES (homepage grid) ============ */
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .niches-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .niches-grid { grid-template-columns: 1fr; } }
.niche-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; text-align: center; color: var(--text);
  transition: all .25s; display: block;
}
.niche-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); color: var(--text); }
.niche-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.niche-card h4 { margin-bottom: 6px; }
.niche-card p { color: var(--text-light); font-size: .85rem; margin: 0; }

/* ============ MARKETPLACES ============ */
.marketplaces { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 800px) { .marketplaces { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .marketplaces { grid-template-columns: repeat(2, 1fr); } }
.mp-card {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 16px; text-align: center; font-weight: 600; color: var(--navy);
  font-family: 'Plus Jakarta Sans'; font-size: .95rem;
}

/* ============ DIFERENCIAL ============ */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; position: relative;
}
.diff-card.highlight { border-color: var(--green); background: linear-gradient(135deg, var(--green-tint), white); box-shadow: 0 8px 24px rgba(0,194,110,.15); }
.diff-bad, .diff-good { font-size: 1.5rem; margin-bottom: 8px; }
.diff-bad { color: var(--red); }
.diff-good { color: var(--green-dark); }
.diff-card h4 { margin-bottom: 6px; }
.diff-card p { color: var(--text-light); font-size: .9rem; margin: 0; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0F1B33 100%);
  color: white; padding: 80px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,194,110,.20) 0%, transparent 70%); }
.cta-section h2 { color: white; margin-bottom: 12px; font-size: 2.5rem; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-section small { display: block; color: rgba(255,255,255,.6); font-size: .85rem; margin-top: 16px; position: relative; z-index: 1; }

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 0 32px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { color: white; margin-bottom: 16px; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom .disclosure { margin-top: 8px; font-size: .75rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============ PAGE GRUPOS (specific) ============ */
.grupos-hero { padding: 80px 0; text-align: center; }
.grupos-hero h1 { margin: 16px 0; }
.grupos-hero .sub { color: var(--text-light); font-size: 1.15rem; max-width: 600px; margin: 0 auto 48px; }
.niches-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto 48px; }
@media (max-width: 900px) { .niches-select { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .niches-select { grid-template-columns: 1fr; } }
.niche-select-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 20px; text-align: center;
  transition: all .25s;
}
.niche-select-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.niche-select-card.highlight-pulse { animation: cardPulse 1.2s ease-in-out 3; border-color: var(--green); }
@keyframes cardPulse { 0%,100% { box-shadow: var(--shadow-md); } 50% { box-shadow: 0 0 0 4px rgba(0,194,110,.3); transform: scale(1.02); } }
.niche-select-card h3 { font-size: 1.1rem; margin: 4px 0 8px; }
.niche-select-card p { color: var(--text-light); font-size: .85rem; margin-bottom: 18px; min-height: 40px; }
.join-buttons { display: flex; gap: 8px; }
.join-buttons .btn { flex: 1; padding: 10px; font-size: .85rem; }

.rules {
  background: white; border-radius: 16px; padding: 32px;
  border: 1px solid var(--border); max-width: 700px; margin: 0 auto;
  text-align: left;
}
.rules h3 { margin-bottom: 16px; }
.rules ul { list-style: none; padding: 0; }
.rules li { padding: 6px 0; color: var(--text); font-size: .95rem; }

/* ============ CONTENT PAGES (sobre, contato, legal) ============ */
.content-page { padding: 80px 0; }
.content-page h1 { font-size: 2.5rem; margin-bottom: 20px; }
.content-page h2 { font-size: 1.6rem; margin: 40px 0 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.content-page h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.content-page .lead { font-size: 1.2rem; color: var(--text-light); margin-bottom: 32px; }
.content-page .meta { color: var(--text-light); font-size: .85rem; margin-bottom: 24px; }
.content-page ul, .content-page ol { padding-left: 24px; list-style-position: outside; }
.content-page li { margin-bottom: 6px; }
.content-page.legal h2 { font-size: 1.4rem; }
.content-page.legal h3 { font-size: 1rem; color: var(--text-light); }
.content-page.legal p, .content-page.legal li { font-size: .95rem; }

.commitment-list { list-style: none !important; padding-left: 0 !important; }
.commitment-list li { padding: 8px 0; }

.cta-box {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white; padding: 40px; border-radius: 20px;
  text-align: center; margin-top: 48px;
}
.cta-box h3 { color: white; margin-bottom: 16px; }

/* CONTATO específico */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; text-align: center; transition: all .25s; color: var(--text);
}
.contact-card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--text); }
.contact-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { color: var(--text); margin-bottom: 4px; font-weight: 600; }
.contact-card small { color: var(--text-light); font-size: .8rem; }

.faq-section { margin-top: 48px; }
.faq-section h2 { margin-bottom: 24px; }
.faq-section details {
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 18px 22px; margin-bottom: 12px; cursor: pointer;
}
.faq-section summary { font-weight: 600; color: var(--navy); font-family: 'Plus Jakarta Sans'; font-size: 1rem; }
.faq-section details[open] summary { margin-bottom: 12px; color: var(--green-dark); }
.faq-section details p { color: var(--text-light); font-size: .95rem; margin: 0; }
