
/* ============================================================
   DIGIPEOPLE — WORDPRESS-READY CSS
   Todas as variáveis CSS, reset, componentes e responsividade
   ============================================================ */
:root {
  --teal-deep: #0A2E36;
  --teal-primary: #0D4F5C;
  --teal-accent: #0891B2;
  --teal-light: #22D3EE;
  --teal-pale: #ECFEFF;
  --teal-glass: rgba(8,145,178,0.08);
  --coral: #F97066;
  --coral-light: #FFF1F0;
  --amber: #F59E0B;
  --amber-light: #FFFBEB;
  --green: #10B981;
  --green-light: #ECFDF5;
  --red: #EF4444;
  --orange: #F59E0B;
  --orange-light: #FEF3C7;
  --violet: #7C3AED;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F0F3F5;
  --gray-100: #E2E7EB;
  --gray-200: #C8D0D8;
  --gray-400: #8494A7;
  --gray-600: #536375;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(10,46,54,0.06);
  --shadow-md: 0 4px 16px rgba(10,46,54,0.08);
  --shadow-lg: 0 8px 32px rgba(10,46,54,0.12);
  --shadow-xl: 0 16px 48px rgba(10,46,54,0.16);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* SKIP TO CONTENT (A11Y) */
.skip-to-content {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--teal-accent); color: white; padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600; z-index: 9999; transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

/* ALERT BANNER */
.alert-banner {
  background: linear-gradient(135deg, var(--teal-accent) 0%, var(--teal-primary) 100%);
  color: white; padding: 10px 24px; text-align: center;
  font-size: 14px; font-weight: 500; position: relative; z-index: 1001;
}
.alert-banner a { color: white; text-decoration: underline; font-weight: 700; }
.alert-banner .close-banner {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: white; font-size: 18px; cursor: pointer; opacity: 0.8;
}
.alert-banner .close-banner:hover { opacity: 1; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900;
  color: var(--teal-deep);
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 3px;
}
.logo .digi { color: var(--teal-accent); }
.logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); display: inline-block; margin-left: 2px; margin-bottom: -2px; }
.main-navigation { display: flex; align-items: center; gap: 32px; }
.main-navigation a {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--gray-600); transition: var(--transition); position: relative;
}
.main-navigation a:hover, .main-navigation a:focus { color: var(--teal-accent); }
.nav-cta {
  background: var(--teal-accent) !important; color: white !important;
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-weight: 600 !important; font-size: 14px !important;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--teal-deep) !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-800); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* MOBILE NAV */
.mobile-nav-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; transition: opacity 0.3s;
}
.mobile-nav-overlay.active { display: block; opacity: 1; }
.mobile-nav-panel {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100%;
  background: white; z-index: 1002; padding: 80px 24px 24px;
  box-shadow: var(--shadow-xl); transition: right 0.3s ease;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav-panel.active { right: 0; }
.mobile-nav-panel a {
  display: block; padding: 14px 16px; font-size: 16px; font-weight: 500;
  color: var(--gray-800); border-radius: var(--radius-sm); transition: var(--transition);
}
.mobile-nav-panel a:hover { background: var(--teal-pale); color: var(--teal-accent); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px; background: none;
  border: none; font-size: 24px; cursor: pointer; color: var(--gray-600);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}

/* HERO */
.hero-section {
  position: relative; padding: 100px 0 80px; overflow: hidden;
  background: linear-gradient(175deg, var(--white) 0%, var(--teal-pale) 40%, var(--off-white) 100%);
}
.hero-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,112,102,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-pale); border: 1px solid rgba(8,145,178,0.2);
  color: var(--teal-accent); padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
  animation: fadeUp 0.6s ease forwards;
}
.hero-badge::before { content: '🏢'; }
.hero-section h1 {
  font-family: var(--font-display);
  font-size: 50px; font-weight: 900; line-height: 1.1;
  color: var(--teal-deep); letter-spacing: -2px; margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s forwards; opacity: 0;
}
.hero-section h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal-accent), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 18px; line-height: 1.7; color: var(--gray-600);
  margin-bottom: 36px; max-width: 540px;
  animation: fadeUp 0.6s ease 0.2s forwards; opacity: 0;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s forwards; opacity: 0;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-accent); color: white;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(8,145,178,0.3);
}
.btn-primary:hover, .btn-primary:focus { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8,145,178,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--teal-accent);
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  border: 2px solid var(--teal-accent); cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover, .btn-secondary:focus { background: var(--teal-glass); transform: translateY(-2px); }
.btn-coral {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: white;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(249,112,102,0.3); margin-top: 32px;
}
.btn-coral:hover, .btn-coral:focus { background: #E85C50; transform: translateY(-2px); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; animation: fadeUp 0.8s ease 0.3s forwards; opacity: 0; }
.hero-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); padding: 32px; position: relative; overflow: hidden;
  animation: dashPulse 4s ease-in-out infinite;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal-accent), var(--teal-light), var(--coral));
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dash-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); font-weight: 600; }
.dash-live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: liveGlow 1.5s ease-in-out infinite; }
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.dash-metric { background: var(--off-white); border-radius: var(--radius-md); padding: 16px; animation: counterUp 0.6s ease-out both; }
.dash-metric-label { font-size: 12px; color: var(--gray-400); font-weight: 500; margin-bottom: 4px; }
.dash-metric-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--teal-deep); }
.dash-metric-value.green { color: var(--green); }
.dash-metric-change { font-size: 12px; font-weight: 600; color: var(--green); }
.dash-bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 80px; padding-top: 8px; }
.dash-bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--teal-accent), var(--teal-light)); opacity: 0.7; transition: var(--transition); animation: barGrow 1.2s ease-out forwards; background-size: 200% 100%; position: relative; }
.dash-bar:hover { opacity: 1; }
.floating-badge { position: absolute; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 12px 16px; font-size: 13px; font-weight: 600; animation: float 4s ease-in-out infinite; }
.floating-badge.badge-ai { top: -16px; right: -16px; color: var(--teal-accent); border: 1px solid var(--teal-pale); }
.floating-badge.badge-savings { bottom: 40px; left: -20px; color: var(--green); border: 1px solid var(--green-light); animation-delay: 1.5s; }

