body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
 background: url("../images/fundo.jpg") no-repeat center center/cover;
  transition: background 0.4s ease, color 0.4s ease;
  color: #fff; /* texto claro por cima do fundo */
}

/* Overlay escuro fixo */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* Container principal da intro */
.intro-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  margin: 20px;
  color: #fff; /* garante texto branco */
}

/* Logo animada */
.intro-logo {
  width: 220px;
  height: 180px;
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Botão glass */
/* Botão glass */
.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s, color 0.3s ease;
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.85); /* quase branco sólido */
  color: #000; /* texto fica preto pra contraste */
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

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

/* Hover branco */
.btn-cinema: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);
}

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

/* Responsividade */
@media (max-width: 768px) {
  .intro-container {
    padding: 30px 20px;
    width: 95%;
  }

  .intro-logo {
    width: 160px;
    height: auto;
  }

  .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;
  }
}
.intro-logos {
  display: flex;
  gap: 20px; /* espaço entre as logos */
  align-items: center;
  justify-content: center;
}

.intro-logo {
  height: 80px; /* ajusta o tamanho das logos */
}
