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

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-container {
  width: 100%;
  text-align: center;
  margin: 10px 0 30px;
}

.banner-img {
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Header Styles */
.header-top {
  background-color: #ff0080;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

.header-main {
  background-color: white;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo h1 {
  font-size: 32px;
  font-weight: 700;
  color: #ff0080;
  text-transform: lowercase;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  display: flex;
  gap: 10px;
}

.search-bar input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #ff0080;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

.search-bar button {
  background-color: #ff0080;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.header-link:hover {
  color: #ff0080;
}

.nav-menu {
  background-color: #f8f8f8;
  padding: 15px 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff0080;
}

/* Featured Section with Neon Box */
.featured-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff 0%, #ffe6f5 100%);
}

.neon-box {
  background: #ff0080;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 50px;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.5), 0 0 40px rgba(255, 0, 128, 0.3), 0 0 60px rgba(255, 0, 128, 0.2);
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5), 0 0 40px rgba(255, 0, 128, 0.3), 0 0 60px rgba(255, 0, 128, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.8), 0 0 60px rgba(255, 0, 128, 0.6), 0 0 90px rgba(255, 0, 128, 0.4);
  }
}

.neon-box h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Product Grid 2x2 */
.product-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Products Section */
.products-section {
  padding: 60px 0;
}

.promo-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding: 20px 40px;
}

.promo-title {
  background: linear-gradient(135deg, #ff0080 0%, #ff4da6 50%, #ff0080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
  filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6));
}

@keyframes gradientShift {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255, 0, 128, 0.9)) brightness(1.2);
  }
}

.promo-product-highlight {
  background: linear-gradient(135deg, #fff5fb 0%, #ffe6f5 100%);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(255, 0, 128, 0.2);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.promo-product-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.promo-product-highlight .product-card {
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin: 0 auto;
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 0, 128, 0.3);
}

.promo-product-highlight .product-card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(255, 0, 128, 0.4);
}

.promo-product-highlight .buy-btn {
  font-size: 18px;
  padding: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
  animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.6);
  }
}

.promo-product-highlight .price-current {
  font-size: 36px;
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
  }
}

.section-title2 {
  font-size: 28px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 40px;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 0, 128, 0.2);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff0080;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
  z-index: 1;
}

.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: 2px solid #ff0080;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
}

.favorite-btn:hover {
  background-color: #ff0080;
  color: white;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  min-height: 40px;
  line-height: 1.3;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.price-old {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
  color: #ff0080;
}

.buy-btn {
  width: 100%;
  background-color: #ff0080;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buy-btn:hover {
  background-color: #e6007a;
}

/* Product Carousel */
.product-carousel {
  position: relative;
  margin-top: 40px;
}

.product-carousel-container {
  overflow: hidden;
  padding: 20px 0;
}

.product-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff0080;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: #e6007a;
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

.product-carousel .product-card {
  min-width: 280px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .search-bar {
    max-width: 100%;
  }

  .nav-menu ul {
    gap: 15px;
    font-size: 12px;
  }

  /* Neon Box Mobile */
  .neon-box {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  .neon-box h2 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  /* Grid 2x2 no Mobile */
  .product-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }

  .product-grid-2x2 .product-card {
    padding: 10px;
  }

  .product-grid-2x2 .product-card img {
    height: 150px;
  }

  .product-grid-2x2 .product-card h3 {
    font-size: 11px;
    min-height: 32px;
    line-height: 1.2;
  }

  .product-grid-2x2 .product-description {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .product-grid-2x2 .price-old {
    font-size: 11px;
  }

  .product-grid-2x2 .price-current {
    font-size: 16px;
  }

  .product-grid-2x2 .buy-btn {
    padding: 10px;
    font-size: 12px;
  }

  .product-grid-2x2 .favorite-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    top: 8px;
    right: 8px;
  }

  /* Destaque da Promoção Mobile */
  .section-title {
    font-size: 24px;
    padding: 15px 20px;
    letter-spacing: 1px;
  }

  .promo-product-highlight {
    padding: 20px 15px;
    margin-bottom: 50px;
  }

  .promo-product-highlight .product-card {
    max-width: 100%;
    transform: scale(1);
  }

  .promo-product-highlight .product-card:hover {
    transform: scale(1.02);
  }

  .promo-product-highlight .price-current {
    font-size: 28px;
  }

  .promo-product-highlight .buy-btn {
    font-size: 16px;
    padding: 15px;
  }

  /* Carrossel Mobile */
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .carousel-btn.prev {
    left: -5px;
  }

  .carousel-btn.next {
    right: -5px;
  }

  .product-carousel .product-card {
    min-width: 220px;
  }

  .section-title2 {
    font-size: 22px;
  }

  /* Container Mobile */
  .container {
    padding: 0 15px;
  }

  .products-section {
    padding: 40px 0;
  }

  .featured-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .product-grid-2x2 {
    gap: 8px;
    padding: 0 5px;
  }

  .product-grid-2x2 .product-card {
    padding: 8px;
  }

  .product-grid-2x2 .product-card img {
    height: 120px;
  }

  .product-grid-2x2 .product-card h3 {
    font-size: 10px;
    min-height: 28px;
  }

  .product-grid-2x2 .price-current {
    font-size: 14px;
  }

  .product-grid-2x2 .buy-btn {
    padding: 8px;
    font-size: 11px;
  }

  .neon-box h2 {
    font-size: 16px;
  }

  .section-title {
    font-size: 20px;
  }
}
