/* Estilos específicos para a página de produtos */
.product-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-hero.purple {
  background: linear-gradient(135deg, #3e1e6f 0%, #2a1f5e 100%);
  color: white;
}

.product-hero.white {
  background-color: #ffffff;
  color: #1a1a1a;
}

.product-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1;
}

.product-hero-content h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}

.product-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.product-hero-content strong {
  font-weight: 600;
}

.price-tag {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 40px;
  display: block;
}

.product-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.icon-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.icon-2 {
  top: 20%;
  right: 10%;
  animation-delay: 0.5s;
}
.icon-3 {
  bottom: 30%;
  left: 10%;
  animation-delay: 1s;
}
.icon-4 {
  bottom: 20%;
  right: 5%;
  animation-delay: 1.5s;
}

.product-character {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
}

.abstract-shape {
  position: absolute;
  background: #ff1e79;
  opacity: 0.8;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(80px);
}

/* Responsivo */
@media (max-width: 968px) {
  .product-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 20px;
    text-align: center;
  }

  .product-hero-content {
    order: 2;
  }

  .product-hero-image {
    order: 1;
  }

  .product-hero.white .product-hero-content {
    order: 1;
  }

  .product-hero.white .product-hero-image {
    order: 2;
  }
}

@media (max-width: 640px) {
  .product-hero-container {
    padding: 40px 15px;
    gap: 40px;
  }

  .product-hero-content h1 {
    font-size: 2rem;
  }

  .price-tag {
    font-size: 1.5rem;
  }
}
