* {
  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-x: 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;
}  



/* ABOUT */
.about-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 60px 70px;
  min-height: 520px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Nombre */
.about-name {
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: "Monsieur La Doulaise", cursive;
  font-weight: 400;
  font-style: normal;
}



/* Línea */
.about-divider {
  border: none;
  border-top: 1px solid #cfcfcf;
  margin: 40px 0;
}

/* Parte inferior */
.about-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

/* About label */
.about-label {
  font-size: 13px;
  opacity: 0.8;
}

/* Texto */
.about-text {
  font-size: 13px;
  line-height: 1.6;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

@media (max-width: 768px) {

  body {
    padding: 20px;
  }

  /* HEADER */
  .top-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
    text-align: center;
    font-size: 10px;
  }

  .menu {
    justify-content: center;
    gap: 18px;
  }

  /* MAIN */
  main {
    align-items: flex-start;
  }

  /* ABOUT CARD */
  .about-card {
    width: 100%;
  }

  /* NOMBRE */
  .about-name {
    font-size: 42px; /* antes 64 */
    line-height: 1;
    text-align: center;
  }

  h2 {
    text-align: center;
    font-size: 11px;
    margin-bottom: 10px;
  }

  .about-card p {
    font-size: 13px;
    text-align: center;
  }

  /* DIVIDER */
  .about-divider {
    margin: 24px 0;
  }

  /* CONTENIDO INFERIOR */
  .about-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .about-label {
    font-size: 10px;
    opacity: .5;
  }

  .about-text h3 {
    margin-top: 20px;
  }

  /* FOOTER */
  .bottom-nav {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-top: 80px;
    font-size: 10px;
  }

}
