@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Container do Vídeo de Fundo */
.video-background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(1.2) contrast(1.15);
}

/* Máscara Suave e Clara para Manter o Vídeo Bem Visível e o Texto Legível */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}

/* Logotipo */
.logo-wrapper {
  margin-bottom: 2.5rem;
}

.logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* Indicador de Status Monocromático */
.status {
  border: 1px solid #444444;
  color: #cccccc;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

/* Título */
.main-title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.title-top {
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
}

.title-bottom {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Texto Descritivo */
.description {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #999999;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3.5rem;
}

/* Rodapé */
footer {
  border-top: 1px solid #1a1a1a;
  padding-top: 2rem;
  width: 100%;
}

footer p {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 0.5rem;
}

.contact-email {
  display: inline-block;
  color: #cccccc;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid #444444;
  padding-bottom: 2px;
  margin-bottom: 2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-email:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.copyright {
  font-size: 0.75rem;
  color: #444444;
}

/* Responsividade */
@media (max-width: 480px) {
  .logo {
    max-width: 210px;
  }
  
  .title-top {
    font-size: 0.85rem;
  }

  .title-bottom {
    font-size: 1.6rem;
  }
}
