/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: -1;
}

.container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.box {
  background-color: #000;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 350px;
  animation: fadeIn 1s ease;
}

.logo {
  width: 150px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px #000);
}

/* Pulse effect */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.button-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.whatsapp {
  background-color: #25d366;
}

.instagram {
  background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.map {
  background-color: #fbbc05;
  color: black;
}

hr {
  border: none;
  height: 1px;
  background-color: #333;
  margin: 10px 0;
  width: 100%;
}

.slogan {
  margin-top: 25px;
  color: #ccc;
  font-size: 14px;
  text-align: center;
  font-style: italic;
  opacity: 0.85;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media screen and (max-width: 400px) {
  .box {
    padding: 20px 15px;
  }

  .btn {
    font-size: 14px;
    padding: 12px;
  }

  .logo {
    width: 120px;
  }
}
