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

body {
  font-family: 'Inter', sans-serif;
  background: url("/images/fundo/fundo-intro.png") no-repeat center center / cover;
  color: #fff;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* Wrapper responsivo */
.intro-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* Card glass */
.intro-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Logos */
.intro-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.intro-logo {
  width: 200px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

/* Texto */
.intro-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 10px 0 25px;
  opacity: 0.85;
}

/* Botões */
.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.btn-cinema {
  font-size: 16px;
}

/* Animação */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Mobile */
@media (max-width: 768px) {
  .intro-container {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .intro-logo {
    width: 160px;
  }

  .btn-cinema {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .intro-container {
    padding: 20px 15px;
  }

  .intro-logo {
    width: 140px;
  }

  .btn-cinema {
    font-size: 14px;
    padding: 10px 16px;
  }
}
