/* ==========================================================================
   JotaTek.ia - Global Design System & Variables (Based on design-guide.md)
   ========================================================================== */
:root {
  /* --- Colors: Brand & Gradient --- */
  --jotatek-blue: #1D4ED8;
  --jotatek-violet: #9333EA;
  --jotatek-gradient: linear-gradient(135deg, var(--jotatek-blue) 0%, var(--jotatek-violet) 100%);
  --jotatek-gradient-text: linear-gradient(135deg, #60A5FA 0%, #C084FC 100%);

  /* --- Colors: Backgrounds & Surfaces --- */
  --bg-deep-space: #0B0F19;
  --bg-dark-surface: #1E293B;
  --border-subtle: #334155;

  /* --- Colors: Typography --- */
  --text-pure-white: #FFFFFF;
  --text-slate-gray: #94A3B8;

  /* --- Colors: System Status --- */
  --status-active: #10B981;
  --status-error: #EF4444;

  /* --- Typography: Font Families --- */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-code: 'JetBrains Mono', monospace;

  /* --- UI Elements & Effects --- */
  --radius-card: 12px;
  --radius-button: 8px;
  --glow-active: 0 0 20px rgba(147, 51, 234, 0.4);
  --glow-blue: 0 0 20px rgba(29, 78, 216, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Compensa o menu fixo */
  overflow-x: hidden; /* Evita qualquer rolagem horizontal global */
}

body {
  background-color: var(--bg-deep-space);
  color: var(--text-slate-gray);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* ==========================================================================
   Tech Glows (Ambient Background Lights)
   ========================================================================== */
body::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   Layout Containers & Common Elements
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  color: var(--text-pure-white);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

p {
  font-size: 16px;
  color: var(--text-slate-gray);
}

.text-center-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Section Badges */
.section-badge, .hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(29, 78, 216, 0.1);
  border: 1px solid rgba(29, 78, 216, 0.25);
  border-radius: 50px;
  color: #60A5FA;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge {
  background: rgba(147, 51, 234, 0.1);
  border-color: rgba(147, 51, 234, 0.25);
  color: #C084FC;
}

/* Section Common Styling */
section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Divisão extremamente suave e sutil */
  position: relative;
}

.section-title {
  font-size: 36px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text-pure-white);
}

.section-desc {
  color: var(--text-slate-gray);
  font-size: 18px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary, .btn-secondary, .btn-primary-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-button);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--jotatek-gradient);
  color: var(--text-pure-white);
  padding: 14px 32px;
  border: none;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.2);
}

.btn-primary:hover {
  box-shadow: var(--glow-active);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-pure-white);
  padding: 14px 32px;
  border: 1px solid var(--border-subtle);
  font-size: 16px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-slate-gray);
  transform: translateY(-2px);
}

.btn-primary-small {
  background: var(--jotatek-gradient);
  color: var(--text-pure-white);
  padding: 8px 18px;
  border: none;
  font-size: 14px;
}

