@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Fiscal Flow — landing + blog (Estilo Intersomos Integrado) */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #2FC1A6;
  --blue: #2B79C2;
  --ink: #0F1115;
  --ink-2: #2A2E35;
  --muted: #6b7280;
  --line: #EDE6D6;
  --bg: #ffffff;
  --bg-soft: #FAF6ED;
  --bg-dark: #0F1115;
  --accent: #2FC1A6;
  --accent-dark: #2B79C2;
  --whats: #2FC1A6;
  --whats-dark: #24B096;
  --gradient: linear-gradient(135deg, #2FC1A6 0%, #2B79C2 100%);
  --gradient-soft: linear-gradient(135deg, rgba(47,193,166,0.06) 0%, rgba(43,121,194,0.06) 100%);
  --shadow: 0 10px 30px rgba(15, 17, 21, 0.04);
  --shadow-hover: 0 20px 40px rgba(15, 17, 21, 0.08);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Navigation Bar ===== */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; color: var(--ink); }
.brand img { height: 32px; width: auto; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient);
  color: #fff; display: grid; place-items: center; font-size: 18px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: #4b5563; }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--gradient) !important; color: #fff !important;
  padding: 10px 20px; border-radius: 10px;
  font-weight: 600; font-size: 14px; transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(43,121,194,0.18);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43,121,194,0.25);
  filter: brightness(1.05);
}
@media (max-width: 720px) { .nav-links { display: none; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; border: 0;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { 
  background: var(--gradient); 
  color: #fff; 
  box-shadow: 0 4px 14px rgba(43,121,194,0.18);
}
.btn-primary:hover { 
  box-shadow: 0 10px 28px rgba(43,121,194,0.28);
  filter: brightness(1.05);
}
.btn-whats { 
  background: var(--gradient); 
  color: #fff; 
  box-shadow: 0 4px 14px rgba(47,193,166,0.18);
}
.btn-whats:hover { 
  background: var(--gradient); 
  box-shadow: 0 10px 28px rgba(47,193,166,0.28);
  filter: brightness(1.05);
}
.btn-accent { 
  background: var(--gradient); 
  color: #fff;
  box-shadow: 0 4px 14px rgba(47,193,166,0.18);
}
.btn-accent:hover { 
  box-shadow: 0 10px 28px rgba(47,193,166,0.28);
  filter: brightness(1.05);
}
.btn-ghost { 
  background: rgba(255,255,255,0.7); 
  color: var(--ink); 
  border: 1.5px solid rgba(15,17,21,0.12);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { 
  background: #fff; 
  border-color: var(--teal);
  color: var(--blue);
}
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ===== Hero Section ===== */
.hero { 
  padding: 160px 0 90px; 
  text-align: center;
  position: relative; 
  overflow: hidden;
  background: linear-gradient(135deg, rgba(47,193,166,0.10) 0%, #fff 50%, rgba(43,121,194,0.10) 100%);
}
.hero::before {
  content: "";
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(47,193,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-dark);
  background: rgba(47,193,166,0.10); padding: 7px 18px; border-radius: 999px;
  border: 1px solid rgba(47,193,166,0.20);
  margin-bottom: 24px;
}
h1.hero-title {
  font-size: clamp(34px, 5.5vw, 56px); font-weight: 700; line-height: 1.12;
  margin: 0 0 20px; letter-spacing: -0.025em; color: var(--ink);
}
h1.hero-title em { font-style: normal; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p.lead { font-size: 18px; color: #4b5563; max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }
.hero-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.integ { color: var(--muted); font-size: 13.5px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.integ-logo {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 10px;
  font-weight: 600; color: var(--ink);
}
.integ-logo .badge { width: 22px; height: 22px; border-radius: 5px; display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 700; }
.integ-logo .wp { background: #21759b; }
.integ-logo .woo { background: #7f54b3; }

/* ===== Section Defaults ===== */
section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #e2e8f0; }
.section-dark h2 { color: #fff; }
.section-dark p { color: #cbd5e1; }
h2.section-title {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 16px; text-align: center;
}
.section-sub { color: var(--muted); font-size: 17px; max-width: 680px; margin: 0 auto 48px; text-align: center; line-height: 1.6; }

/* ===== Desafio / Challenges ===== */
.challenges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.challenge {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow); transition: all 0.3s ease;
}
.challenge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal);
}
.challenge .ico {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(239, 68, 68, 0.08); color: #ef4444;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 20px;
}
.challenge h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.challenge p { color: #4b5563; font-size: 14.5px; line-height: 1.6; }
@media (max-width: 800px) { .challenges { grid-template-columns: 1fr; } }

.pull-quote {
  background: #fff; border-left: 4px solid var(--teal); padding: 28px 32px; border-radius: 16px;
  box-shadow: var(--shadow); font-size: 18px; color: var(--ink-2); font-style: italic; line-height: 1.6;
}
.pull-quote .by { display: block; font-style: normal; font-size: 13.5px; color: var(--muted); margin-top: 10px; font-weight: 600; }

/* ===== 4 Pilares ===== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.pillar:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-hover); 
  border-color: var(--teal);
}
.pillar .ico {
  width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-soft); color: var(--teal);
  display: grid; place-items: center; font-size: 24px; margin-bottom: 20px;
}
.pillar h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.pillar p { color: #4b5563; font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ===== Incluído ===== */
.included { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.included-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow);
}
.included-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.included-card .summary { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.included-card ul { list-style: none; }
.included-card li {
  padding: 12px 0; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px; font-size: 15px; color: #374151;
}
.included-card li:first-child { border-top: 0; padding-top: 0; }
.included-card li::before { content: "✓"; color: var(--teal); font-weight: 700; font-size: 16px; }
@media (max-width: 800px) { .included { grid-template-columns: 1fr; } }

/* ===== Pricing ===== */
.pricing-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.pricing {
  background: var(--gradient); color: #fff;
  border-radius: 24px; padding: 44px; box-shadow: 0 30px 60px rgba(43, 121, 194, 0.25);
  position: relative; overflow: hidden;
}
.pricing::before {
  content: ""; position: absolute; right: -50px; top: -50px;
  width: 220px; height: 220px; border-radius: 50%; background: rgba(255, 255, 255, 0.15);
  filter: blur(40px); pointer-events: none;
}
.pricing .label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.8); }
.pricing .price { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 8px; }
.pricing .price .cur { font-size: 20px; color: rgba(255,255,255,0.8); font-weight: 600; }
.pricing .price .val { font-size: 72px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.pricing .price .month { color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 600; }
.pricing .perks { list-style: none; margin: 24px 0 28px; }
.pricing .perks li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.9); }
.pricing .perks li:first-child { border-top: 0; }
.pricing .perks li::before { content: "✓"; color: #fff; font-weight: 700; font-size: 16px; }
.pricing .btn-whats {
  background: #fff; color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.pricing .btn-whats:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}
.pricing .footnote { font-size: 12.5px; color: rgba(255,255,255,0.75); margin-top: 16px; text-align: center; }
.pricing-side h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.pricing-side p { color: #4b5563; margin-bottom: 18px; line-height: 1.65; }
.pricing-side .badge {
  display: inline-block; background: rgba(47,193,166,0.10); color: var(--leaf-600);
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-bottom: 16px;
  border: 1px solid rgba(47,193,166,0.20);
}
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; } }

/* ===== Ativar (Fluxo) ===== */
.activate-wrap {
  background: var(--gradient);
  color: #fff; border-radius: 28px; padding: 60px 48px; box-shadow: 0 30px 60px rgba(43, 121, 194, 0.25);
  position: relative; overflow: hidden;
}
.activate-wrap::before {
  content: "";
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.activate-wrap h2 { color: #fff; font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.activate-wrap > p.sub { color: rgba(255,255,255,.9); margin-bottom: 36px; max-width: 580px; font-size: 16px; line-height: 1.6; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.step {
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 28px; backdrop-filter: blur(8px);
}
.step .n {
  display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: var(--blue); font-weight: 800; margin-bottom: 14px; font-size: 16px;
}
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.step p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6; }
.activate-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.activate-ctas .btn-primary { background: #fff; color: var(--blue); }
.activate-ctas .btn-primary:hover { background: var(--bg-soft); }
.activate-ctas .btn-whats { background: #ffffff; color: var(--teal); }
.activate-ctas .btn-whats:hover { background: var(--bg-soft); }
@media (max-width: 800px) {
  .activate-wrap { padding: 44px 28px; }
  .steps { grid-template-columns: 1fr; }
}

/* ===== Equipe ===== */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.member {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  display: flex; gap: 20px; align-items: center; box-shadow: var(--shadow);
}
.avatar {
  width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 28px; font-weight: 700; color: #fff;
}
.avatar.elen { background: linear-gradient(135deg, #f472b6, #be185d); }
.avatar.bruno { background: linear-gradient(135deg, #38bdf8, #075985); }
.member h4 { font-size: 19px; font-weight: 700; margin-bottom: 2px; }
.member .role { color: var(--muted); font-size: 14px; font-weight: 500; }
@media (max-width: 700px) { .team { grid-template-columns: 1fr; } }

/* ===== Blog grid ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  transition: all 0.3s ease; box-shadow: var(--shadow);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--teal); }
.post-card .cover {
  height: 150px;
  background: var(--gradient-soft); display: grid; place-items: center;
  font-size: 48px;
}
.post-card .body { padding: 24px; }
.post-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.post-card p { font-size: 14px; color: #4b5563; line-height: 1.6; }
.post-card .read { color: var(--teal); font-weight: 600; font-size: 13.5px; margin-top: 14px; display: inline-block; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== Blog post (single) ===== */
.post-hero {
  background: linear-gradient(180deg, var(--bg-soft), #ffffff);
  padding: 120px 0 40px;
}
.post-hero .meta { color: var(--muted); font-size: 14px; margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.post-hero h1 {
  font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.025em; max-width: 820px; color: var(--ink);
}
.post-body {
  max-width: 740px; margin: 0 auto; padding: 32px 24px 80px;
  font-size: 17px; color: #374151; line-height: 1.8;
}
.post-body h2 { color: var(--ink); font-size: 26px; margin: 36px 0 14px; font-weight: 700; letter-spacing: -0.02em; }
.post-body h3 { color: var(--ink); font-size: 20px; margin: 28px 0 10px; font-weight: 700; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 20px; }
.post-body li { margin-bottom: 10px; }
.post-body blockquote {
  border-left: 4px solid var(--teal); padding: 16px 24px; margin: 28px 0;
  background: var(--bg-soft); border-radius: 12px; font-style: italic; color: var(--ink-2);
}
.post-body code {
  background: var(--bg-soft); padding: 2px 6px; border-radius: 4px;
  font-family: ui-monospace, Menlo, monospace; font-size: 14.5px; color: var(--blue);
}
.post-cta {
  background: var(--gradient); color: #fff;
  border-radius: 20px; padding: 44px; margin-top: 48px; text-align: center;
  box-shadow: 0 20px 40px rgba(43,121,194,0.18);
}
.post-cta h3 { color: #fff; font-size: 24px; margin-bottom: 8px; font-weight: 700; }
.post-cta p { color: rgba(255,255,255,.9); margin-bottom: 20px; }
.post-cta .btn-primary { background: #fff; color: var(--blue); }

/* ===== Footer ===== */
footer.foot {
  background: var(--bg-dark); color: #94a3b8; padding: 64px 0 36px;
}
footer.foot .top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 36px;
  border-bottom: 1px solid #1e293b; margin-bottom: 28px;
}
footer.foot h5 { color: #fff; margin-bottom: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
footer.foot a { display: block; padding: 6px 0; font-size: 14px; color: #94a3b8; transition: color 0.2s ease; }
footer.foot a:hover { color: #fff; }
footer.foot .bottom { font-size: 12.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #64748b; }
@media (max-width: 700px) { footer.foot .top { grid-template-columns: 1fr; gap: 28px; } }
