/* Tipografía elegante tipo revista */
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  font-size: 18px;
  color: #333;
  background-color: #fdfdfd;
  margin: 0;
  padding: 0;
}

/* Encabezado tipo portada */
header {
  text-align: center;
  background: linear-gradient(135deg, #1c1c1c, #444);
  color: white;
  padding: 40px 20px;
}
header h1 {
  font-size: 2.8em;
  letter-spacing: 2px;
  margin-top: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 10px;
}
.logo {
  max-width: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
}

/* Secciones como capítulos */
section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}
section h1 {
  font-size: 1.5em;   /* más pequeño que antes */
  margin-bottom: 15px;
  color: #222;
  text-transform: uppercase;
  border-left: 4px solid #444;
  padding-left: 8px;
}
/* Ajuste dinámico según pantalla */
@media (max-width: 600px) {
  section h1 {
    font-size: 1.2em;
  }
}




section p {
  font-size: 1.1em;
  color: #555;
}

/* Imágenes con estilo editorial */
.imgborder3, .imgborder4 {
  text-align: center;
  margin: 20px 0;
}
.imgborder3 img, .imgborder4 img {
  max-width: 70%;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.imgborder3 img:hover, .imgborder4 img:hover {
  transform: scale(1.02);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
}
.modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}
.modal-close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
/* Pie de página elegante */
footer {
  background: #1c1c1c;
  color: #eee;
  text-align: center;
  padding: 30px;
  margin-top: 50px;
}
footer p {
  margin: 5px 0;
  font-size: 0.9em;
}




table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 2px solid black;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #e0e0e0;
}

@media (min-width: 768px) {
  section {
    max-width: 800px;
  }
}