/* === RESET BÁSICO === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BASE GLOBAL === */
:root {
  --color-primario: #0055cc;
  --color-secundario: #f5f5f5;
  --color-texto: #222;
  --color-fondo: #ffffff;
  --fuente-principal: 'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--fuente-principal);
  background-color: var(--color-fondo);
  color: var(--color-texto);
  font-size: 16px;
  line-height: 1.6;
  padding: 1rem;
}

/* === TÍTULOS === */
h1, h2, h3 {
  font-weight: bold;
  margin: 1rem 0 0.5rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
}

/* === ENLACES === */
a {
  color: var(--color-primario);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === BOTÓN GENÉRICO === */
.str-btn {
  display: inline-block;
  background-color: var(--color-primario);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.str-btn:hover {
  background-color: #003f99;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    padding: 0.5rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }
}
