/* HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f0f0f0 0%, #f8f0ff 40%, #fff5e0 70%, #e0f0ff 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-onda-wrapper {
  position: relative;
  margin-top: -40px;
  z-index: 4;
  line-height: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px;
  max-width: 55%;
}

.hero-content h1 {
  font-family: 'Helvetica World', Helvetica, Arial, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.15;
  color: #111;
  margin-bottom: 28px;
}

.hero-content h1 .criativa-text {
  font-family: 'Dilemma', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, #ff00cf, #7800ff, #ff7300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-family: 'Aeonik Trial', 'Aeonik', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #c34db6, #0900d6) !important;
  color: #fff !important;
  padding: 18px 36px;
  border: none !important;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  box-shadow: none !important;
}
.hero .btn-hero:hover { opacity: 0.85; transform: none !important; }
.hero .btn-hero .arrow { font-size: 24px; line-height: 1; }

.hero-image {
  position: absolute;
  right: -20px;
  bottom: 0;
  height: 110%;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}

.sparkle {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.sp1 { top: 12%; right: 36%; }
.sp2 { top: 18%; right: 30%; }
.sp3 { bottom: 18%; left: 42%; }
.sp4 { bottom: 10%; left: 50%; }
.sp5 { top: 30%; right: 22%; }

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
    padding: 50px 28px 24px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .hero .btn-hero {
    padding: 16px 32px;
    font-size: 17px;
  }

  .hero-image {
    position: relative;
    right: -15%;
    bottom: auto;
    height: auto;
    width: 95%;
    max-height: 400px;
    margin-left: auto;
    margin-right: 0;
    margin-top: 16px;
    display: block;
  }

  .sparkle { display: none; }

  /* cards mobile */
  .card-destaque {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    flex: 0 0 140px !important;
    height: auto !important;
  }

  .card-destaque img {
    height: 180px !important;
  }

  .card-destaque .info {
    padding: 8px !important;
  }

  .card-destaque .nome {
    font-size: 12px !important;
  }

  .card-destaque .preco {
    font-size: 14px !important;
  }

  .carousel-container {
    padding: 0 10px !important;
  }

  .carousel-arrow {
    width: 30px !important;
    height: 60px !important;
  }

  .carousel-track {
    gap: 10px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    padding: 60px 40px;
    max-width: 60%;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 18px;
  }
}

/* categorias */
.categoria-bolinha {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 14px;
}

.categoria-img-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.categoria-bolinha:hover .categoria-img-container {
  border-color: #c34db6;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(195,77,182,0.25);
}

.categoria-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.categoria-nome {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
  max-width: 180px;
}

.categoria-bolinha:hover .categoria-nome {
  color: #c34db6;
}

@media (max-width: 768px) {
  .categoria-img-container {
    width: 100px;
    height: 100px;
  }

  .categoria-nome {
    font-size: 12px;
    max-width: 100px;
  }
}
