* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.login-box {
  text-align: center;
}

/* LOGO */

.logo {
  width: 40vw;
  max-width: 520px;
  min-width: 280px;
  margin-bottom: 40px;
}

/* TÍTULO */

h1 {
  margin-bottom: 30px;
}

/* BOTÕES */

.buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

button {
  width: 260px;
  padding: 16px 0;
  font-size: 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* SOU CLIENTE — VERDE ESCURO */

.btn-cliente {
  background: #0f5132; /* verde escuro */
  color: #fff;
  animation: slideLeft 0.9s ease forwards;
}

.btn-cliente:hover {
  background: #198754;
  transform: scale(1.05);
}

/* NÃO SOU CLIENTE — VERMELHO + WHATSAPP */

.btn-nao-cliente {
  background: #e50914;
  color: #fff;
  animation: slideRight 0.9s ease forwards;
}

.btn-nao-cliente:hover {
  background: #f6121d;
  transform: scale(1.05);
}

.btn-nao-cliente i {
  font-size: 20px;
}

/* TEXTO */

.info {
  margin-top: 25px;
  font-size: 12px;
  color: #aaa;
}

/* ANIMAÇÕES BOTÕES */

@keyframes slideLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ANIMAÇÃO LOGO NETFLIX */

.netflix-intro {
  animation: netflixZoom 2.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  position: relative;
}

@keyframes netflixZoom {
  0% {
    transform: scale(0.15);
    opacity: 0;
    filter: blur(12px);
  }
  55% {
    transform: scale(1.15);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.netflix-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(229, 9, 20, 0.6),
    transparent 70%
  );
  animation: netflixLight 2.2s ease-out forwards;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes netflixLight {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* FUNDO */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("bg.png") center / cover no-repeat;
  opacity: 0.6;
  z-index: -1;
}

/* RESPONSIVO */

@media (max-width: 480px) {
  button {
    width: 90%;
  }

  h1 {
    font-size: 20px;
  }
}

