/* ============================================
   CYBER PROTECTION - Premium Corporate Design
   Color Palette: Blue-Steel (#1e3a5f) + Terracotta (#d97757)
   Typography: Playfair Display + Lato
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;500;600&display=swap');

/* ============================================
   CSS VARIABLES - Color System
   ============================================ */

/* ============================================
   PALETA 1: Escudo & Alerta (Recomendada)
   ============================================ */
/* ============================================
   PALETA 2: Nuvem & Alta Tecnologia
   ============================================ */
:root {
  /* Primary Colors */
  --primary: #0B192C; /* Azul profundo corporativo */
  --primary-foreground: #ffffff;
  --accent: #0ea5e9; /* Ciano/Tech Blue - Cor de linhas de código e dados */
  --accent-foreground: #ffffff;
  
  /* Backgrounds */
  --background: #ffffff; /* Fundo branco puro, muito clean */
  --foreground: #0f172a;
  --secondary: #f4f6f8;
  --muted: #e2e8f0;
  --muted-foreground: #64748b;
  
  /* Borders */
  --border: #e2e8f0;
  --card-bg: #ffffff;
  
  /* Spacing */
  --radius: 0.65rem;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
/* ============================================
   CORREÇÃO GLOBAL DE ESPAÇAMENTO DE FONTES
   ============================================ */

/* Remove o espremido dos textos normais */
body, p, span, div, a, li {
  letter-spacing: normal !important;
}

/* Remove o espremido de todos os títulos */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: normal !important;
}

/* Dá um respiro extra para a caixa específica de "O Risco" */
.mechanic-risk {
  letter-spacing: normal !important;
  word-spacing: 1.5px;
  line-height: 1.7;
  padding: 1.2rem !important;
}

/* Dá um respiro extra para a caixa do "Mito" */
.risk-myth {
  letter-spacing: normal !important;
  word-spacing: 1.5px;
  line-height: 1.6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  letter-spacing: -0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--muted-foreground);
}

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.py-8 { padding: 2rem 0; }
.py-12 { padding: 3rem 0; }
.py-16 { padding: 4rem 0; }
.py-24 { padding: 6rem 0; }

.px-4 { padding: 0 1rem; }
.px-6 { padding: 0 1.5rem; }

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid {
  display: grid;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid-cols-3 { grid-template-columns: 1fr; }
  .md\:grid-cols-2 { grid-template-columns: 1fr; }
  .md\:grid-cols-3 { grid-template-columns: 1fr; }
}

.hidden { display: none; }

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15); }

.hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15); }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-l-4 { border-left: 4px solid var(--accent); }

