/* ===== RESET ===== */
html, body {
  margin: 0;
  background: rgb(248, 241, 227);
  overflow-x: hidden; /* quita scroll horizontal */
  overflow-y: scroll;

  scrollbar-width: none; /* Firefox */
}

/* Chrome / Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* ESCALA GLOBAL */
html {
  font-size: clamp(14px, 1vw, 18px);
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2vw;
}

/* BOTÓN VOLVER */
.btn-back {
  text-decoration: none;
  font-family: 'MiFuente', sans-serif;
  color: rgba(0,10,147,0.84);
  letter-spacing: -0.02em;
  font-weight: 600;
  font-size: 2.25rem;
}

/* ===== IDIOMA ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  opacity: 0.4;
}

.lang-switch button.active {
  opacity: 1;
}

.lang-switch span {
  opacity: 0.4;
}

/* ===== CONTACTO ===== */
.contact {
  margin-top: 4rem;
  margin-left: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  margin-top: 0.8rem;
  font-family: "MiFuente", sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(4, 4, 9, 0.84);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* texto tipo "Instagram:" */
.contact-item span {
  margin-right: 0.5rem;
}

/* links (usuario, email, teléfono) */
.contact-item a {
  text-decoration: none;
  color: rgba(0,10,147,0.84);
  font-weight: 600;
  font-style: normal;
  transition: all 0.15s ease;
}

/* hover igual que apartados */
.contact-item a:hover {
  opacity: 0.7;
  transform: translateX(0.1rem);
}

/* click */
.contact-item a:active {
  transform: translateX(0.2rem);
  opacity: 0.45;
}

.contact-item a:focus {
  outline: none;
}

/* ===== FUENTE ===== */
@font-face {
  font-family: 'MiFuente';
  src: url('CargoMonumentGroteskPlusVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
}


/* ocultar idioma */
[hidden] {
  display: none !important;
}
