/* ── Configuración general ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

/* ── HERO (sección de inicio) ── */
header {
  background-color: #0d1f3c;
  color: white;
  padding: 100px 40px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header h1 {
  font-size: 20px;
  letter-spacing: 6px;
  color: #4a90d9;
  margin-bottom: 8px;
}

header p {
  font-size: 13px;
  color: #7aabde;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

header h2 {
  font-size: 52px;
  color: white;
  font-weight: 700;
  max-width: 600px;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* ── SECCIONES generales ── */
section {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  font-size: 32px;
  color: #4a90d9;
  margin-bottom: 20px;
  text-transform: uppercase;
}

section p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* ── SERVICIOS ── */
ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

ul li {
  background-color: #4a90d9;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
}

/* ── CONTACTO ── */
.contacto {
  background-color: #0d1f3c;
  color: white;
  text-align: center;
  padding: 60px 40px;
}

.contacto h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
}

.contacto p {
  color: #cce0f5;
  font-size: 16px;
  margin: 8px 0;
}

/* ── FOOTER ── */
footer {
  background-color: #888;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 13px;
}
/* ── BOTÓN ── */
.boton {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 32px;
  border: 2px solid #4a90d9;
  color: #4a90d9;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
}

.boton:hover {
  background-color: #4a90d9;
  color: white;
}

/* ── PROCESO ── */
.proceso-pasos {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.paso {
  flex: 1;
  min-width: 200px;
  background-color: #f0f6ff;
  border-top: 4px solid #4a90d9;
  padding: 24px;
  border-radius: 8px;
}

.paso h3 {
  color: #0d1f3c;
  font-size: 18px;
  margin-bottom: 12px;
}

.paso p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ── FRASE INSTITUCIONAL ── */
#frase {
  background-color: #0d1f3c;
  text-align: center;
  padding: 80px 40px;
}

#frase blockquote {
  font-size: 28px;
  color: white;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ── LOGO ── */
.logo {
  width: 600px;
  margin-bottom: 0px;
}
/* ── NAVEGACIÓN ── */
nav {
  background-color: #0d1f3c;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

nav ul li {
  background: none;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4a90d9;
}
