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

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

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

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

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

.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;
}

[hidden] {
  display: none !important;
}

/* ===== HERO ===== */
.hero-container {
  padding: 0 4vw 4rem 4vw;
}

/* TITULO */
.hero-title {
  font-family: 'MiFuente', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #2f3bbd;
  text-align: center;
  margin-bottom: 2rem;
}

/* CONTENIDO */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
}

/* TEXTO */
.hero-texto {
  font-family: 'MiFuente', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2f3bbd;
}

/* IMAGEN */
.hero-imagen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-imagen {
    margin-top: 2rem;
  }
}