.bg-background { background-color: var(--background); }
.bg-secondary { background-color: var(--secondary); }
.bg-card { background-color: var(--card-bg); }
.bg-white { background-color: #ffffff; }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }

.bg-secondary\/50 { background-color: rgba(245, 241, 237, 0.5); }
.bg-primary\/5 { background-color: rgba(30, 58, 95, 0.05); }
.bg-accent\/5 { background-color: rgba(217, 119, 87, 0.05); }
.bg-accent\/10 { background-color: rgba(217, 119, 87, 0.1); }
.bg-accent\/20 { background-color: rgba(217, 119, 87, 0.2); }
.bg-accent\/30 { background-color: rgba(217, 119, 87, 0.3); }

.text-foreground { color: var(--foreground); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-white { color: #ffffff; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 400; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.transition { transition: all 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }

.opacity-80 { opacity: 0.8; }

.w-full { width: 100%; }
.w-auto { width: auto; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   NAVIGATION
   ============================================ */
.hambuguer-contate-nos {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Espaço perfeito entre o ícone 📞 e o texto */
  color: #ffffff !important; /* Força o texto branco */
  border: 2px solid rgba(255, 255, 255, 0.8); /* Borda branca levemente suave */
  padding: 0.5rem 1.5rem; /* Dá "corpo" ao botão (altura e largura) */
  border-radius: 50px; /* Deixa as pontas totalmente arredondadas (estilo pílula) */
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background-color: transparent; /* Fundo transparente */
  transition: all 0.3s ease; /* Deixa a animação macia */
}
.nav-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Espaço perfeito entre o ícone 📞 e o texto */
  color: #ffffff !important; /* Força o texto branco */
  border: 2px solid rgba(255, 255, 255, 0.8); /* Borda branca levemente suave */
  padding: 0.5rem 1.5rem; /* Dá "corpo" ao botão (altura e largura) */
  border-radius: 50px; /* Deixa as pontas totalmente arredondadas (estilo pílula) */
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background-color: transparent; /* Fundo transparente */
  transition: all 0.3s ease; /* Deixa a animação macia */
}

/* Efeito UAU ao passar o mouse em cima */
.nav-cta a:hover {
  background-color: #ffffff; /* O botão preenche de branco */
  color: #0a4c8a !important; /* O texto muda para o azul escuro da RTC */
  transform: translateY(-2px); /* Dá uma leve "levantadinha" na tela */
  box-shadow: 0 4px 12px rgba(25, 205, 234, 0.4); /* Cria um brilho ciano em volta */
}
nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #021a3a 0%, #0a4c8a 85%, #19cdea 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil e clara */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra para dar profundidade */
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff; /* Texto do logo RTC em branco */
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-menu {
  display: none;
  gap: 1.5rem;
  list-style: none;
}

/* ============================================
   REGRA DE OURO: TROCA DE MENUS (DESKTOP VS MOBILE)
   ============================================ */

/* A partir de 1100px (Notebooks e Monitores) */
@media (min-width: 1150px) {
  
  /* 1. O menu horizontal GRANDE aparece */
  .nav-menu {
    display: flex !important;
  }
  
  /* 2. O botão de Contato (CTA) da barra superior aparece */
  .nav-cta {
    display: flex !important;
    align-items: center;
  }
  .nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff; /* Links do menu em branco para contraste */
  text-decoration: none;
  transition: color 0.3s ease;
}
  .nav-menu a:hover {
  color: #19cdea; /* Azul claro do gradiente como destaque */
}
.nav-cta .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
  /* 3. O botão Hambúrguer e o "X" SOMEM completamente */
  .mobile-menu-btn {
    display: none !important; 
  }
  
  /* 4. A gaveta mobile é forçada a fechar/sumir caso a tela seja esticada */
  .mobile-menu {
    display: none !important;
  }
}

/* Abaixo de 1100px (Tablets e Celulares) */
@media (max-width: 1150px) {
  
  /* O menu horizontal GRANDE some */
  .nav-menu {
    display: none !important;
  }
  
  /* O botão de Contato da barra superior some (pois ele vai estar dentro da gaveta) */
  .nav-cta {
    display: none !important;
  }
}

@media (min-width: 1150px) {
  .nav-cta {
    display: flex;
    align-items: center;
  }
}

/* ============================================
   AJUSTE DO MENU MOBILE (CORRIGIDO)
   ============================================ */

/* ============================================
   MENU MOBILE - ESTRUTURA BLINDADA
   ============================================ */

/* ============================================
   MENU MOBILE - GAVETA LATERAL DIREITA
   ============================================ */

.mobile-menu {
  display: none; 
  position: fixed; /* Fica fixo na tela, acompanhando o scroll */
  top: 0; 
  right: 0; /* Prende o menu no lado direito */
  width: 300px; /* Largura fixa da gaveta */
  max-width: 85vw; /* Impede que ocupe a tela toda em celulares muito finos */
  height: 100vh; /* Ocupa 100% da altura da tela */
  background-color: #000000 !important; /* O !important FORÇA o fundo a ser branco */
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15); /* Sombra elegante vazando para a esquerda */
  z-index: 99999; /* Camada suprema */
  overflow-y: auto; /* Permite rolagem interna se os links não couberem */
}

.mobile-menu.active {
  display: block;
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; /* Animação de entrada suave */
}

/* Animação que faz a gaveta vir da direita */
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-menu .container {
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem; /* 5rem de espaço no topo para dar respiro ao botão de fechar (X) */
  gap: 1.5rem;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem; 
}

.mobile-menu a {
  display: block;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent); /* Cor de destaque ao tocar/passar o mouse */
}

/* Linha divisória e o botão dentro do menu */
.mobile-menu .nav-cta {
  display: flex;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border); 
}

.mobile-menu .nav-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.5rem;
  /* ADICIONE ESTAS DUAS LINHAS ABAIXO: */
  position: relative; /* Necessário para o z-index fazer efeito */
  z-index: 100000; /* Tem que ser maior que o 99999 da gaveta! */
}
/* ============================================
   BUTTONS
   ============================================ */

