/* ═══════════════════════════════════════════════════
   INOVAR CONTÁBIL — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:        #002868;
  --navy-dark:   #001845;
  --navy-mid:    #003580;
  --accent:      #1F6FF0;
  --accent-dark: #1558c0;
  --accent-light:rgba(31,111,240,.10);
  --gold:        #C9A84C;
  --gold-light:  rgba(201,168,76,.12);
  --gray-bg:     #F5F7FB;
  --gray-border: #E8ECF4;
  --text:        #1a2340;
  --text-muted:  #5a6484;
  --text-light:  #8a94b0;
  --white:       #ffffff;
  --success:     #10b981;
  --danger:      #ef4444;
  --dark-bg:     #000e2e;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 8px rgba(0,40,104,.06);
  --shadow:      0 4px 24px rgba(0,40,104,.10);
  --shadow-lg:   0 12px 48px rgba(0,40,104,.16);
  --shadow-xl:   0 24px 64px rgba(0,40,104,.20);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --nav-height:  76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { line-height: 1.2; letter-spacing: -.02em; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-wide {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--gray-bg); }
.section-dark { background: var(--navy); }
.section-darker { background: var(--navy-dark); }
.center { text-align: center; }

/* ── Grid utilities ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.badge-gold {
  color: var(--gold);
  background: var(--gold-light);
}
.badge-white {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
}

/* ── Section headings ── */
.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.section-label-white { color: rgba(255,255,255,.6); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title-white { color: var(--white); }
.section-title span { color: var(--accent); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-sub-white { color: rgba(255,255,255,.7); }
.section-sub.wide { max-width: 100%; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider-gold { background: linear-gradient(90deg, var(--gold), #e8c97a); }
.center .divider { margin: 16px auto 28px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,111,240,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,40,104,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8933e;
  border-color: #b8933e;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-icon { padding: 12px; border-radius: 50%; }

/* ── Cards (generic) ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-border);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31,111,240,.15);
}
.card-dark {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background var(--transition), transform var(--transition);
}
.card-dark:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-4px);
}
.card-accent-top::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  border-radius: 3px 3px 0 0;
  margin: -32px -32px 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.card-accent-top:hover::before { opacity: 1; }

/* ── Icon box ── */
.icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.icon-box-lg {
  width: 64px; height: 64px;
  font-size: 1.7rem;
  border-radius: var(--radius);
}
.icon-box-sm {
  width: 38px; height: 38px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}
.icon-box-navy { background: var(--navy); color: var(--white); }
.icon-box-gold { background: var(--gold-light); }
.icon-box-white { background: rgba(255,255,255,.15); }

/* ── Stat ── */
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.stat-num-white { color: var(--white); }
.stat-label-white { color: rgba(255,255,255,.6); }

/* ── Tags ── */
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gray-bg);
  color: var(--text-muted);
  border: 1px solid var(--gray-border);
}
.tag-accent {
  background: var(--accent-light);
  color: var(--accent);
  border-color: rgba(31,111,240,.2);
}
.tag-gold {
  background: var(--gold-light);
  color: var(--gold);
  border-color: rgba(201,168,76,.2);
}

/* ── List with checks ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--success);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list-white li { color: rgba(255,255,255,.75); }
.check-list-white li::before {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-body p { font-size: .85rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}
.faq-a {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb span { color: rgba(255,255,255,.85); font-weight: 500; }
.breadcrumb-sep { opacity: .4; }

/* ── Table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.data-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.data-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-border);
  color: var(--text-muted);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-bg); }
.data-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
}

/* ── Alert/info box ── */
.info-box {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-box-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.info-box p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.info-box p strong { color: var(--navy); }
.warning-box {
  background: rgba(201,168,76,.10);
  border-left-color: var(--gold);
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 14px 0;
}
#navbar.scrolled {
  background: rgba(0,24,69,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0,0,0,.2);
  padding: 8px 0;
}
#navbar.solid {
  background: var(--navy-dark);
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.01em;
  flex-shrink: 0;
  margin-right: 8px;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-sub {
  font-size: .62rem;
  font-weight: 500;
  opacity: .65;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-border);
  min-width: 580px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  transform: translateX(-50%) translateY(8px);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-left: 1px solid var(--gray-border);
  transform: translateX(-50%) rotate(45deg);
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  color: var(--text);
}
.dropdown-link:hover { background: var(--gray-bg); }
.dropdown-link-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.dropdown-link-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.dropdown-link-text span {
  font-size: .75rem;
  color: var(--text-muted);
}
.dropdown-footer {
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
}
.dropdown-footer a {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Nav CTA */
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-nav.open { display: flex; max-height: 600px; }
.mobile-nav-section {
  padding: 8px 16px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 8px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  margin: 0 8px;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.mobile-nav .mobile-cta {
  margin: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  justify-content: center;
}

/* ════════════════════════════════════════
   INNER PAGE HERO
════════════════════════════════════════ */
.page-hero {
  background: var(--navy-dark);
  padding: calc(var(--nav-height) + 56px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(31,111,240,.18) 0%, transparent 60%),
    linear-gradient(135deg, #001845 0%, #002868 60%, #003580 100%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.7);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ════════════════════════════════════════
   HOME HERO
════════════════════════════════════════ */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(31,111,240,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 95% 80%, rgba(31,111,240,.10) 0%, transparent 50%),
    linear-gradient(135deg, #000e2e 0%, #001845 40%, #002868 70%, #003580 100%);
}
.home-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.home-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.home-hero-shape-1 {
  width: 800px; height: 800px;
  background: rgba(31,111,240,.06);
  top: -300px; right: -200px;
  animation: floatShape 8s ease-in-out infinite;
}
.home-hero-shape-2 {
  width: 500px; height: 500px;
  background: rgba(255,255,255,.03);
  bottom: -200px; left: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.03); }
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.home-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 28px;
}
.home-hero-label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.3); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,.1); }
}
.home-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}
.home-hero h1 em {
  font-style: normal;
  color: #60a5fa;
  position: relative;
}
.home-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; }
.home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: #60a5fa; }
.hero-stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  font-weight: 500;
}
.hero-stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
  align-self: center;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 24px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: .83rem;
  font-weight: 500;
}
.trust-item span { font-size: 1.2rem; }

