/* ==========================================================================
   AXIUM CONSULTING - ESTILO PREMIUM E CORPORATIVO
   Cores: Azul Chumbo (#0D1725), Azul Acinzentado (#9AC7E6), Branco (#FFFFFF),
          Prata Escovado (#C9CBD1/#C8CFD8)
   ========================================================================== */

/* Fontes */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta Principal (Manual de Marca) */
  --color-bg: #0D1725;
  --color-bg-light: #121E30;
  --color-bg-card: #15243B;
  --color-bg-card-hover: #1D314E;
  
  --color-primary: #9AC7E6;          /* Azul Acinzentado */
  --color-primary-rgb: 154, 199, 230;
  
  --color-silver: #C8CFD8;           /* Prata Escovado */
  --color-silver-dark: #716F6F;
  --color-white: #FFFFFF;
  
  /* Escala Auxiliar */
  --color-blue-medium: #243854;
  --color-blue-accent: #2F5994;
  --color-blue-light: #6295DD;
  --color-text-main: #FFFFFF;
  --color-text-muted: #A6BAD6;
  --color-text-dark: #6E85A6;
  
  /* Gradientes */
  --grad-metallic: linear-gradient(135deg, #FFFFFF 0%, #C8CFD8 50%, #716F6F 100%);
  --grad-primary: linear-gradient(135deg, #9AC7E6 0%, #2F5994 100%);
  --grad-card: linear-gradient(135deg, rgba(21, 36, 59, 0.85) 0%, rgba(13, 23, 37, 0.95) 100%);
  --grad-accent: linear-gradient(135deg, #9AC7E6 0%, #6295DD 50%, #2F5994 100%);
  
  /* Fontes */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Efeitos e Sombras */
  --shadow-glow: 0 0 20px rgba(154, 199, 230, 0.15);
  --shadow-glow-strong: 0 0 30px rgba(154, 199, 230, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Scrollbar Customizado */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-blue-medium);
  border-radius: 5px;
  border: 2px solid var(--color-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Patterns de Fundo (Manual da Axium) */

/* Pattern 1: Conexão Inteligente */
.pattern-conexao {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L80 80 M80 0 L0 80' stroke='rgba(154, 199, 230, 0.025)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='2' fill='rgba(154, 199, 230, 0.08)'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='rgba(154, 199, 230, 0.04)'/%3E%3Ccircle cx='80' cy='0' r='1.5' fill='rgba(154, 199, 230, 0.04)'/%3E%3Ccircle cx='0' cy='80' r='1.5' fill='rgba(154, 199, 230, 0.04)'/%3E%3Ccircle cx='80' cy='80' r='1.5' fill='rgba(154, 199, 230, 0.04)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Pattern 2: Fluxo de Performance */
.pattern-fluxo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.pattern-fluxo svg {
  position: absolute;
  width: 150%;
  height: 100%;
  transform: translate(-10%, -10%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: block;
}

p {
  color: var(--color-text-muted);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  gap: 10px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 4px 14px rgba(154, 199, 230, 0.3);
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

.btn-accent {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(154, 199, 230, 0.3);
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.btn-accent:hover {
  background: rgba(154, 199, 230, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-whatsapp-cta {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
  background: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Efeito de Texto Metálico */
.text-metallic {
  background: var(--grad-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}

.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}

/* ==========================================================================
   HEADER / MENU ANCORADO
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 23, 37, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154, 199, 230, 0.08);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  background: rgba(13, 23, 37, 0.95);
  border-bottom: 1px solid rgba(154, 199, 230, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .container {
  height: 65px;
}

/* Estilo do Logo */
.logo {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.25em;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1;
  padding-bottom: 15px;
  padding-top: 30px;
  cursor: pointer;
}

.logo-main-text {
  display: inline-flex;
  align-items: center;
}

.logo-x-container {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 -2px;
}

.logo-x-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 3px rgba(154, 199, 230, 0.5));
}

.logo-sub {
  position: absolute;
  bottom: 0px;
  left: 2px;
  font-size: 6.5px;
  font-weight: 500;
  letter-spacing: 0.49em;
  color: var(--color-primary);
  text-transform: uppercase;
}

/* Nav Menu */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-white);
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* Hamburguer Mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 11px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* Responsivo Header */
@media (max-width: 1120px) {
  nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: var(--color-bg-light);
    border-left: 1px solid rgba(154, 199, 230, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  nav.active {
    display: flex;
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 18px;
    width: 100%;
    display: block;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-cta {
    width: 100%;
  }
  
  .header-cta .btn {
    width: 100%;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad-accent);
  z-index: 1002;
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   HERO / PRIMEIRA DOBRA
   ========================================================================== */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--color-bg);
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(154, 199, 230, 0.08);
  border: 1px solid rgba(154, 199, 230, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-tag svg {
  fill: var(--color-primary);
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--color-text-muted);
}

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

/* Hero Visuals (Painel Interativo) */
.hero-visual {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1.2 / 1;
  background: var(--grad-card);
  border: 1px solid rgba(154, 199, 230, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  padding: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Floating Elements no Hero */
.floating-card {
  position: absolute;
  background: rgba(21, 36, 59, 0.9);
  border: 1px solid rgba(154, 199, 230, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* SVG Gráficos do Dashboard Mockup */
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(154, 199, 230, 0.1);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dot:nth-child(1) { background: #E2856E; }
.mockup-dot:nth-child(2) { background: var(--color-primary); }
.mockup-dot:nth-child(3) { background: #25D366; }

.mockup-title {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mockup-chart {
  width: 100%;
  height: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.chart-val-box {
  display: flex;
  flex-direction: column;
}

.chart-val-label {
  font-size: 10px;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.chart-val-num {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}

.chart-val-num.highlight {
  color: var(--color-primary);
}

.chart-svg-container {
  flex-grow: 1;
  position: relative;
  min-height: 150px;
}

/* Responsivo Hero */
@media (max-width: 991px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-tag {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 10px;
  }
  
  .floating-card-1 {
    right: 10px;
  }
  
  .floating-card-2 {
    left: 10px;
  }
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
section {
  padding: 50px 0;
  position: relative;
}

.section-header {
  max-width: 700px;
  margin-bottom: 30px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
#quem-somos {
  background-color: var(--color-bg-light);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.about-content p {
  font-size: 17px;
  margin-bottom: 30px;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(154, 199, 230, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  transition: var(--transition-smooth);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(154, 199, 230, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-card h3 svg {
  fill: var(--color-primary);
  width: 24px;
  height: 24px;
}

.about-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
#servicos {
  background-color: var(--color-bg);
}

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

.service-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(154, 199, 230, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(154, 199, 230, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(154, 199, 230, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(154, 199, 230, 0.15);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.service-card:hover .service-icon svg {
  fill: var(--color-bg);
  stroke: var(--color-bg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  transition: var(--transition-smooth);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-description {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--color-text-muted);
}

.service-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.service-list-item:last-child {
  margin-bottom: 0;
}

.service-list-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   QUANDO A AXIUM ENTRA (SINTOMAS)
   ========================================================================== */
#quando-atuamos {
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.symptom-intro {
  font-size: 17px;
  margin-bottom: 40px;
}

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

@media (max-width: 991px) {
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }

}
.symptom-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(226, 133, 110, 0.1); /* Toques suaves para indicar problema */
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.symptom-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #E2856E; /* Coral elegante para indicar sintoma */
  opacity: 0.7;
}

.symptom-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 133, 110, 0.3);
  box-shadow: 0 10px 25px rgba(226, 133, 110, 0.05);
}

.symptom-card:hover::after {
  background: var(--color-primary); /* Vira azul na resolução */
}

.symptom-icon {
  width: 48px;
  height: 48px;
  background: rgba(226, 133, 110, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.symptom-card:hover .symptom-icon {
  background: rgba(154, 199, 230, 0.1);
}

.symptom-card:hover .symptom-icon svg {
  fill: var(--color-primary);
}

.symptom-icon svg {
  width: 24px;
  height: 24px;
  fill: #E2856E;
  transition: var(--transition-smooth);
}

.symptom-content {
  flex-grow: 1;
}

.symptom-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.symptom-action {
  font-size: 13px;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition-smooth);
  display: block;
}

.symptom-card:hover .symptom-action {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
#diferenciais {
  background-color: var(--color-bg);
}

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

.diff-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(154, 199, 230, 0.05);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition-smooth);
}

.diff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(154, 199, 230, 0.2);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.diff-icon {
  width: 50px;
  height: 50px;
  background: rgba(154, 199, 230, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.diff-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-primary);
}

.diff-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.diff-description {
  font-size: 14.5px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   METODOLOGIA (LINHA DO TEMPO)
   ========================================================================== */
#metodologia {
  background-color: var(--color-bg-light);
}

.timeline-wrapper {
  position: relative;
  margin-top: 60px;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--grad-accent);
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(154, 199, 230, 0.5);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 3;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 4px solid var(--color-blue-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.timeline-step.active .timeline-node {
  background: var(--color-primary);
  border-color: var(--color-bg);
  color: var(--color-bg);
  box-shadow: 0 0 25px rgba(154, 199, 230, 0.6);
  transform: scale(1.15);
}

.timeline-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

.timeline-step.active .timeline-step-title {
  color: var(--color-primary);
}

.timeline-step-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 220px;
  margin: 0 auto;
}

/* Responsivo Metodologia */
@media (max-width: 991px) {
  .timeline-line {
    left: 40px;
    top: 0;
    width: 4px;
    height: 100%;
    transform: none;
  }
  
  .timeline-progress {
    left: 40px;
    top: 0;
    width: 4px;
    height: 0%;
    transform: none;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  
  .timeline-node {
    margin-bottom: 0;
    margin-right: 24px;
    flex-shrink: 0;
    z-index: 5;
  }
  
  .timeline-step-content {
    padding-top: 10px;
  }
  
  .timeline-step-desc {
    max-width: 100%;
  }
}

/* ==========================================================================
   RESULTADOS (KPIS ANIMADOS)
   ========================================================================== */
#resultados {
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.results-intro {
  font-size: 17px;
  margin-bottom: 50px;
}

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

.result-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(154, 199, 230, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(154, 199, 230, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.result-number {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.result-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.result-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   PARCEIRO ESTRATÉGICO
   ========================================================================== */
#parceiro {
  background-color: var(--color-bg-light);
}

.partner-wrapper {
  background: var(--grad-card);
  border: 1px solid rgba(154, 199, 230, 0.1);
  border-radius: var(--radius-lg);
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.partner-wrapper::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(154, 199, 230, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.partner-col {
  position: relative;
  z-index: 2;
}

.partner-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.partner-brand h3 {
  font-size: 26px;
  font-weight: 800;
}

.partner-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(154, 199, 230, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(154, 199, 230, 0.2);
}

.arise-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.arise-one-dot {
  color: #E2856E;
}

.partner-features {
  list-style: none;
}

.partner-features li {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.partner-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.partner-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.connector-line {
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, rgba(154, 199, 230, 0) 0%, rgba(154, 199, 230, 0.3) 50%, rgba(154, 199, 230, 0) 100%);
}

.connector-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid rgba(154, 199, 230, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-primary);
  margin: 15px 0;
  box-shadow: var(--shadow-glow);
}

.partner-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.partner-footer p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .partner-connector {
    flex-direction: row;
    height: auto;
  }
  
  .connector-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(154, 199, 230, 0) 0%, rgba(154, 199, 230, 0.3) 50%, rgba(154, 199, 230, 0) 100%);
  }
  
  .connector-badge {
    margin: 0 15px;
  }
  
  .partner-wrapper {
    padding: 30px;
  }
}

/* ==========================================================================
   CONTATO E DIAGNÓSTICO
   ========================================================================== */
#contato {
  background-color: var(--color-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  position: relative;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.step-item {
  display: flex;
  gap: 20px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(154, 199, 230, 0.08);
  border: 1px solid rgba(154, 199, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14.5px;
  color: var(--color-text-muted);
}

/* Formulário e Agendamento */
.contact-form-box {
  background: var(--color-bg-card);
  border: 1px solid rgba(154, 199, 230, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 14px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid rgba(154, 199, 230, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(154, 199, 230, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-cta-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cta-wrapper .btn {
  width: 100%;
}

.whatsapp-direct-link {
  text-align: center;
  font-size: 13.5px;
  color: var(--color-text-dark);
}

.whatsapp-direct-link a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-direct-link a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-form-box {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #080E17;
  border-top: 1px solid rgba(154, 199, 230, 0.05);
  padding: 80px 0 30px 0;
  font-size: 14.5px;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about {
  max-width: 320px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-info svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.social-link:hover svg {
  fill: var(--color-bg);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-muted);
  transition: var(--transition-smooth);
}

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

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), var(--shadow-glow);
  text-decoration: none;
  transition: var(--transition-smooth);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), var(--shadow-glow-strong);
  background-color: #20ba59;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   ANIMAÇÕES DE SCROLL (FADE IN)
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ==========================================================================
   MODAL DE SINTOMAS / SOLUÇÕES
   ========================================================================== */
.symptom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.symptom-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.symptom-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 23, 37, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.symptom-modal-container {
  position: relative;
  background: var(--grad-card);
  border: 1px solid rgba(154, 199, 230, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 550px;
  box-shadow: var(--shadow-card), var(--shadow-glow-strong);
  z-index: 2;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.symptom-modal.active .symptom-modal-container {
  transform: scale(1);
}

.symptom-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.symptom-modal-close:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: rotate(90deg);
}

.symptom-modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(154, 199, 230, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  border: 1px solid rgba(154, 199, 230, 0.2);
}

.symptom-modal-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
}

.symptom-modal-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.symptom-modal-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.symptom-modal-cta {
  display: inline-block;
  margin-top: 10px;
}

/* Barra de cookies */
.cookie-consent {
  position: fixed;
  left: 50px;
  right: 50px;
  bottom: 50px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(13, 23, 37, 0.96);
  border: 1px solid rgba(154, 199, 230, 0.25);
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.cookie-consent p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent button {
  border: none;
  background: #9ac7e6;
  color: #0d1725;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent button:hover {
  background: #ffffff;
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent button {
    width: 100%;
  }
}