.hero {
  position: relative;
  padding-top: 8%;
  margin: 2rem;
  top: -7.5rem;
  border-radius: 20px;
  margin-bottom: -7.5rem;
  background-image: url(/wp-content/themes/erotixxxtoys/images/bg-home-the-clean-life-san-diego-01.png) !important;
  min-height: 73vh;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    128deg,
    rgba(255, 240, 245, 0.9) 30%,
    rgba(255, 239, 244, 0.75) 50%,
    rgba(255, 232, 238, 0) 70%
  );
  mix-blend-mode: lighten;
  pointer-events: none;
  z-index: 2;
}

.hero .container {
  max-width: 80%;
}

.hero div {
  z-index: 3;
}

.hero .hero-left {
  position: relative;
}

.hero .hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-top: 2rem;
  line-height: 4.5rem;
}

.hero .hero-paragraph {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero .hero-ratings {
  position: absolute;
  bottom: -8rem;
  display: flex;
  gap: 10px;
}

.hero .hero-rating-card {
  background: var(--white);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hero .hero-rating-card a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero .hero-rating-card .card-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hero .hero-rating-card .card-stars {
  font-size: 1.25rem;
  display: flex;
}

.hero .hero-rating-card .card-stars .star {
  color: #ccc;
}

.hero .hero-rating-card .card-stars .star.filled {
  color: #ffc107;
}

.hero .hero-right {
  position: relative;
}

.hero .hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero .hero-image {
  height: auto;
  display: block;
  width: auto;
  max-height: 560px;
  float: inline-end;
  z-index: 2;
  position: relative;
}

.hero .hero-badge-left {
  position: absolute;
  left: 7%;
  top: 21rem;
  transform: translateX(50%);
  z-index: 3;
  width: 220px;
  height: auto;
}

.hero .hero-badge-right {
  position: absolute;
  right: 10%;
  top: 13rem;
  transform: translateX(50%);
  z-index: 1;
  width: 220px;
  height: auto;
}

.hero .hero-badge-left,
.hero .hero-badge-right {
  transition: transform 0.2s ease-out;
}

@media (max-width: 991px) {
  .hero .hero-ratings {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }

  .hero .hero-right .hero-image-wrapper {
    position: static;
    margin-top: 20px;
  }

  .hero .hero-badge-left,
  .hero .hero-badge-right {
    display: none; /* Esconde badges no mobile */
  }
}

@media (max-width: 767px) {
  .hero .hero-title {
    font-size: 2rem;
  }

  .hero .hero-paragraph {
    font-size: 1rem;
  }

  .hero .hero-rating-card {
    gap: 5px;
  }
}

.hero .hero-button {
  position: relative;
  display: inline-block;
  padding: 16px 30px 14px 30px;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 100px;
  background: #292929;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  line-height: 1;
  border: none;
}

.hero .hero-button .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--purple);
  color: white;
  z-index: -1;
  transition: width 0.3s ease;
}

.hero .hero-button:hover .background {
  width: 100%;
}

.hero .hero-button .text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .hero .hero-rating-card:nth-child(2) {
    display: none;
  }
  .hero {
    position: relative;
    min-height: 66vh;
    display: flex;
    align-items: center;
    margin: 2rem 1rem;
    margin-bottom: -6rem;
  }
  .hero .hero-title {
    font-size: 3rem !important;
    line-height: 3rem !important;
  }
  .hero .hero-ratings {
    position: static;
    margin-top: 80px;
    justify-content: center;
  }
  .hero .container {
    max-width: 90%;
  }
}
