/* ==========================================================================
   VARIABLES DE DISEÑO - ESTILO CLOUD STUDIO & SISVER
   ========================================================================== */
:root {
  /* Paleta de Colores Tecnológica */
  --bg-primary: #0b0c10;        /* Negro profundo de fondo */
  --bg-surface: #12141c;        /* Negro secundario para tarjetas/bloques */
  --accent-neon: #00ff66;       /* Verde neón de interconexión y APIs */
  --accent-glow: rgba(0, 255, 102, 0.35);
  
  /* Tipografía Profesional (Sora) */
  --text-main: #ffffff;         /* Blanco puro para títulos de alto impacto */
  --text-muted: #a0a5b5;        /* Gris corporativo para lectura y párrafos */
  --font-sora: 'Sora', sans-serif;
  
  /* Detalles de Interfaz */
  --border-subtle: rgba(255, 255, 255, 0.04);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET GENERAL DEL NAVEGADOR
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  /* Previene el desbordamiento horizontal accidental */
  overflow-x: hidden; 
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sora);
  min-height: 100vh;
  
  /* Suavizado de fuentes para pantallas de alta resolución */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Reset de elementos interactivos */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, textarea {
  font-family: var(--font-sora);
  background: none;
  border: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   CLASES UTILITARIAS / AYUDAS GENERALES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Animación de pulso sutil para elementos tecnológicos */
@keyframes techPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(0.98); }
}

.pulse-element {
  animation: techPulse 4s ease-in-out infinite;
}