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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #eb2588, #ed3661);
  margin: 0;
  padding-top: 80px;
  min-height: 100vh;
  color: #fff;
  padding-bottom: 60px;
}

header {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
}

.logo, .site-title {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.site-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  margin-left: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

@media (min-width: 992px) {
  .container {
    flex-direction: row;
  }
  .text, .info {
    width: 50%;
  }
  .text, .info, .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .image {
    width: 50%;
  }
}

.text, .image, .info {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image img {
  max-width: 100%;
  border-radius: 15px;
}

footer {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 40px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.button {
  padding: 10px 20px;
  color: white;
  background-color: #8f05ff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adiciona uma sombra */
  animation: pulseAnimation 2s infinite;
}

.button:hover {
  background-color: #d6006e; /* Altera a cor de fundo quando hover */
}

@keyframes pulseAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); } /* Aumenta a escala em 5% */
  100% { transform: scale(1); }
}



.promotion-text {
  text-align: center;
  font-size: 2em;
  background: linear-gradient(-45deg, #ff3c00, #00f6ff, #12ff00, #ffe201);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 2s ease infinite;
  margin-top: 20px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


