/* ==========================================================================
   DESIGN SYSTEM & ESTILOS: SLOE TECNOLOGIA (TEMA CLARO OFICIAL DA MARCA)
   ========================================================================== */

/* Importação de Fontes Premium */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;850&display=swap');

/* Definição de Variáveis e Tokens de Design (Manual da Marca SLOE) */
:root {
  /* Paleta de Cores Oficial */
  --primary: #003B7A;                              /* Azul Confiança */
  --primary-light: #004d9f;
  
  --accent-green: #1E8E3E;                         /* Verde Educação */
  --accent-yellow: #FFB000;                        /* Amarelo Trator */
  --accent-blue: #3b82f6;                          
  
  --bg-light: #F4F6F8;                             /* Cinza Claro (Fundo do site) */
  --bg-white: #FFFFFF;                             /* Fundo de Cards e Painéis */
  --bg-sidebar: #003B7A;                           /* Sidebar escura (Azul Confiança) */
  
  --text-dark: #263238;                            /* Cinza Escuro (Textos principais) */
  --text-muted: #607d8b;                           /* Texto secundário/aço */
  --text-light: #FFFFFF;
  
  /* Sombras de Elementos */
  --shadow-sm: 0 4px 6px -1px rgba(0, 59, 122, 0.04), 0 2px 4px -1px rgba(0, 59, 122, 0.02);
  --shadow-md: 0 10px 20px -3px rgba(0, 59, 122, 0.06), 0 4px 6px -2px rgba(0, 59, 122, 0.04);
  --shadow-lg: 0 20px 30px -5px rgba(0, 59, 122, 0.09), 0 10px 15px -5px rgba(0, 59, 122, 0.06);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Configurações Globais */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
}

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

/* ==========================================================================
   LAYOUT COM SIDEBAR (SIDEBAR ESCURA)
   ========================================================================== */

/* Wrapper Geral do Conteúdo Principal */
.main-wrapper {
  margin-left: 220px;
  min-height: 100vh;
  transition: var(--transition-normal);
  background-color: var(--bg-light);
}

/* Sidebar Fixa (Fundo Azul Confiança Oficial) */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 220px;
  background-color: var(--bg-sidebar);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.sidebar-link i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.sidebar-link:hover i,
.sidebar-link.active i {
  color: var(--accent-yellow);
}

/* Box Informativo na Sidebar */
.sidebar-box {
  background: linear-gradient(135deg, rgba(30, 142, 62, 0.15) 0%, rgba(255, 176, 0, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-box-icon {
  color: var(--accent-yellow);
  font-size: 1.25rem;
}

.sidebar-box-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-socials {
  display: flex;
  gap: 10px;
  list-style: none;
}

.sidebar-social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.sidebar-social-link:hover {
  background-color: var(--accent-green);
  color: white;
  transform: translateY(-2px);
}

.sidebar-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* Header/Navbar Superior (Integrada ao Fundo Escuro do Hero) */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: rgba(0, 34, 75, 0.95); /* Azul Escuro combinando com o Hero */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--accent-yellow); /* Fita Amarela */
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: var(--accent-green); /* Fita Verde */
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 850;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-yellow);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: white;
}

/* ==========================================================================
   COMPONENTES E CONTEÚDO
   ========================================================================== */

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

section {
  padding: 100px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-green);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 142, 98, 0.2);
}

.btn-primary:hover {
  background-color: #176f30;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-yellow);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(255, 176, 0, 0.25);
}

.btn-accent:hover {
  background-color: #e09b00;
  transform: translateY(-2px);
}

/* ==========================================================================
   SEÇÕES: HERO E MOCKUP (TEMA ESCURO - WALLPAPER ESTILO MANUAL)
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, #003B7A 0%, #00224b 100%);
  color: white;
  padding-top: 80px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.hero-badge i {
  color: var(--accent-yellow);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -1px;
  color: white;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-benefits {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.benefit-item i {
  color: var(--accent-green);
}

/* ==========================================================================
   RECONSTRUÇÃO FIEL DO SISTEMA SLOE (DASHBOARD)
   ========================================================================== */

.hero-mockup {
  position: relative;
}

.dashboard-preview {
  background-color: #0b1222;                         /* Fundo escuro do painel do sistema real */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

.dashboard-preview:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
}