/* IMPACT BAR */
.impact-bar {
  background: var(--teal-deep); padding: 48px 0;
  position: relative; overflow: hidden;
}
.impact-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; position: relative; z-index: 2; }
.impact-item { padding: 8px; }
.impact-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: white; line-height: 1; margin-bottom: 8px; }
.impact-number span { color: var(--teal-light); }
.impact-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; line-height: 1.4; }

/* QUEM SOMOS */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal-accent); margin-bottom: 16px; font-family: var(--font-display); }
.about-title { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--teal-deep); letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.about-text { font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.about-highlight { background: var(--teal-pale); border-left: 4px solid var(--teal-accent); padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.about-highlight p { font-size: 15px; color: var(--teal-deep); font-weight: 500; line-height: 1.6; margin: 0; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-stat-card { background: var(--off-white); border-radius: var(--radius-md); padding: 28px; text-align: center; border: 1px solid var(--gray-100); transition: var(--transition); }
.about-stat-card:hover { border-color: var(--teal-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.about-stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--teal-accent); margin-bottom: 4px; }
.about-stat-label { font-size: 13px; color: var(--gray-600); font-weight: 500; }

/* THREE PILLARS */
.pillars { padding: 100px 0; background: var(--off-white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal-accent); margin-bottom: 16px; font-family: var(--font-display); }
.section-title { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--teal-deep); letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--gray-600); line-height: 1.65; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal-accent); transform: scaleX(0); transition: var(--transition); }
.pillar-card:hover { border-color: var(--teal-accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:nth-child(2)::before { background: var(--coral); }
.pillar-card:nth-child(2):hover { border-color: var(--coral); }
.pillar-card:nth-child(3)::before { background: var(--green); }
.pillar-card:nth-child(3):hover { border-color: var(--green); }
.pillar-icon { width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; }
.pillar-icon.teal { background: var(--teal-pale); }
.pillar-icon.coral { background: var(--coral-light); }
.pillar-icon.green { background: var(--green-light); }
.pillar-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--teal-deep); margin-bottom: 12px; }
.pillar-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.pillar-stat { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-100); font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.pillar-stat strong { font-size: 24px; color: var(--teal-accent); }
.pillar-card:nth-child(2) .pillar-stat strong { color: var(--coral); }
.pillar-card:nth-child(3) .pillar-stat strong { color: var(--green); }

