/*
  NOVO OS · Language Selection Screen
  lang.css
*/

.page-lang {
  opacity: 0;
  transition: opacity 600ms ease;
}

.page-lang.loaded {
  opacity: 1;
}

.lang-screen {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 113, 227, 0.09), transparent 60%), #ffffff;
  text-align: center;
}

.lang-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 48px;
}

.lang-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}

.lang-headline-novo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(56px, 10vw, 100px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #1d1d1f;
}

.lang-headline-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1d1d1f;
}

.lang-tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6e73;
  margin: 0 0 56px;
}

.lang-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.lang-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 180px;
  padding: 32px 24px;
  border: 0.5px solid #d2d2d7;
  border-radius: 18px;
  background: #ffffff;
  text-decoration: none;
  color: #1d1d1f;
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
  cursor: pointer;
}

.lang-card:hover {
  border-color: #0071e3;
  box-shadow: 0 8px 32px rgba(0, 113, 227, 0.12);
  transform: translateY(-3px);
}

.lang-flag {
  font-size: 40px;
  line-height: 1;
}

.lang-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.lang-native {
  font-size: 12px;
  font-weight: 400;
  color: #6e6e73;
  letter-spacing: 0.02em;
}

.lang-confidential {
  font-size: 12px;
  color: #86868b;
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .lang-options {
    flex-direction: column;
    align-items: center;
  }

  .lang-card {
    width: 240px;
  }
}