.btn-primary-small:hover {
  box-shadow: var(--glow-active);
  transform: translateY(-1px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Suavizado em conformidade com as divisões */
  z-index: 1000;
  transition: var(--transition-smooth);
}

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

.header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.header-brand:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.header-logo {
  height: 60px; /* Aumentado para dar mais evidência à logo completa oficial */
  width: auto;
  display: block;
}

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

.nav-links a {
  color: var(--text-slate-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--jotatek-gradient);
  transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-pure-white);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-pure-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  border-top: none;
  padding: 120px 0 100px;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 span {
  background: var(--jotatek-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

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

/* Hero Terminal Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: floatOrb 6s ease-in-out infinite alternate;
}

/* VS Code Simulador */
.vscode-window {
  position: relative;
  z-index: 2;
  background-color: #1e1e1e;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.vscode-window:hover {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 25px rgba(29, 78, 216, 0.25);
}

/* Titlebar */
.vscode-titlebar {
  background-color: #2d2d2d;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  font-size: 11px;
  color: #cccccc;
  user-select: none;
}

.titlebar-actions {
  display: flex;
  gap: 6px;
}

.action-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.action-dot.red { background-color: #ff5f56; }
.action-dot.yellow { background-color: #ffbd2e; }
.action-dot.green { background-color: #27c93f; }

.titlebar-title {
  font-size: 11px;
  letter-spacing: 0.3px;
  font-family: var(--font-code);
}

.titlebar-status {
  display: flex;
  gap: 8px;
  font-size: 10px;
}
.status-branch-badge {
  color: var(--status-active);
}
.status-branch-name {
  color: #858585;
}

/* Main Body */
.vscode-body {
  display: flex;
  height: 340px; /* Aumentado para comportar todos os itens sem scroll vertical */
}

/* Activity Bar */
.vscode-activitybar {
  width: 48px;
  background-color: #1e1e1e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.activitybar-top, .activitybar-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.activity-icon {
  color: #858585;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.activity-icon svg {
  width: 20px;
  height: 20px;
}

.activity-icon.active {
  color: #ffffff;
  border-left: 2px solid var(--jotatek-blue);
}

.activity-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--jotatek-violet);
  color: #ffffff;
  font-size: 8px;
  font-weight: bold;
  border-radius: 10px;
  padding: 1px 4px;
  line-height: 1;
}

.activity-icon:hover {
  color: #ffffff;
}

/* Sidebar */
.vscode-sidebar {
  flex: 1;
  background-color: #252526;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Oculta a barra de rolagem vertical e horizontal */
  min-width: 0; /* Permite que a barra lateral encolha em flexbox no mobile */
}

.sidebar-header {
  padding: 10px 16px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #858585;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sidebar-header-path {
  font-size: 9px;
  font-weight: normal;
  color: #6a9955;
  font-family: var(--font-code);
  text-transform: none;
}

.file-tree {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.tree-item {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  font-size: 11px;
  font-family: var(--font-body);
  color: #cccccc;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.tree-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.tree-item.indent {
  padding-left: 32px;
}

.chevron {
  font-size: 8px;
  margin-right: 6px;
  color: #858585;
  width: 8px;
  display: inline-block;
}

.folder-icon, .file-icon {
  margin-right: 6px;
  font-size: 12px;
}

.item-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-comment {
  color: #6a9955;
  font-size: 10px;
  margin-left: 6px;
  font-family: var(--font-code);
}

.active-file {
  color: #e2c08d;
  font-weight: 500;
}

.file-badge {
  background-color: rgba(226, 192, 141, 0.15);
  color: #e2c08d;
  font-size: 8px;
  font-weight: bold;
  border-radius: 2px;
  padding: 0 4px;
  margin-left: auto;
}

/* Terminal integrado */
.vscode-terminal {
  background-color: #1e1e1e;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 16px;
  font-family: var(--font-code);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-prompt {
  color: #4ade80;
}

.terminal-command {
  color: #ffffff;
}

.terminal-cursor {
  display: inline-block;
  width: 6px;
  height: 12px;
  background-color: #ffffff;
  animation: blink 1s step-end infinite;
}

/* Status Bar */
.vscode-statusbar {
  background-color: #007acc;
  color: #ffffff;
  padding: 4px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-family: var(--font-body);
}

.statusbar-left, .statusbar-right {
  display: flex;
  gap: 16px;
}

.statusbar-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Robo de Fundo do Hero (Nativo Dark/Azul) */
.hero-bg-robot {
  position: absolute;
  right: -160px; /* Deslocado mais para a direita para maior visibilidade */
  top: 50%;
  transform: translateY(-50%);
  width: 760px; /* Grande, preenchendo quase toda a altura da seção Hero */
  max-width: 100vw;
  opacity: 0.92; /* Robô nítido e com cores originais vibrantes */
  z-index: 1; /* Atrás da janela do VS Code */
  pointer-events: none;
  
  /* Máscara de transparência linear degradê para suavizar o corte reto de meio corpo nas bordas e rodapé */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 95%), 
                      linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 95%),
              linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-bg-robot img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Responsividade adicional para o VS Code no Hero */
@media (max-width: 768px) {
  .vscode-body {
    height: 330px;
  }
  .item-comment {
    display: none;
  }
  .hero-bg-robot {
    width: 320px;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    opacity: 0.15;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 92%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 92%);
  }
}


/* ==========================================================================
   Quem Somos Section (Sobre)
   ========================================================================== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.sobre-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.sobre-features {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--status-active);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-pure-white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-slate-gray);
  margin-bottom: 0;
}

.sobre-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-dark-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: var(--jotatek-blue);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.1);
}

.stat-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  background: var(--jotatek-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-slate-gray);
}

/* ==========================================================================
   Soluções Section
   ========================================================================== */
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.solucao-card {
  background-color: var(--bg-dark-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  transition: var(--transition-smooth);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solucao-card:hover {
  transform: translateY(-6px);
  border-color: var(--jotatek-blue);
  box-shadow: var(--glow-blue);
}

.solucao-icon {
  background: rgba(29, 78, 216, 0.1);
  color: #60A5FA;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.solucao-icon svg {
  width: 26px;
  height: 26px;
}

.solucao-card:hover .solucao-icon {
  background: var(--jotatek-gradient);
  color: var(--text-pure-white);
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.3);
}

.solucao-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.solucao-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-slate-gray);
}

/* ==========================================================================
   Contato Section
   ========================================================================== */
.contato-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contato-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contato-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contato-canais {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.canal-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.canal-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
  background-color: #05070c;
}

.canal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.canal-item span {
  display: block;
  font-size: 12px;
  color: var(--text-slate-gray);
}

.canal-item strong {
  display: block;
  font-size: 16px;
  color: var(--text-pure-white);
}

.whatsapp-link {
  color: #10B981;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.whatsapp-link:hover {
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
  transform: translateX(4px);
}

/* Form Styling */
.contato-form-wrapper {
  background-color: var(--bg-dark-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-slate-gray);
}

.form-group input, .form-group textarea {
  background-color: var(--bg-deep-space);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-button);
  padding: 12px 16px;
  color: var(--text-pure-white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #475569;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--jotatek-violet);
  box-shadow: var(--glow-active);
}

/* ==========================================================================
   Rodapé (Footer)
   ========================================================================== */
footer {
  background-color: rgba(5, 7, 12, 0.9);
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-logo {
  height: 52px; /* Proporcional e evidente no rodapé */
  width: auto;
  display: block;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-slate-gray);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05); /* Divisor sutil de rodapé */
  margin-bottom: 30px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.footer-bottom span {
  font-weight: 600;
  color: var(--text-pure-white);
}

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

.footer-links a {
  color: var(--text-slate-gray);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--status-active);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes floatOrb {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-15px) scale(1.05);
  }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 70px 0 30px; /* Compactado verticalmente no mobile */
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-subtle);
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .header-nav {
    position: relative;
    justify-content: center;
  }

  .header-brand {
    margin: 0 auto;
  }

  .header-logo {
    height: 50px; /* Logo um pouco mais compacta no mobile */
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Menu hamburguer animado */
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .header-cta-desktop {
    display: none;
  }
  
  .contato-form-wrapper {
    padding: 24px;
  }
  
  /* Centralização das seções Quem Somos e Fale Conosco no mobile */
  .sobre-text, .contato-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .contato-canais {
    align-items: center;
    width: 100%;
  }

  .canal-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
