* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .4px;
  color: #111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 40px 70px;
}

/* HEADER */
.top-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  opacity: .75;
  margin-bottom: 100px;
}

/* CONTENIDO CENTRAL */
main {
  flex: 1; /* EMPUJA FOOTER hacia abajo ✅ */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Menús */
.logo {
  flex: 1;
}

.logo a{
 text-decoration: none;
  color: #111;
}

.center {
  color: #111;
  opacity: .75;
}

.menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #111;
  opacity: .75;
  transition: .2s;
}

.menu a:hover {
  opacity: 1;
}

.footer-text {
  flex: 1;
  text-align: center;
  font-size: 10px;
  opacity: .55;
  line-height: 1.4;
}

.bottom-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  opacity: .75;
  padding-top: 65px;
}

body {
  margin: 0;
  background: #fff;
}

.hero-image img {
  width: auto;
  height: 100%;
  object-fit: contain; /* <- Mantiene la imagen completa */
}


.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cubre toda la pantalla sin deformarse */
}


/* RESPONSIVE CELULAR */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .4px;
  color: #111;
  background: #fff;

  padding: 20px;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

/* HEADER */
.top-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
}


.hero-image img {
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
}

/* FOOTER */
.bottom-nav {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  font-size: 10px;
}

/* TABLET */ 
@media (min-width: 768px) {

  body {
    padding: 40px;
  }

  .top-nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .bottom-nav {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

