/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: 
    linear-gradient(to bottom right, #210933f0, rgba(0, 0, 0, 0.9)),
    url('https://wallpapers.com/images/hd/football-stadium-abstract-art-pcpkmxwcv01sgyj2.jpg') no-repeat center center/cover;
  color: #ffffff;
  min-height: 100vh;
}


/* Wrapper ocupa altura total da tela */
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 5rem;
  gap: 2rem;
  height: 100vh;
  max-width: 1024px;
  margin: auto;
}

/* Texto lado esquerdo */
.text-container {
  text-align: center;
  flex: 1;
}

h1 {
  font-size: 2rem;
  color: #f31280;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.subheadline {
  font-size: 1.1rem;
  color: #dddddd;
  margin-bottom: 1.5rem;
}

.image-container img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 20px;
}

.cta {
  display: inline-block;
  background-color: #f31280;
  color: #1e1d24;
  padding: 1rem 2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s ease;
  animation: pulseCTA 2.5s infinite;
  box-shadow: 0 0 0 0 rgba(243, 18, 128, 0.6);
}

@keyframes pulseCTA {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 18, 128, 0.5); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 14px rgba(243, 18, 128, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 18, 128, 0); }
}

.cta:hover {
  background-color: #b100cc;
  transform: scale(1.05);
}
.disclaimer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: left;
}

.disclaimer img {
  max-width: 20rem;
  height: auto;
  opacity: 0.85;
}

.disclaimer img:hover {
  opacity: 1;
  filter: brightness(1.1);
}


/* Imagem lado direito */
.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 12px;
  object-fit: contain;
}

.mini-label {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #7c3aed, #e600ff);
  color: #181818;
  padding: 0.8rem 1.2rem;
  width: 90%;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(230, 0, 255, 0.4);
  text-align: center;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  padding-top: 2rem;
}

.mockup-wrapper {
  position: relative;
  text-align: center;
  animation: pulseFade 6s ease-in-out infinite;
}

.mockup-wrapper img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(230, 0, 255, 0.3);
  transition: transform 0.4s ease;
}

.mockup-wrapper:hover img {
  transform: scale(1.02);
}

/* Animação sutil para gerar curiosidade */
@keyframes pulseFade {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.94; transform: scale(1.01); }
}

/* Layout horizontal para desktop */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column-reverse;
    padding: 2rem 1.5rem;
  }

  .image-container {
    margin-bottom: 2rem;
  }

  .text-container {
    text-align: center;
  }

  .disclaimer {
    justify-content: center;
  }

  .disclaimer img {
    margin: 0 auto;
  }

  .mini-label {
    bottom: -0.1rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) {
  .wrapper {
    flex-direction: row;
    align-items: center;
    padding: 2rem 5rem;
  }

  .text-container {
    text-align: left;
    padding-right: 2rem;
  }

  .image-container {
    margin-bottom: 0;
  }
}


