@font-face {
  font-family: 'GothamProBlack';
  src: url('fonts/gothampro_black.ttf') format('truetype');
}

body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: #050404;
  margin: 0;
  padding: 0;
}

header {
  background-color: black;
  color: white;
  padding: 1rem;
  text-align: center;
  font-family: 'GothamProBlack', sans-serif;
}

.menu {
  color: black;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

h2 {
  border-bottom: 2px solid red;
  padding-bottom: 0.5rem;
  color: black;
  font-family: 'GothamProBlack', sans-serif;
}

.item {
  margin: 1rem 0;
  color: black;
  font-family: Arial, sans-serif;
  
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}


footer {
  text-align: center;
  padding: 1rem;
  background-color: #f4e3d3;
  color: #444;
  font-size: 0.9rem;
  font-family: 'GothamProBlack', sans-serif;
}

.logo {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 90px; 
  height: auto;
  opacity: 0.9; /* un poco transparente */
  z-index: 10000; /* asegúrate de que esté por encima de otros elementos */
}

.subtitulo {
  font-size: 0.9rem;
  color: black;
  margin: 0 0 1rem 0;
  margin-top: -0.8rem;
  text-align: left; /* o center, según tu diseño */
  margin-bottom: 1.7rem;
}

boton-secundario {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text font-family: 'GothamProBlack', sans-serif;
}
.boton-secundario:hover {
  background-color: none;
}

@media (max-width: 600px) {
  body {
    font-size: 18px;
    padding: 10px;
  }

  .menu {
    padding: 0.5rem;
  }

  .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin: 1rem 0;

  }
  
  
  .item span {
    float: none;
  }

  h2 {
    font-size: 1.4rem;
  }

  .subtitulo {
  margin-top: -0.8rem; /* o incluso 0 si lo quieres bien pegado */
  font-size: 0.9rem;
  color: black;
  text-align: left;
}

  footer {
    font-size: 0.8rem;
    padding: 0.5rem;
  }

  .logo {
    width: 70px;
    bottom: 20px;
    right: 10px;
  }
}