button, .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #152a47;
  box-shadow: 0 10px 15px rgba(30, 58, 95, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(30, 58, 95, 0.05);
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  height: 3.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.accent-line {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--accent);
  border-radius: 9999px;
  margin-top: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(to bottom, var(--background), var(--secondary), var(--background));
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(217, 119, 87, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  animation: fadeInSlideLeft 0.7s ease;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-trust {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
  animation: fadeInSlideRight 0.7s ease 0.2s both;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(217, 119, 87, 0.1);
  border-radius: 50%;
  filter: blur(32px);
}

/* ============================================
   THREAT VECTORS SECTION
   ============================================ */
.threat-vectors {
  padding: 5rem 0 4rem;
  background-color: var(--background);
}

.threat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .threat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.threat-card {
  background-color: var(--secondary);
  border-radius: 0.75rem;
  padding: 2rem;
  border-left: 4px solid #d97757; /* Cor terracotta de alerta */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.threat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(217, 119, 87, 0.15);
}

.threat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.threat-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.threat-card p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   BUSINESS IMPACT SECTION
   ============================================ */
.business-impact {
  padding: 2rem 0 5rem;
  background-color: var(--background);
}

.impact-wrapper {
  background: linear-gradient(135deg, #0B192C 0%, #152a47 100%); /* Fundo azul bem escuro, pesado */
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

/* Detalhe de design no fundo da caixa escura */
.impact-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.impact-content {
  position: relative;
  z-index: 1;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.impact-list li:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.impact-bullet {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
/* ============================================
   HIDDEN RISKS SECTION (Mitos vs Realidade)
   ============================================ */
.hidden-risks {
  padding: 5rem 0;
  background-color: rgba(245, 241, 237, 0.4); /* Fundo bem claro para dar contraste com a seção anterior */
}

.risks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .risks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.risk-card {
  background-color: var(--card-bg);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.risk-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.risk-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.risk-icon {
  font-size: 2rem;
  background-color: rgba(30, 58, 95, 0.05); /* Fundo sutil com a cor primária */
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.risk-header h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.risk-myth {
  background-color: rgba(217, 119, 87, 0.1); /* Fundo avermelhado/terracota de alerta */
  color: #b91c1c; /* Vermelho mais escuro para leitura */
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--accent); /* Detalhe ciano na lateral */
}

.risk-card p {
  color: var(--foreground);
  font-size: 0.95rem;
  margin: 0; /* Zera a margem para ficar alinhado certinho dentro do card */
}
/* ============================================
   ATTACK MECHANICS SECTION
   ============================================ */
.attack-mechanics {
  padding: 5rem 0;
  background-color: var(--background);
}

.mechanics-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mechanic-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .mechanic-card {
    flex-direction: row;
  }
}

.mechanic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mechanic-number {
  background: linear-gradient(135deg, var(--primary) 0%, #152a47 100%);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mechanic-number {
    width: 140px;
  }
}

.mechanic-content {
  padding: 2.5rem 2rem;
  flex-grow: 1;
}

.mechanic-action {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.mechanic-risk {
  font-size: 0.95rem;
  line-height: 1.6;
}
/* ============================================
   SEGMENTS SECTION
   ============================================ */

.segments {
  background-color: rgba(245, 241, 237, 0.5);
  padding: 4rem 0 6rem;
}

.segments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.segment-card {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid rgba(217, 119, 87, 0.3);
  transition: all 0.3s ease;
}

.segment-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-left-color: var(--accent);
  transform: translateY(-2px);
}

.segment-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.segment-card:hover .segment-icon {
  transform: scale(1.1);
}

.segment-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.segment-card:hover h3 {
  color: var(--accent);
}

.segment-card p {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

.segments-message {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.125rem;
  color: var(--foreground);
  font-weight: 600;
}

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */

.differentials {
  padding: 4rem 0 6rem;
}

.differentials .section-header {
  text-align: center;
}

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.differential-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.differential-item:hover {
  background-color: rgba(245, 241, 237, 0.5);
}

.differential-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(217, 119, 87, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.differential-item:hover .differential-check {
  background-color: rgba(217, 119, 87, 0.3);
}

.differential-text {
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.differential-item:hover .differential-text {
  color: var(--accent);
}

.differential-highlight {
  background: linear-gradient(to right, rgba(30, 58, 95, 0.05), rgba(217, 119, 87, 0.05));
  border-radius: 0.75rem;
  padding: 2rem 3rem;
  border: 1px solid rgba(217, 119, 87, 0.2);
}

.differential-highlight p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.differential-highlight .text-accent {
  display: block;
  margin-top: 0.5rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  background-color: rgba(245, 241, 237, 0.5);
  padding: 4rem 0 6rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(to right, var(--accent), var(--accent), rgba(217, 119, 87, 0.3));
    z-index: -1;
  }
}

.step-card {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.step-card:hover h3 {
  color: var(--accent);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
  margin: 0;
}

.step-arrow {
  display: none;
  position: absolute;
  right: -1.5rem;
  top: 5rem;
  color: var(--accent);
  font-size: 1.5rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .step-arrow {
    display: flex;
  }
}

.step-card:last-child .step-arrow {
  display: none;
}

.how-it-works-message {
  text-align: center;
  font-size: 1.125rem;
  color: var(--foreground);
  font-weight: 600;
}

/* ============================================
   AUTHORITY SECTION
   ============================================ */

.authority {
  padding: 4rem 0 6rem;
}

.authority .container {
  max-width: 48rem;
}

.authority-content {
  text-align: center;
}

.authority-content h2 {
  margin-bottom: 1.5rem;
}

.authority-content p {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.authority-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .authority-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1rem 0;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.authority-closing {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}

.authority-closing p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.authority-closing .text-accent {
  display: block;
  margin-top: 0.5rem;
}

/* ============================================
   BACKUP STRATEGY SECTION
   ============================================ */

.backup-strategy {
  background: linear-gradient(to bottom, rgba(244, 247, 252, 0.5), rgba(30, 58, 95, 0.05));
  border-top: 1px solid var(--border);
  padding: 5rem 0 6rem;
}

.backup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .backup-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.backup-card {
  background-color: var(--card-bg);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInSlideUp 0.6s ease forwards;
  opacity: 0;
}

/* Adicionando um delay nas animações para entrarem em escadinha */
.backup-card:nth-child(1) { animation-delay: 0.1s; }
.backup-card:nth-child(2) { animation-delay: 0.3s; }
.backup-card:nth-child(3) { animation-delay: 0.5s; }

.backup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.backup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.backup-highlight-box {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
  border-top: 4px solid var(--primary); /* Linha azul escura corporativa no topo */
}
.backup-card:hover::before {
  opacity: 1;
}

.backup-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: rgba(30, 58, 95, 0.05);
  border-radius: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.backup-card:hover .backup-icon {
  transform: scale(1.1);
  background-color: rgba(14, 165, 233, 0.1);
}

.backup-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.backup-card p {
  font-size: 0.95rem;
  color: var(--foreground);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================
   FOOTER
   ============================================ */


.footer-modern {
  background-color: #F4F7FC; /* Fundo claro premium estilo Acronis */
  color: #0f172a; /* Texto escuro para títulos */
  padding: 4rem 0 2rem;
  border-top: 1px solid #e2e8f0;
  font-family: 'Lato', sans-serif;
}

/* Grid Topo (4 Colunas) */
.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-top-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-col h4 {
  font-family: 'Playfair Display', serif; /* Fonte importada aplicada aos títulos */
  font-size: 1.25rem; /* Um pouquinho maior para valorizar a Playfair */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #00204D; /* Azul escuro corporativo (sua var(--primary)) */
}

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

.footer-col a {
 color: #0284c7;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #0B192C; /* Fica azul bem escuro ao passar o mouse */
  text-decoration: none; /* Sublinhado removido */
}

/* Meio (Social & Newsletter) */
.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-middle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.social-section, .newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .social-section, .newsletter-section {
    flex-direction: row;
    align-items: center;
  }
}

.social-title, .newsletter-title {
  font-weight: 600;
  font-size: 1.15rem; /* Tamanho da fonte aumentado */
  color: #0B192C; /* Aproveitei para alinhar com o azul escuro corporativo */
}

/* Bolinhas para as Redes Sociais */
.social-icons {
  display: flex;
  gap: 1rem; /* Espaço um pouco maior entre os ícones para respirar melhor */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; /* Tamanho do fundo aumentado (antes era 32px) */
  height: 44px; /* Tamanho do fundo aumentado (antes era 32px) */
  background-color: #0B192C; /* Ajustado para o azul escuro da sua paleta */
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem; /* Tamanho da letra/ícone lá dentro bem maior */
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  background-color: #0284c7; /* Azul mais vibrante quando passa o mouse */
}

/* Botão da Newsletter */
.btn-newsletter {
  background-color: #0284c7; 
  color: #ffffff;
  padding: 0.8rem 1.8rem; /* Botão com mais volume e presença */
  border-radius: 4px; 
  font-weight: 600;
  font-size: 1.05rem; /* Fonte do botão aumentada */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-newsletter:hover {
  background-color: #0B192C; /* Fica escuro no hover para dar contraste */
}

/* Base Final (Logo, Links e Copyright) */
.footer-bottom-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-bottom-modern {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo-img {
  height: 100px; /* Mantém a proporção ajustada para rodapé */
  width: auto;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
}

.legal-links a {
  color: #0ea5e9;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

.legal-links .separator {
  color: #94a3b8;
  margin: 0 0.5rem;
}

.copyright {
  font-size: 0.85rem;
  color: #64748b;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
  
  .hero-content h1 {
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .problem-highlight p {
    font-size: 1.125rem;
  }
  
  .differential-highlight {
    padding: 1.5rem;
  }
  
  .differential-highlight p {
    font-size: 1.25rem;
  }
  
  .final-cta h2 {
    font-size: 1.75rem;
  }
}