/* SOLUTIONS */
.solutions { padding: 100px 0; background: var(--white); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 32px;
  cursor: pointer; transition: var(--transition); border: 1px solid transparent; position: relative;
}
.solution-card:hover { background: white; box-shadow: var(--shadow-lg); border-color: var(--teal-accent); transform: translateY(-4px); }
.solution-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.solution-card:nth-child(2) .solution-icon { background: var(--coral-light); }
.solution-card:nth-child(3) .solution-icon { background: var(--amber-light); }
.solution-card:nth-child(4) .solution-icon { background: var(--green-light); }
.solution-card:nth-child(5) .solution-icon { background: #F3E8FF; }
.solution-card:nth-child(6) .solution-icon { background: #FFF7ED; }
.solution-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--teal-deep); margin-bottom: 10px; }
.solution-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.solution-link { font-size: 14px; font-weight: 600; color: var(--teal-accent); display: flex; align-items: center; gap: 4px; transition: var(--transition); }
.solution-card:hover .solution-link { gap: 8px; }

/* DIFERENCIAL */
.diferencial-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #072028 60%, #0A1520 100%);
  position: relative; overflow: hidden;
}
.diferencial-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(8,145,178,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.diferencial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.diferencial-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,112,102,0.15); border: 1px solid rgba(249,112,102,0.3);
  color: var(--coral); padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}
.diferencial-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 20px; }
.diferencial-title em { font-style: normal; color: var(--coral); }
.diferencial-text { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 32px; }
.diferencial-points { display: flex; flex-direction: column; gap: 20px; }
.diferencial-point { display: flex; gap: 16px; align-items: flex-start; }
.diferencial-point-icon { width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius-sm); background: rgba(8,145,178,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.diferencial-point-text h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.diferencial-point-text p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.diferencial-visual { display: flex; flex-direction: column; gap: 16px; }
.diferencial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 24px; backdrop-filter: blur(10px);
}
.diferencial-card-title { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--teal-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.comp-table { width: 100%; }
.comp-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.comp-row:last-child { border-bottom: none; }
.comp-label { font-size: 14px; color: rgba(255,255,255,0.6); flex: 1; }
.comp-badge { padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; text-align: center; min-width: 90px; }
.comp-badge.red { background: rgba(249,112,102,0.15); color: var(--coral); }
.comp-badge.green { background: rgba(16,185,129,0.15); color: var(--green); }

/* HOW IT WORKS */
.how-it-works { padding: 100px 0; background: var(--off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--teal-accent), var(--teal-light), var(--green)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-accent); color: white; font-family: var(--font-display); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(8,145,178,0.3); }
.step-card:nth-child(2) .step-number { background: var(--teal-light); color: var(--teal-deep); }
.step-card:nth-child(3) .step-number { background: var(--teal-primary); }
.step-card:nth-child(4) .step-number { background: var(--green); }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--teal-deep); margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.step-time { margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--teal-accent); font-family: var(--font-display); }

/* ROI CALCULATOR */
.calculator-section { padding: 100px 0; background: var(--white); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.calc-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.calc-form label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; font-family: var(--font-display); }
.calc-form input[type="range"] { width: 100%; margin-bottom: 24px; accent-color: var(--teal-accent); height: 6px; }
.calc-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--teal-accent); text-align: center; margin-bottom: 24px; }
.calc-value span { font-size: 16px; color: var(--gray-400); font-weight: 500; }
.calc-select { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-100); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--gray-800); margin-bottom: 24px; background: white; cursor: pointer; transition: var(--transition); }
.calc-select:focus { outline: none; border-color: var(--teal-accent); }
.calc-results { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.calc-results-header { background: var(--teal-deep); padding: 24px 32px; }
.calc-results-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white; }
.calc-results-body { padding: 32px; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--gray-50); }
.calc-result-row:last-child { border-bottom: none; }
.calc-result-label { font-size: 14px; color: var(--gray-600); }
.calc-result-value { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--gray-800); }
.calc-result-value.red { color: var(--coral); }
.calc-result-highlight { background: var(--green-light); border-radius: var(--radius-md); padding: 20px 24px; margin-top: 16px; text-align: center; }
.calc-result-highlight .savings-label { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 4px; }
.calc-result-highlight .savings-value { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--green); }
.calc-result-highlight .savings-sub { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* REFORMA TRIBUTÁRIA */
.reform-section { padding: 100px 0; background: linear-gradient(135deg, var(--teal-deep) 0%, #061F26 60%, #1A1520 100%); position: relative; overflow: hidden; }
.reform-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(249,112,102,0.08) 0%, transparent 60%); pointer-events: none; }
.reform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.reform-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,112,102,0.15); border: 1px solid rgba(249,112,102,0.3); color: var(--coral); padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.reform-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 20px; }
.reform-title em { font-style: normal; color: var(--coral); }
.reform-text { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 32px; }
.reform-points { display: flex; flex-direction: column; gap: 20px; }
.reform-point { display: flex; gap: 16px; align-items: flex-start; }
.reform-point-icon { width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius-sm); background: rgba(249,112,102,0.12); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.reform-point-text h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.reform-point-text p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.reform-visual { display: flex; flex-direction: column; gap: 16px; }
.reform-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 24px; backdrop-filter: blur(10px); }
.reform-card-title { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.reform-comparison { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.reform-col { text-align: center; }
.reform-col-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.reform-col-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: white; }
.reform-col-value.red { color: var(--red); }
.reform-col-value.green { color: var(--green); }
.reform-vs { font-family: var(--font-display); font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 700; }
.reform-col-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* IA SECTION */
.ia-section { padding: 100px 0; background: var(--off-white); }
.ia-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ia-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); border: 1px solid var(--gray-100); }
.ia-card:hover { border-color: var(--teal-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ia-emoji { font-size: 32px; margin-bottom: 16px; }
.ia-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--teal-deep); margin-bottom: 8px; }
.ia-card-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.ia-card-stat { display: inline-block; background: var(--teal-pale); color: var(--teal-accent); padding: 4px 12px; border-radius: 50px; font-size: 13px; font-weight: 700; font-family: var(--font-display); }

