/* General */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0052cc, #3385ff);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

/* Programs Cards */
.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* Footer principal */
.footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer p {
  margin: 5px 0;
}

/* Footer secundario */
.footer-secondary {
  background-color: #fff;
  text-align: center;
  padding: 15px;
  border-top: 1px solid #ccc;
}

.footer-secondary img {
  max-width: 200px;
  height: auto;
}


/* Tarjeta informativa */
.info-card {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.info-card .card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 40px;
  max-width: 800px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: left;
}

.info-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
}

.info-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.info-card strong {
  color: #004aad; /* azul corporativo */
  font-weight: 600;
}


/* Sección de resoluciones */
.resoluciones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.res-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 280px;
}

.res-card:hover {
  background: #3498db;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card-resolucion {
  width: 80%;
  margin: 8px auto;   /* ← reduce espacio vertical */
  padding: 14px;      /* un poco más ajustado */
  text-align: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.12);
  font-weight: 500;
  color: #000;
}

.card-resolucion {
  display: inline-block;
  background-color: #0073e6; /* Azul elegante */
  color: #fff; /* Texto blanco */
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none; /* 👈 Quita el subrayado */
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.card-resolucion:hover {
  background-color: #005bb5; /* Azul más oscuro al pasar el mouse */
  transform: translateY(-3px); /* Efecto de levantar la tarjeta */
}

