@font-face {
  font-family: 'NunitoSans';
  src: url('Bebas_Neue_...o_Nunito_Sans/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'NunitoSans';
  src: url('Bebas_Neue_...o_Nunito_Sans/Nunito_Sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

body {
  font-family: 'NunitoSans', sans-serif;
  margin: 0;
  padding: 0;
}

/* HEADER */
header.cover {
  background: #f4f4f4;
  padding: 5rem 2rem 1rem 2rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header.cover h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

header.cover h2 {
  font-size: 1.5rem;
  font-style: italic;
}

/* NAVIGATION */
.topnav {
  margin-top: 1rem;
  text-align: center;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 0.5rem 0;
}

.topnav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #666666;
  font-weight: bold;
}

.topnav a:hover {
  text-decoration: underline;
}

/* HOME LINKS CENTRADOS */
.home-links {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'NunitoSans', sans-serif;
}

.enter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.enter-row .loop-text {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.enter-row .arrow {
  font-size: 2.5rem;
  font-weight: bold;
}

.home-links .social {
  font-size: 1rem;
  margin-top: 0;
}

.home-links a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  margin: 0 10px;
}

.home-links a:hover {
  color: #000000;
}

/* CONTACT STYLES */
.email-link {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #ff0000;
}

.phone-number {
  font-size: 1.4rem;
  color: #333333;
  font-weight: bold;
}
/* ==== RESPONSIVE FIX ==== */
@media (max-width: 768px) {
  .home-links {
    position: static;
    transform: none;
    padding: 2rem 1rem;
  }

  .enter-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .enter-row .loop-text {
    font-size: 1.4rem;
  }

  .enter-row .arrow {
    font-size: 1.8rem;
  }

  .home-links .social {
    font-size: 0.9rem;
  }

  .email-link {
    font-size: 1.2rem;
    display: block;
    word-wrap: break-word;
  }

  .phone-number {
    font-size: 1.2rem;
  }
}
