* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff; /* fondo blanco solicitado */
}

@font-face {
  font-family: 'Milonga';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Milonga.ttf') format('truetype');
}

/* Header */
header {
   background: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px 30px;
}

.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 5px; /* Base padding to avoid size change on hover */
  margin: 5px;  /* Base margin to avoid movement on hover */
  transition: color 0.3s ease, background-color 0.3s ease;
}

nav a:hover,
nav a:focus,
nav a:active {
  color: #000;
  background-color: #fff;
}

/* Main */

img {
  display: block;       
  max-width: 100%;
  height: auto;
}

main {
  max-width: 1400px;
  margin: 100px auto;
}

main h1 {
  font-family: montserrat, inherit,sans-serif;
  font-size: 72px;
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
}

main h2 {
  font-family: 'Milonga', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  text-align: center;
}

/* Márgenes superiores e inferiores de 50px para los elementos del contenido */
main h2,
main img {
  margin-top: 50px;
  margin-bottom: 50px;
}

h3 {font-weight: 100;
    text-align: center;

}

main p {
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 1.5rem;
  text-align: center;
}

/* Footer igual al de plan.css */
footer {
  background-color: #34495e;
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footerp {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}
