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

/* ============================================================
   DIGITAL SHIELD — Premium Design System
   ============================================================ */

:root {
  /* === Core Palette === */
  --navy-900: #060e1e;
  --navy-800: #0b192e;
  --navy-700: #0f2240;
  --navy-600: #132d55;
  --navy-500: #1a3d72;

  --orange-500: #e48130;
  --orange-400: #f09040;
  --orange-600: #c96b20;
  --orange-glow: rgba(228, 129, 48, 0.25);

  --blue-500: #1e7bd6;
  --blue-400: #3b9eff;
  --blue-glow: rgba(30, 123, 214, 0.25);

  --bg-page: #0b1628;
  --bg-card: #0f2040;
  --bg-card-hover: #152a52;
  --bg-surface: #0d1c35;
  --bg-sidebar: #091525;

  --text-white: #f0f4ff;
  --text-muted: #8ba3c7;
  --text-subtle: #5a7ba8;
  --text-accent: #e48130;

  --border-dim: rgba(255, 255, 255, 0.07);
  --border-blue: rgba(59, 158, 255, 0.3);
  --border-orange: rgba(228, 129, 48, 0.4);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #060e1e 0%, #0b2040 40%, #0f2d4a 70%, #1a3d72 100%);
  --grad-orange: linear-gradient(90deg, #e48130, #f09040);
  --grad-blue: linear-gradient(90deg, #1e7bd6, #3b9eff);
  --grad-card: linear-gradient(145deg, #0f2040 0%, #091525 100%);
  --grad-sidebar-active: linear-gradient(90deg, rgba(228, 129, 48, 0.15), transparent);

  /* Typography */
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Animations */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Acessibilidade: Focus Ring visível para navegação por teclado */
:focus-visible {
  outline: 2px solid var(--orange-400);
  outline-offset: 4px;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem); }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
  background: rgba(6, 14, 30, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
  position: sticky;
  top: 0;
  z-index: 200;
}

.main-header {
  padding: 8px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo::before {
  display: none;
}

.logo span {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 16px; /* Increased padding for better touch target */
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  display: inline-block;
}

.main-nav a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a.active,
.main-nav a[href='/'] {
  color: var(--text-white);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-dim);
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumbs a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}

.breadcrumbs a:hover { color: var(--orange-400); }

.breadcrumbs span.separator {
  color: var(--text-subtle);
  font-size: 0.75rem;
  margin: 0 4px;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border-dim);
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(30, 123, 214, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 70% at 10% 80%, rgba(228, 129, 48, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-orange);
  box-shadow: 0 0 20px var(--orange-glow);
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228, 129, 48, 0.12);
  border: 1px solid var(--border-orange);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 8px var(--orange-400);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero-text h1 .highlight {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-number.orange { color: var(--orange-400); }
.stat-number.blue { color: var(--blue-400); }

.hero-card-box {
  flex-shrink: 0;
  width: 320px;
}

.hero-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.hero-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
  box-shadow: 0 0 12px var(--blue-glow);
}

.hero-info-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.88rem;
}

.info-row:last-child { border-bottom: none; }

.info-label {
  color: var(--text-subtle);
  font-weight: 500;
}

.info-value {
  color: var(--text-white);
  font-weight: 600;
}

.info-value.badge-green {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ============================================================
   PAGE LAYOUT — Sidebar + Content
   ============================================================ */
.page-layout {
  display: flex;
  gap: 32px;
  padding: 40px 0 100px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  width: 280px;
  flex-shrink: 0;
}

.sidebar-sticky {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-widget {
  background: var(--bg-sidebar);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  padding: 20px 16px;
  overflow: hidden;
  position: relative;
}

.nav-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--grad-blue);
}

.nav-menu-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-left: 10px;
}

.side-nav li { margin-bottom: 3px; }

.side-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
}

.side-nav a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-subtle);
  flex-shrink: 0;
  transition: all var(--transition);
}

.side-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.side-nav a:hover::before {
  background: var(--blue-400);
  box-shadow: 0 0 8px var(--blue-400);
}

.side-nav a.active {
  background: var(--grad-sidebar-active);
  color: var(--orange-400);
  font-weight: 600;
}

.side-nav a.active::before {
  background: var(--orange-400);
  box-shadow: 0 0 8px var(--orange-glow);
}

/* Contact Expert Widget */
.contact-expert {
  background: linear-gradient(145deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.contact-expert::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-orange);
  box-shadow: 0 0 12px var(--orange-glow);
}

.contact-expert h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.contact-expert p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  margin-top: 16px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(228, 129, 48, 0.3);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 129, 48, 0.45);
  color: #fff;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  flex-grow: 1;
  min-width: 0;
}

.page-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Content blocks */
.content-block {
  background: var(--grad-card);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.content-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-blue);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity var(--transition);
}