/* TESTIMONIALS */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-100); }
.testimonial-stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-800); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--teal-accent); }
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.testimonial-role { font-size: 13px; color: var(--gray-400); }

/* FINAL CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-primary));
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(8,145,178,0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(34,211,238,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 16px; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { padding: 18px 40px; font-size: 17px; }
.final-cta .trust-text { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* FOOTER */
.site-footer { background: var(--gray-900); padding: 64px 0 32px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 22px; margin-bottom: 16px; color: white; }
.footer-brand .logo .digi { color: var(--teal-light); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--teal-accent); color: white; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; }
.footer-bottom a { margin-left: 24px; }
.footer-bottom a:hover { color: var(--teal-light); }

/* WHATSAPP */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999; transition: var(--transition); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* Badge New */
.badge-new {
  display: inline-block; background: var(--coral); color: white;
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  margin-left: 6px; text-transform: uppercase; letter-spacing: 0.5px; vertical-align: middle;
}

/* Enhanced Dashboard Animations */
@keyframes barGrow { from { height: 0 !important; } }
@keyframes counterUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmerBar { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes dashPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(8,145,178,0.2); } 50% { box-shadow: 0 0 20px 4px rgba(8,145,178,0.15); } }
@keyframes liveGlow { 0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--green); } 50% { opacity: 0.4; box-shadow: 0 0 8px var(--green); } }
.dash-bar:nth-child(1) { animation-delay: 0.1s; }
.dash-bar:nth-child(2) { animation-delay: 0.2s; }
.dash-bar:nth-child(3) { animation-delay: 0.3s; }
.dash-bar:nth-child(4) { animation-delay: 0.4s; }
.dash-bar:nth-child(5) { animation-delay: 0.5s; }
.dash-bar:nth-child(6) { animation-delay: 0.6s; }
.dash-bar:nth-child(7) { animation-delay: 0.7s; }
.dash-bar:nth-child(8) { animation-delay: 0.8s; }
.dash-bar:nth-child(9) { animation-delay: 0.9s; }
.dash-bar:nth-child(10) { animation-delay: 1.0s; }
.dash-bar:nth-child(11) { animation-delay: 1.1s; }
.dash-bar:nth-child(12) { animation-delay: 1.2s; }
.dash-bar::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmerBar 3s ease-in-out infinite; border-radius: inherit;
}
.dash-metric:nth-child(1) { animation-delay: 0.3s; }
.dash-metric:nth-child(2) { animation-delay: 0.5s; }
.dash-metric:nth-child(3) { animation-delay: 0.7s; }
.dash-metric:nth-child(4) { animation-delay: 0.9s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-section h1 { font-size: 40px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .section-title { font-size: 32px; }
  .diferencial-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .main-navigation { display: none; }
  .mobile-toggle { display: block; }
  .hero-section { padding: 60px 0 40px; }
  .hero-section h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-coral { width: 100%; justify-content: center; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .impact-number { font-size: 36px; }
  .pillars-grid, .solutions-grid, .ia-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .reform-grid { grid-template-columns: 1fr; }
  .reform-title { font-size: 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .about-title, .diferencial-title { font-size: 28px; }
  .about-stats { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .alert-banner { font-size: 12px; padding: 8px 40px 8px 16px; }
}