/* Header do Sistema */
.db-header-real {
  background-color: #0e1a30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.db-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.db-header-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.db-title-main {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.db-title-sub {
  font-size: 0.55rem;
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
}

.db-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: #a0aec0;
}

.db-nav-icons {
  display: flex;
  gap: 10px;
}

.db-nav-icon {
  position: relative;
  cursor: pointer;
}

.db-badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #fbbf24;
  color: white;
  font-size: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.db-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #3b82f6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

/* Área Interna */
.db-body-real {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Alerta de Sessão */
.db-session-alert {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px dashed rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
}

.db-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.db-session-text {
  color: #e2e8f0;
  line-height: 1.3;
}

.db-session-text strong {
  color: #10b981;
  text-transform: uppercase;
}

/* Faixa Banner SLOE Oficial com fita verde/amarela */
.db-banner-sloe {
  background: linear-gradient(135deg, #00224b, #001228);
  border-radius: var(--radius-sm);
  padding: 14px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--accent-yellow); /* Fita Amarela */
}

.db-banner-sloe::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: var(--accent-green); /* Fita Verde */
  z-index: 2;
}

.db-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.db-banner-logo-txt {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 850;
  color: white;
  letter-spacing: 0.5px;
}

.db-banner-logo-txt span {
  color: #10b981;
}

.db-banner-logo-sub {
  font-size: 0.5rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid de Atalhos Rápidos (Estilo Botões Azuis) */
.db-shortcuts-header {
  font-size: 0.6rem;
  font-weight: 700;
  color: #a0aec0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.db-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.db-shortcut-card {
  background-color: #1e50bc;
  border-radius: var(--radius-sm);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  cursor: pointer;
  transition: var(--transition-fast);
}

.db-shortcut-card:hover {
  background-color: #1a45a3;
  transform: translateY(-2px);
}

.db-shortcut-card i {
  font-size: 1.15rem;
}

.db-shortcut-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
}

/* Rodapé do Mockup */
.db-footer-real {
  background-color: #080d18;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  color: #a0aec0;
}

.db-footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.db-footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.db-online-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: #10b981;
  font-weight: 600;
}

.db-online-dot {
  width: 5px;
  height: 5px;
  background-color: #10b981;
  border-radius: 50%;
}

/* Ornamentos Flutuantes */
.float-element {
  background: var(--bg-white);
  border: 1px solid rgba(0, 59, 122, 0.08);
  box-shadow: var(--shadow-lg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}

.float-1 { bottom: -10px; left: -15px; }
.float-2 { top: 15px; right: -15px; animation-delay: 3s; }

.float-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(30, 142, 62, 0.1);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon-blue {
  background-color: rgba(0, 59, 122, 0.1);
  color: var(--primary);
}

.float-info { display: flex; flex-direction: column; }
.float-title { font-size: 0.65rem; color: var(--text-muted); }
.float-desc { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--primary); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   SEÇÕES: SOLUÇÕES E DIFERENCIAIS
   ========================================================================== */

.solutions {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
}

.section-desc {
  color: var(--text-dark);
  opacity: 0.85;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sol-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 59, 122, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-green), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.sol-card:hover::before { transform: scaleX(1); }

.sol-card:hover {
  background-color: var(--bg-white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 59, 122, 0.1);
}

.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(30, 142, 62, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.sol-card:nth-child(2) .sol-icon { background-color: rgba(0, 59, 122, 0.1); color: var(--primary); }
.sol-card:nth-child(3) .sol-icon { background-color: rgba(255, 176, 0, 0.15); color: var(--accent-yellow); }

.sol-info { display: flex; flex-direction: column; gap: 10px; }
.sol-name { font-size: 1.35rem; color: var(--primary); }
.sol-desc { font-size: 0.9rem; color: var(--text-muted); }
.sol-features { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.sol-feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-dark); }
.sol-feature-item i { color: var(--accent-green); }
.sol-card:nth-child(2) .sol-feature-item i { color: var(--primary); }
.sol-card:nth-child(3) .sol-feature-item i { color: var(--accent-yellow); }

.sol-link {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sol-card:nth-child(2) .sol-link { color: var(--primary); }
.sol-card:nth-child(3) .sol-link { color: var(--accent-yellow); }

.sol-link i { transition: var(--transition-fast); }
.sol-card:hover .sol-link i { transform: translateX(3px); }

/* Diferenciais */
.benefits-section { background-color: var(--bg-light); }
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.benefit-card {
  background-color: var(--bg-white);
  padding: 24px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 59, 122, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: var(--transition-normal);
}

.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0, 59, 122, 0.1); }

