/* ===== ESTILO GENERAL TEM ===== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-image: url('fondoTEM.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

/* ===== MENÚ ===== */
.menu {
  background-color: #006494;
  padding: 20px;
  text-align: center;
}

.menu img {
  height: 60px;
  width: auto;              /* evita que se estire */
  max-width: 180px;         /* límite razonable */
  object-fit: contain;      /* mantiene proporción */
  margin-bottom: 10px;
}


.menu a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  text-decoration: underline;
}

/* ===== HEADER ===== */
header {
  background-color: #676EAC;
  color: white;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

header img {
  height: 80px;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

header p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* ===== SECCIONES ===== */
section {
  padding: 25px;
  border-bottom: 2px solid #EFA11B;
  background-color: rgba(255, 255, 255, 0.92);
  margin: 20px;
  border-radius: 12px;
}

.centrado {
  text-align: center;
}

h2 {
  color: #676EAC;
  font-weight: 700;
}

h3 {
  color: #DC304F;
}

/* ===== LISTAS ===== */
ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 15px;
}

/* ===== BOTONES ===== */
.boton {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 10px;
  background-color: #DC304F;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.boton:hover {
  background-color: #b9273f;
}

/* ===== IMÁGENES ===== */
img {
  display: block;
  margin: 15px auto;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}

/* ===== FOOTER ===== */
footer {
  text

.imagen-seccion {
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* LOGO DEL MENÚ */
.logo-menu {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* LOGO DEL HEADER (principal) */
.logo-header {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}


