/* ==========================================================================
   1. DESIGN SYSTEM & VARIÁVEIS CSS
   ========================================================================== */
:root {
  /* Cores Principais - Fundo ligeiramente mais escuro para destacar o neon */
  --bg-dark: #0a0a0f;
  --bg-surface: #12121a;
  --bg-card: rgba(18, 18, 26, 0.75);
  --bg-card-hover: rgba(28, 28, 40, 0.85);
  
  /* Cores Accent */
  --primary: #ff7547;       /* Laranja/Pêssego */
  --primary-hover: #e66940;
  --primary-glow: rgba(255, 117, 71, 0.35);
  --secondary: #6e44ff;     /* Roxo/Azul */
  --accent: #d946ef;        /* Rosa/Magenta para meio do gradiente */
  
  /* Tipografia & Textos */
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  /* Bordas & Vidro (Glassmorphism) */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-light: rgba(255, 255, 255, 0.15);
  --border-focus: rgba(255, 117, 71, 0.6);
  --glass-bg: rgba(18, 18, 26, 0.65);
  --glass-blur: blur(16px);
  
  /* Layout & Espaçamento */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transições & Sombras */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 117, 71, 0.25);
  
  /* Fontes */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   2. RESET & ESTILOS BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Links & Botões Genéricos */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

/* Grids Úteis */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   3. TIPOGRAFIA & COMPONENTES VISUAIS
   ========================================================================== */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-glass-light);
  color: var(--primary);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Botões Estilizados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 117, 71, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-light {
  background: #ffffff;
  color: var(--bg-dark);
  font-weight: 700;
}

.btn-light:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-text {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--secondary);
  gap: 0.7rem;
}

.btn-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   4. INTRO ANIMADA / LOADER GSAP
   ========================================================================== */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.loader-curtain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #060608;
  z-index: 1;
}

.top-curtain {
  top: 0;
}

.bottom-curtain {
  bottom: 0;
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.logo-accent {
  color: var(--primary);
}

.loader-progress-wrapper {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1rem;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}

.loader-counter {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.loader-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ==========================================================================
   5. HEADER & NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 1001;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(110, 68, 255, 0.15) 40%, rgba(0,0,0,0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.2rem 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.quick-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border-glass-light);
}

/* ==========================================================================
   7. SEÇÃO SOBRE / PROPOSTA DE VALOR
   ========================================================================== */
.about-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-glass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.visual-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.visual-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.visual-title {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-left: auto;
  font-family: monospace;
}

.code-preview {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
}

.code-line.indent {
  padding-left: 1.5rem;
}

.token-keyword { color: #c678dd; }
.token-string { color: #98c379; }
.token-number { color: #d19a66; }
.token-func { color: #61afef; }

.visual-badge-floating {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   8. GALERIA & FILTRO DE PROJETOS POR NICHO
   ========================================================================== */
.filter-wrapper {
  margin: 2.5rem 0 3.5rem 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.filter-wrapper::-webkit-scrollbar {
  height: 4px;
}

.filter-wrapper::-webkit-scrollbar-thumb {
  background: var(--border-glass-light);
  border-radius: var(--radius-full);
}

.filter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: max-content;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 117, 71, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-light);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.project-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 10, 12, 0.8);
  border: 1px solid var(--border-glass-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.project-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.tech-tag {
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ==========================================================================
   9. SEÇÃO DIFERENCIAIS
   ========================================================================== */
.differentials-grid {
  margin-top: 3rem;
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}

.diff-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.diff-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 117, 71, 0.2), rgba(110, 68, 255, 0.2));
  border: 1px solid var(--border-glass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}

.diff-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.diff-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. CONTATO & FORMULÁRIO
   ========================================================================== */
.contact-box {
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-main);
}

.contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group select option {
  background-color: var(--bg-surface);
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 117, 71, 0.2);
}

/* ==========================================================================
   11. RODAPÉ
   ========================================================================== */
.footer {
  background: #060608;
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem 0;
}

.footer-top {
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   12. MODAIS (PROJETOS & POLÍTICAS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-light);
}

.policy-modal-content {
  max-width: 700px;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  color: #ffffff;
}

.modal-project-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.modal-project-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-project-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.modal-project-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.modal-project-features {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  color: var(--text-main);
}

.modal-project-features li {
  margin-bottom: 0.5rem;
}

.modal-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 200px;
}

/* ==========================================================================
   13. BANNER DE COOKIES (LGPD)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(18, 18, 24, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass-light);
  padding: 1.2rem 0;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-text i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ==========================================================================
   14. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-box {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .grid-2-cols, .grid-3-cols, .grid-4-cols {
    grid-template-columns: 1fr;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .hero-stats-quick {
    flex-direction: column;
    gap: 1.2rem;
    border-radius: var(--radius-lg);
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-project-img {
    height: 200px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }
}