* {
  box-sizing: border-box;
}
@font-face {
  font-family: 'HK Grotesk';
  src: url('../fonts/HKGrotesk-Regular.otf format')('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
   font-size: 16px; /* base clara */
   color: #2D2D2D;
}

body {
  font-family: "HKGrotesk-Regular";
}

/* wrapper general */

#page {
  height: 100vh;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

/* HEADER */

#header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 5vh;
}

/* MAIN */

#main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#main-logo {
   width: clamp(160px, 13rem, 190px);
}

/* FOOTER → MISMA RETÍCULA QUE MAIN */

#footer {
   display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;   /* ⬅️ en vez de center */
  height: 5vh;
}

/* footer columnas */

.left-info-footer {
  justify-self: start;
}

.center-info-footer {
  justify-self: center;
  text-align: center;
  font-family: "HKGrotesk-Semibold";
}

.right-info-footer {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* textos */

.left-info-header,
.right-info-footer {
  display: flex;
  flex-direction: column;
}

/* cruz */

#cross {
  width: clamp(18px, 1.8rem, 24px);
  height: auto;
  flex-shrink: 0;
}

.link{
  text-decoration: none;
  color: #2D2D2D;
}

.link:hover {
  
  color: #a1a1a1;
}

@media (max-width: 480px) {
  .adress-info,
  .email-info,
  .center-info-footer {
    font-size: 0.75rem;
  }
}
