/* ========================= */
/* RESET BASE */
/* ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #0b0f19;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========================= */
/* VARIABLES GLOBALES */
/* ========================= */
:root {
  --primary: #00d4ff;
  --primary-dark: #009ec2;

  --bg-main: #0b0f19;
  --bg-alt: #121826;

  --text-main: #ffffff;
  --text-muted: #a0a7b8;

  --border-color: #1f2937;

  --success: #25D366;
  --danger: #ff4d4d;

  --radius: 8px;
  --transition: all 0.3s ease;
}

/* ========================= */
/* TIPOGRAFÍA */
/* ========================= */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ========================= */
/* LINKS */
/* ========================= */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

/* ========================= */
/* IMÁGENES */
/* ========================= */
img {
  max-width: 100%;
  display: block;
}

/* ========================= */
/* BOTONES BASE */
/* ========================= */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn.primary {
  background: var(--primary);
  color: #000;
}

.btn.primary:hover {
  background: var(--primary-dark);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn.secondary:hover {
  background: var(--primary);
  color: #000;
}

/* ========================= */
/* FORMULARIOS */
/* ========================= */
input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ========================= */
/* SCROLLBAR (opcional cool) */
/* ========================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0b0f19;
}

::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ========================= */
/* UTILIDADES */
/* ========================= */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ========================= */
/* SECCIONES BASE */
/* ========================= */
.section {
  padding: 100px 20px;
}

.section.alt {
  background: var(--bg-alt);
}

/* ========================= */
/* CONTENEDOR */
/* ========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
}