.content-block:hover {
  border-color: var(--border-blue);
  box-shadow: 0 0 0 1px var(--border-blue), 0 8px 32px rgba(0,0,0,0.3);
}

.content-block:hover::before {
  opacity: 1;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-block h2 .section-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(30, 123, 214, 0.2), rgba(59, 158, 255, 0.2));
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.content-block p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.content-block p:last-child { margin-bottom: 0; }

/* Principle list */
.principle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.principle-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid var(--border-dim);
  transition: all var(--transition);
}

.principle-item:hover {
  background: rgba(228, 129, 48, 0.06);
  border-color: var(--border-orange);
}

.principle-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(228, 129, 48, 0.25);
}

.principle-text strong {
  display: block;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.principle-text span {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 1px solid var(--border-dim);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: linear-gradient(90deg, var(--navy-600), var(--navy-500));
}

th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue-400);
}

td {
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-dim);
  line-height: 1.6;
}

tbody tr {
  background: rgba(255, 255, 255, 0.02);
  transition: background var(--transition);
}

tbody tr:hover {
  background: rgba(30, 123, 214, 0.06);
}

tbody tr:last-child td { border-bottom: none; }

td strong {
  color: var(--text-white);
  font-weight: 600;
}

/* Alert/Call-to-action link */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-400);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  margin-top: 8px;
}

.cta-link:hover {
  color: var(--orange-500);
  border-bottom-color: var(--orange-400);
  gap: 10px;
}

/* Warning/sanction badge */
.warning-card {
  background: rgba(228, 129, 48, 0.07);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 16px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.warning-card .warning-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border-dim);
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500), var(--orange-500), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-brand h4 span {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-subtle);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(30, 123, 214, 0.15);
  border-color: var(--border-blue);
  color: var(--blue-400);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue-400);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-subtle);
  margin-bottom: 10px;
  transition: all var(--transition);
  padding: 2px 0;
}

.footer-col a:hover {
  color: var(--text-white);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-dim);
}

.footer-bottom p {
  font-size: 0.83rem;
  color: var(--text-subtle);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.83rem;
  color: var(--text-subtle);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--text-white); }

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-500); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .page-layout { flex-direction: column; }
  .sidebar { width: 100%; }
  .sidebar-sticky { position: static; flex-direction: row; flex-wrap: wrap; }
  .nav-widget { flex: 1; min-width: 240px; }
  .hero-card-box { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-stats { gap: 20px; }
  .hero-text h1 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .hero-banner { padding: 40px 0; }
  
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed; /* Mudado para fixed para off-canvas */
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(6, 14, 30, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 80px 32px 32px; /* Espaço para o botão de fechar */
    gap: 16px;
    border-right: 1px solid var(--border-dim);
    border-bottom: none;
    clip-path: none;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .mobile-menu-btn {
    position: relative;
    z-index: 1001; /* Ficar acima do menu */
  }
  
  /* Overlay escurecido para o fundo quando o menu abre */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ============================================================
   NEW STYLES (Icons, Badges, Mobile Btn)
   ============================================================ */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn i {
  width: 28px;
  height: 28px;
}

.lucide {
  vertical-align: middle;
  width: 1.2em;
  height: 1.2em;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  margin-right: 6px;
}

/* Micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s;
}
.btn:hover::after {
  left: 100%;
}

/* Utilidades Premium */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   REPAGINAÇÃO - ESTRUTURA CORPORATIVA (NOVO LAYOUT)
   ============================================================ */
.section-padding {
  padding: 100px 0;
}

.bg-card {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 24px;
  color: var(--text-white);
}

.sobre-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.sobre-image {
  height: 400px;
  background: linear-gradient(135deg, rgba(30, 123, 214, 0.1), rgba(228, 129, 48, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.sobre-image::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--grad-orange);
  filter: blur(80px);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-orange);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-card i {
  width: 48px;
  height: 48px;
  color: var(--orange-400);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--text-white);
  transition: color var(--transition);
}

.service-card:hover h3 {
  color: var(--orange-400);
}

.service-card p {
  color: var(--text-subtle);
  font-size: 1rem;
  line-height: 1.6;
}

.lpdp-banner {
  padding: 48px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--border-blue);
}

.lpdp-banner h2 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.lpdp-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-image {
    height: 300px;
  }
  .lpdp-banner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .lpdp-banner p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 64px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .logo img {
    height: 60px;
  }
}

/* ============================================================
   NOVO FOOTER CORPORATIVO
   ============================================================ */
.site-footer {
  background-color: var(--bg-body);
  border-top: 1px solid var(--border-dim);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dim);
  color: var(--text-muted);
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--blue-900);
  border-color: var(--blue-400);
  color: var(--blue-400);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--blue-400);
  margin-bottom: 24px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--text-white);
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

