/* Tipografía general */
body {
  font-family: 'Georgia', serif;
  background-color: #fdfdfd;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Hero section */
header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  color: #fff;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.eslogan {
  font-size: 1.3em;
  font-style: italic;
  margin-top: -5px;
  margin-bottom: 20px;
  color: #e3f2fd;
}

header img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Secciones */
main section {
  padding: 30px;
  margin: 20px auto;
  max-width: 900px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

main h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1565c0;
}

/* Botones de culturas */
.botones-culturas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.boton {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.boton.latina { background-color: #d84315; }
.boton.rusa { background-color: #b71c1c; }
.boton.surcoreana { background-color: #1565c0; }
.boton.islamica { background-color: #4a148c; }
.boton.espanola { background-color: #c62828; }
.boton.estadounidense { background-color: #0d47a1; }

.boton:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  background-color: #0d47a1;
  color: #fff;
}