/*
Theme Name: IdeiaBit Growth Commerce
Theme URI: https://ideiabit.com.br
Author: Simone Savio – IdeiaBit
Author URI: https://linkedin.com/in/simonesavio
Description: Landing page profissional para a metodologia Growth Commerce da IdeiaBit. Design dark navy/pink/purple com animações e seções completas.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ideiabit-gc
Tags: e-commerce, landing-page, dark, full-width, one-page
*/

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a1a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── CSS VARIABLES ─── */
:root {
  --navy: #0a0a1a;
  --navy2: #0f0f2a;
  --pink: #e040b0;
  --pink2: #f050c0;
  --purple: #7c3aed;
  --purple2: #5b21b6;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --green: #22c55e;
  --yellow: #facc15;
}

/* ─── BACKGROUND ORBS ─── */
.bg-orb { position: fixed; border-radius: 50%; filter: blur(120px); opacity: 0.18; pointer-events: none; z-index: 0; }
.orb1 { width: 600px; height: 600px; background: var(--purple); top: -200px; left: -150px; }
.orb2 { width: 500px; height: 500px; background: var(--pink); top: 40vh; right: -200px; }
.orb3 { width: 400px; height: 400px; background: var(--purple2); bottom: 10vh; left: 30%; }

/* ─── NAV ─── */
#site-navigation {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.35rem; letter-spacing: -0.5px; color: #fff; text-decoration: none; }
.site-logo span { color: var(--pink); }
.nav-menu { display: flex; gap: 32px; list-style: none; }
.nav-menu a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover { color: #fff; }
.nav-cta { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none; padding: 10px 22px; border-radius: 100px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero-section {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 5% 80px;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-bottom: 32px; animation: fadeUp 0.6s ease both; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-section h1 { font-family: 'Sora', sans-serif; font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; max-width: 820px; animation: fadeUp 0.7s 0.1s ease both; }
.hero-section h1 em { font-style: normal; background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { max-width: 620px; color: var(--muted); font-size: 1.05rem; margin-top: 20px; line-height: 1.7; animation: fadeUp 0.7s 0.2s ease both; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; animation: fadeUp 0.7s 0.3s ease both; }
.pill { display: flex; align-items: center; gap: 6px; background: var(--card); border: 1px solid var(--border); border-radius: 100px; padding: 7px 16px; font-size: 0.8rem; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.7s 0.4s ease both; }

/* ─── BUTTONS ─── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none; padding: 14px 30px; border-radius: 100px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; text-decoration: none; box-shadow: 0 0 30px rgba(224,64,176,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(224,64,176,0.5); color: #fff; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 1px solid var(--border); padding: 14px 28px; border-radius: 100px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem; cursor: pointer; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.btn-secondary:hover { border-color: var(--pink); background: rgba(224,64,176,0.06); color: #fff; }

/* ─── METRICS BAR ─── */
.metrics-bar { position: relative; z-index: 1; background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(224,64,176,0.1)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 5%; }
.metrics-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.metric-item { text-align: center; }
.metric-value { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 800; background: linear-gradient(135deg, #fff, var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.metric-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ─── CONTAINER & SECTIONS ─── */
section { position: relative; z-index: 1; }
.gc-container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.8px; line-height: 1.15; }
.section-title em { font-style: normal; background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { color: var(--muted); margin-top: 12px; max-width: 580px; line-height: 1.7; }

/* ─── PROBLEMS ─── */
.problems-section { padding: 100px 0; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.problem-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; gap: 14px; transition: border-color 0.2s, background 0.2s; }
.problem-card:hover { border-color: rgba(224,64,176,0.3); background: rgba(224,64,176,0.04); }
.problem-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(224,64,176,0.12); border: 1px solid rgba(224,64,176,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pink); }
.problem-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.evolution-box { margin-top: 48px; background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(224,64,176,0.08)); border: 1px solid rgba(124,58,237,0.25); border-radius: 20px; padding: 36px; }
.evolution-box h3 { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.evolution-box p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
.evolution-cycle { margin-top: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cycle-step { background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; font-size: 0.82rem; font-weight: 600; color: var(--pink); }
.cycle-arrow { color: var(--muted); }

/* ─── INCLUDED ─── */
.included-section { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(124,58,237,0.05), transparent); }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; transition: border-color 0.25s, transform 0.25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--pink), transparent); opacity: 0; transition: opacity 0.25s; }
.service-card:hover { border-color: rgba(224,64,176,0.25); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(224,64,176,0.1)); border: 1px solid rgba(224,64,176,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 18px; }
.service-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.service-list li { font-size: 0.83rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.service-list li::before { content: '◆'; color: var(--pink); font-size: 0.55rem; margin-top: 4px; flex-shrink: 0; }
.service-cta-text { font-size: 0.82rem; font-weight: 600; color: var(--pink); border-top: 1px solid var(--border); padding-top: 14px; }

/* ─── TABLE ─── */
.processes-section { padding: 100px 0; }
.processes-header { text-align: center; margin-bottom: 48px; }
.table-wrapper { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.table-head { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr; padding: 14px 24px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.table-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr; padding: 20px 24px; border-bottom: 1px solid var(--border); align-items: center; transition: background 0.2s; }
.table-row:last-child { border-bottom: none; }
.table-row:hover { background: rgba(255,255,255,0.02); }
.pilar-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.9rem; }
.pilar-sub { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }
.assign-btn { background: transparent; border: 1px solid var(--border); color: var(--muted); border-radius: 8px; padding: 5px 12px; font-size: 0.78rem; cursor: pointer; transition: border-color 0.2s; }
.assign-btn:hover { border-color: var(--pink); color: var(--pink); }
.status-badge { display: inline-flex; align-items: center; gap: 6px; border-radius: 100px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; }
.status-done { background: rgba(34,197,94,0.12); color: #4ade80; }
.status-wait { background: rgba(255,255,255,0.06); color: var(--muted); }
.priority-badge { display: inline-block; border-radius: 100px; padding: 4px 12px; font-size: 0.73rem; font-weight: 600; background: rgba(250,204,21,0.1); color: var(--yellow); }
.deadline-text { font-size: 0.85rem; font-weight: 600; color: var(--muted); }

/* ─── FOR WHOM ─── */
.for-whom-section { padding: 100px 0; }
.for-whom-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.fw-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.fw-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--muted); }
.fw-list li .chk-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); display: flex; align-items: center; justify-content: center; color: #4ade80; font-size: 0.7rem; flex-shrink: 0; margin-top: 1px; }
.rec-cards { display: flex; flex-direction: column; gap: 14px; }
.rec-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.rec-card.highlight { border-color: rgba(224,64,176,0.3); color: #fff; }
.rec-card.highlight strong { color: var(--pink); }

/* ─── METHODOLOGY ─── */
.methodology-section { padding: 100px 0; }
.method-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.method-img { border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(224,64,176,0.1)); border: 1px solid var(--border); height: 420px; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
.method-img-label { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(10,10,26,0.85); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.method-img-label strong { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; }
.method-img-label span { display: block; font-size: 0.78rem; color: var(--pink); margin-bottom: 6px; }
.method-img-label p { font-size: 0.8rem; color: var(--muted); }
.method-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; }
.method-content p strong { color: #fff; }

/* ─── CTA ─── */
.cta-section { padding: 120px 5%; text-align: center; background: linear-gradient(180deg, transparent, rgba(124,58,237,0.1), rgba(224,64,176,0.06), transparent); }
.cta-section h2 { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.cta-section p { color: var(--muted); max-width: 540px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-trust { display: flex; gap: 24px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.cta-trust span { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted); }
.cta-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ─── FOOTER ─── */
.site-footer { border-top: 1px solid var(--border); padding: 40px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-logo span { color: var(--pink); }
.site-footer p { font-size: 0.8rem; color: var(--muted); }

/* ─── NOTIFICATION ─── */
.notification { position: fixed; bottom: 28px; left: 28px; z-index: 200; background: rgba(15,15,40,0.92); backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); animation: slideIn 0.5s 2s ease both; max-width: 280px; }
.notif-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; flex-shrink: 0; color: #fff; }
.notif-text strong { display: block; font-size: 0.82rem; font-weight: 700; }
.notif-text span { font-size: 0.75rem; color: var(--muted); }
.notif-loc { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .problems-grid, .included-grid { grid-template-columns: 1fr 1fr; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .for-whom-inner, .method-inner { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
}
@media (max-width: 600px) {
  .problems-grid, .included-grid { grid-template-columns: 1fr; }
}