.benefit-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 59, 122, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.benefit-card:nth-child(1) .benefit-card-icon { color: var(--primary); }
.benefit-card:nth-child(2) .benefit-card-icon { color: var(--accent-green); }
.benefit-card:nth-child(3) .benefit-card-icon { color: var(--accent-yellow); }
.benefit-card:nth-child(4) .benefit-card-icon { color: var(--primary); }
.benefit-card:nth-child(5) .benefit-card-icon { color: var(--accent-green); }

.benefit-card-title { font-size: 1rem; color: var(--primary); }
.benefit-card-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Contato */
.contact { background-color: var(--bg-white); }
.contact-wrapper { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; list-style: none; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 59, 122, 0.05);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item:nth-child(2) .contact-item-icon { color: var(--accent-green); background-color: rgba(30, 142, 62, 0.1); }

.contact-item-text { display: flex; flex-direction: column; }
.contact-label { font-size: 0.7rem; color: var(--text-muted); }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }

.contact-form-container {
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 59, 122, 0.05);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--primary); }
.form-control {
  font-family: 'Inter', sans-serif;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 59, 122, 0.1);
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.9rem;
}
.form-control:focus { outline: none; border-color: var(--primary); }

/* ==========================================================================
   FOOTER COM AS ONDAS/FAIXAS DO MANUAL DE MARCA
   ========================================================================== */

.footer-wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -5px;
  background-color: transparent;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px 0;
}

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-logo-text { font-family: 'Outfit', sans-serif; font-size: 1.85rem; font-weight: 850; color: white; }
.footer-logo-text span { color: var(--accent-green); }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-links, .footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links { list-style: none; font-size: 0.85rem; }
.footer-links a:hover { color: white; }
.footer-col-title { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-terms {
  display: flex;
  gap: 16px;
}

/* Hamburger */
.hamburger { display: none; }
.hamburger span { background-color: white; }

/* ==========================================================================
   RESPONSIVIDADE MÓVEL
   ========================================================================== */

@media (max-width: 1120px) {
  .sidebar {
    width: 180px;
    padding: 24px 10px;
  }
  .main-wrapper {
    margin-left: 180px;
  }
  .sidebar-link {
    font-size: 0.82rem;
    padding: 8px 10px;
    gap: 8px;
  }
  .sidebar-link i {
    font-size: 0.95rem;
  }
  .sidebar-box {
    padding: 12px;
  }
  .sidebar-box-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  
  .main-wrapper {
    margin-left: 0;
  }
  
  .header {
    position: sticky;
    top: 0;
  }
  
  .hamburger {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: white;
    margin: 4px 0;
    transition: var(--transition-fast);
  }
  
  .nav-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background-color: var(--primary);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge { align-self: center; }
  .hero-actions, .hero-benefits { justify-content: center; }
  
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-header { text-align: center; }
  .contact-list { align-items: center; }
}

@media (max-width: 768px) {
  .nav-container {
    height: 70px;
  }
  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
  .logo {
    gap: 8px !important;
  }
  .logo-title {
    font-size: 1.55rem;
  }
  .logo-subtitle {
    display: block !important;
    font-size: 0.46rem;
    letter-spacing: 0.1px;
    white-space: nowrap;
  }
  #btn-acessar-sistemas {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .hero {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .hero-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-card {
    align-items: center;
    text-align: center;
  }
  .sol-features {
    align-self: center;
  }
  .sol-link {
    align-self: center;
    margin-top: 12px;
  }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-brand > div {
    justify-content: center !important;
  }
  .footer-links, .footer-col {
    align-items: center;
  }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-terms { justify-content: center; }
}

@media (max-width: 480px) {
  #btn-acessar-sistemas {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .hide-mobile {
    display: none !important;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .hero-description {
    font-size: 0.88rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .section-title {
    font-size: 1.65rem;
  }
}
