body {
  margin: 0;
  background: rgb(248, 241, 227);
}

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

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clock{
  margin-left: 1rem;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: rgba(0,10,147,0.84);
  font-family: "Monument Grotesk Variable";

}

/* BOTÓN IDIOMA */
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

/* LIENZO */
.lienzo {
  max-width: 1440px;
  margin: 0 auto;
}
/* ================= INSTAGRAM BUTTON ================= */
.encabezados{
  font-family: url(/Users/plextip57/llacameraa/pagina_web/diseño/CargoMonumentGroteskPlusVariable.woff2);
  color: rgba(0,10,147,0.84);
  letter-spacing: -0.02em;
  font-weight: 600;

}

.nombre_de_usuario{
  display: inline-block;
}
.nombre_de_usuario .btn{
  display: block;
  margin-top: 0.6rem;
  margin-left: 0;
  font-size: 0.9rem;
  
}
a .btn{
  text-decoration: none;
}
.btn {
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.7rem;

  font-family: "diatype variable";
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;

  color: rgba(0, 10, 147, 0.84);
  cursor: pointer;

  transition: opacity 0.25s ease, transform 0.2s ease;
}

/* hover sutil, editorial */
.btn:hover {
  opacity: 0.7;
  transform: translateX(0.1rem);
}

/* click casi imperceptible */
.btn:active {
  transform: translatex(0.2rem);
  opacity: 0.45;
}

/* opcional: coherencia con links */
.btn:focus {
  outline: none;
}


/* MAIN */
.main {
  padding-top: clamp(2rem, 4vw, 4rem);
}

/* FILM STRIP */
.hero-film {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(140px, 22vw, 280px);
  display: flex;
  overflow: hidden;
}
.hero-content {
  margin-left: clamp(1.5rem, 5vw, 4rem);
  margin-right: 4rem;
}
.hero-film img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO */
.nombre_de_usuario {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: rgba(0,10,147,0.84);
}

.container {
  width: 100%;
}

.nav > div {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-link {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-decoration: none;
  color: rgba(0,10,147,0.84);
  position: relative;
  transition: opacity 0.2s ease, transform 0.15s ease;

}

.nav-link:hover {
  transform: translatex(0.15rem);
  opacity: 0.7;
}
.nav-link:active {
  transform: translatex(0.25rem);
  opacity: 0.45;
}
/* opcional: coherencia con links */
.nav-link:focus {
  outline: none;
}


/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .nav > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-film {
    height: 120px;
  }
}
/* ====== LANGUAGE SWITCH ====== */

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