/* ════════════════════════════════════════
   SERVICE CARD
════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31,111,240,.2);
}
.service-card:hover::after { opacity: 1; }
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ════════════════════════════════════════
   DIFFERENTIALS
════════════════════════════════════════ */
.diff-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  opacity: 0;
  transition: opacity var(--transition);
}
.diff-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.diff-card:hover::before { opacity: 1; }
.diff-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: rgba(31,111,240,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.diff-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.diff-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.75; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-border);
  box-shadow: var(--shadow);
  padding: 32px;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  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: linear-gradient(135deg, var(--navy), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p { font-size: .95rem; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ════════════════════════════════════════
   CONTACT FORM
════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,111,240,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,.65);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
}
.footer-logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}
.footer-brand p { font-size: .84rem; line-height: 1.75; margin-bottom: 18px; }
.footer-cnpj-badge {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 18px;
  font-family: monospace;
}
.social-row { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .84rem;
}
.footer-contact-item span:first-child { font-size: 1rem; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .77rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  z-index: 9999;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.5);
}
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
.wa-tooltip {
  position: absolute;
  right: 64px;
  background: var(--white);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--white);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }
.fade-up:nth-child(7) { transition-delay: .6s; }
.fade-up:nth-child(8) { transition-delay: .7s; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .cta-banner { flex-direction: column; padding: 40px 32px; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .home-hero-stats { gap: 24px; }
  .hero-stat-sep { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  .data-table-wrap { overflow-x: auto; }
}
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 16px; }
  .home-hero h1 { font-size: 2.2rem; }
  .cta-banner { padding: 32px 24px; }
  .wa-float { bottom: 20px; right: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}
