/* Wrapper do header para sticky */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.header-wrapper.scrolled {
  opacity: 0.9;
}

/* Barra rosa superior */
.top-bar {
  background: #ff008a;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.top-bar p {
  margin: 0;
  padding: 0 10px;
  line-height: 1.4;
}

.banner-text {
  display: inline-block;
  animation: fadeIn 0.5s ease-in;
}

.top-bar a {
  color: #ffffff;
  text-decoration: underline;
}

.top-bar strong a {
  color: #ffffff;
  text-decoration: underline;
}

.top-bar svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* Cabeçalho branco */
.main-header {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão menu */
.menu-btn {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Logo */
.logo {
  font-size: 24px;
  color: #ff008a;
  font-weight: 700;
  text-transform: lowercase;
  font-family: Arial, sans-serif;
}

/* Ícones (local, user, carrinho) */
.icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icons img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

* {
  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;
}

/* Dificulta seleção e cópia em textos (não impede totalmente) */
body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

input,
textarea,
button {
  user-select: auto;
  -webkit-user-select: auto;
  -ms-user-select: auto;
}

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

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

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

/* Carrossel de Banners */
.banner-carousel-container {
  width: 100%;
  position: relative;
  margin: 10px 0 30px;
  padding: 0 10px;
}

.banner-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.banner-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
  display: block;
  opacity: 1;
}

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

/* Dots de navegação do banner */
.banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.banner-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 0, 138, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-dots .dot.active {
  background: #ff008a;
  width: 30px;
  border-radius: 5px;
}

/* Título simples para Ofertas da Live */
.ofertas-live-title {
  text-align: center;
  color: #ff008a;
  font-size: 28px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 2px;
  margin: 20px auto 10px;
}

/* 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;
}

/* Wrapper do carrossel de perfumaria */
.perfumaria-carousel-wrapper {
  width: 100%;
  position: relative;
}

/* Wrapper do carrossel da promoção da Live */
.promo-live-carousel-wrapper {
  width: 100%;
  position: relative;
}

/* Grid da promoção da Live no desktop */
.promo-live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Seção Kits da Live */
.kits-live-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.kits-live-badge {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border: 2px solid #ff008a;
  color: #ff008a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #ffffff;
  text-align: center;
}

.kits-live-title {
  text-align: center;
  margin-bottom: 40px;
}

.kits-live-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ff008a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Grid de 4 colunas para Kits da Live */
.kits-live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  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;
}

/* Banner da Perfumaria */
.perfumaria-banner {
  text-align: center;
  margin: 80px 0 40px;
  padding: 0;
  width: 100%;
}

.perfumaria-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Box de cadastro (newsletter) */
.newsletter-box {
  background: #ff008a;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  max-width: 680px;
  margin: 30px auto 0;
}

.newsletter-box h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 1.4;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #999999;
}

.newsletter-submit {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  color: #ff008a;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-submit:hover {
  background: #ffe6f5;
  transform: translateY(-1px);
}

.newsletter-status {
  color: #ffffff;
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}

.newsletter-status.error {
  color: #ffe6f5;
}

/* 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);
}

/* Cards de promoção com destaque especial */
.promo-product-card {
  border: 2px solid rgba(255, 0, 138, 0.2);
  position: relative;
  overflow: visible;
}

.promo-product-card:hover {
  border-color: rgba(255, 0, 138, 0.5);
  box-shadow: 0 8px 30px rgba(255, 0, 128, 0.3);
  transform: translateY(-8px);
}

/* Badge de desconto */
.discount-badge {
  position: absolute;
  top: -8px;
  right: 15px;
  background: linear-gradient(135deg, #ff008a 0%, #ff4da6 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 0, 138, 0.5);
  animation: discountPulse 2s ease-in-out infinite;
}

@keyframes discountPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Benefícios do produto */
.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  justify-content: center;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #fff5fb 0%, #ffe6f5 100%);
  color: #ff008a;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  border: 1px solid rgba(255, 0, 138, 0.2);
}

/* Botão de compra da promoção */
.promo-buy-btn {
  background: linear-gradient(135deg, #ff008a 0%, #ff4da6 100%);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 0, 138, 0.4);
}

.promo-buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.promo-buy-btn:hover::before {
  left: 100%;
}

.promo-buy-btn:hover {
  background: linear-gradient(135deg, #e6007a 0%, #ff3399 100%);
  box-shadow: 0 6px 20px rgba(255, 0, 138, 0.6);
  transform: translateY(-2px);
}

.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;
}

/* Texto siga @wepink.br */
.siga-wepink {
  text-align: center;
  margin-bottom: 30px;
}

.siga-wepink p {
  font-size: 24px;
  font-weight: 700;
  color: #ff008c;
  font-family: Arial, sans-serif;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Adicionando estilos para o destaque do mês */
.destaque-mes-section {
  margin: 0 auto 50px;
  max-width: 800px;
}

.destaque-card {
  background: #ff008a;
  border-radius: 16px;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  box-shadow: 0 8px 30px rgba(255, 0, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.destaque-card::before {
  display: none;
}

.destaque-image {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destaque-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  object-fit: contain;
}

.destaque-content {
  flex: 1;
  background: #ff008a;
  color: white;
  position: relative;
  z-index: 1;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destaque-badge {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  color: white;
}

.destaque-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: white;
}

.destaque-description {
  font-size: 13px;
  margin-bottom: 15px;
  color: white;
  font-weight: 400;
  line-height: 1.4;
}

.destaque-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.destaque-btn {
  background: white;
  color: #ff008a;
  border: none;
  padding: 14px 35px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: lowercase;
  align-self: flex-start;
}

.destaque-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #ff0080;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* 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;
}

/* Box neon estilo igual ao da neon-box, porém para celular */
.promo-body-box.neon-mobile {
  background: linear-gradient(135deg, #ff008a 0%, #ff4da6 50%, #ff008a 100%);
  padding: 24px 18px;
  border-radius: 20px;
  text-align: center;
  margin: 28px auto;
  max-width: 95%;
  box-shadow: 0 0 20px rgba(255, 0, 138, 0.8), 0 0 40px rgba(255, 0, 138, 0.5), 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
}

/* Título menor para telas de celular */
.promo-body-box.neon-mobile h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 8px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Subtítulo */
.promo-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 500;
  margin: 8px 0 16px;
  line-height: 1.4;
}

/* Badges de confiança */
.promo-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* Footer Styles */
.footer-wepink {
  background: #ff008c;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 40px;
}

.footer-logo-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: lowercase;
  font-family: Arial, sans-serif;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.footer-links li {
  margin: 10px 0;
  font-size: 15px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.footer-links a:hover {
  transform: translateX(5px);
}

.footer-payments {
  text-align: center;
  margin-bottom: 40px;
}

.footer-payments h3 {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-transform: none;
}

.payment-cards {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.payment-cards img {
  width: 60px;
  height: 38px;
  object-fit: contain;
  background: #fff;
  padding: 8px 12px;
  border: 1px solid #fff;
  border-radius: 4px;
}

.payment-pix {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.pix-icon {
  width: 65px;
  height: 65px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.payment-pix span {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.back-to-top {
  margin-bottom: 20px;
}

.back-to-top a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arrow-up {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff66b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.footer-legal-links {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-legal-links span {
  color: #fff;
  font-size: 14px;
}

.footer-info {
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
}

.footer-info p {
  margin: 8px 0;
  color: #fff;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  /* Banner carousel mobile */
  .banner-carousel-container {
    margin: 10px 0 20px;
    padding: 0 5px;
  }

  .banner-slide img {
    border-radius: 8px;
  }

  .banner-dots {
    margin-top: 10px;
    gap: 6px;
  }

  .banner-dots .dot {
    width: 8px;
    height: 8px;
  }

  .banner-dots .dot.active {
    width: 24px;
  }

  .ofertas-live-title {
    font-size: 20px;
    letter-spacing: 1px;
    margin: 15px auto 8px;
  }

  /* Top bar mobile */
  .top-bar {
    padding: 8px 5px;
    font-size: 12px;
  }

  .top-bar p {
    padding: 0 5px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.5;
  }

  .banner-text {
    display: block;
  }
  .header-content {
    flex-direction: column;
  }

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

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

  /* Siga wepink mobile */
  .siga-wepink {
    margin-bottom: 25px;
  }

  .siga-wepink p {
    font-size: 20px;
  }

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

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

  /* Carrossel de Perfumaria Mobile */
  .perfumaria-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 10px 0;
    position: relative;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .perfumaria-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .perfumaria-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    padding: 0 0 0 15px;
    grid-template-columns: none !important;
    max-width: none;
    margin: 0 0 20px 0;
    width: max-content;
  }

  .perfumaria-grid .product-card {
    min-width: calc(60vw - 10px);
    width: calc(60vw - 10px);
    flex-shrink: 0;
    margin: 0;
    position: relative;
    padding-bottom: 0;
    scroll-snap-align: start;
  }

  .perfumaria-grid .product-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #ff0080 30%, #ffffff 30%, #ffffff 100%);
    border-radius: 3px;
  }

  /* Carrossel da Promoção da Live Mobile */
  .promo-live-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 10px 0;
    position: relative;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .promo-live-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }

  .promo-live-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    padding: 0 0 0 15px;
    grid-template-columns: none !important;
    max-width: none;
    margin: 0 0 20px 0;
    width: max-content;
  }

  .promo-live-grid .product-card {
    min-width: calc(60vw - 10px);
    width: calc(60vw - 10px);
    flex-shrink: 0;
    margin: 0;
    position: relative;
    padding-bottom: 0;
    scroll-snap-align: start;
  }

  .promo-live-grid .product-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #ff0080 30%, #ffffff 30%, #ffffff 100%);
    border-radius: 3px;
  }

  /* Grid 2x2 no Mobile (para outros produtos) */
  .product-grid-2x2:not(.perfumaria-grid) {
    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;
  }

  /* Banner da Perfumaria Mobile */
  .perfumaria-banner {
    margin: 40px 0 30px;
    padding: 0;
    width: 100%;
  }

  .perfumaria-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Newsletter Mobile */
  .newsletter-box {
    padding: 22px 16px;
    margin: 25px auto 0;
  }

  .newsletter-box h3 {
    font-size: 16px;
  }

  .newsletter-form input,
  .newsletter-submit {
    font-size: 13px;
    padding: 10px 14px;
  }

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

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

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

  /* Destaque do Mês Mobile */
  .destaque-mes-section {
    margin: 0 auto 40px;
    max-width: 100%;
    padding: 0 15px;
  }

  .destaque-card {
    flex-direction: column;
    gap: 0;
  }

  .destaque-image {
    flex: 0 0 auto;
    width: 100%;
    padding: 40px 15px 30px;
  }

  .destaque-image img {
    max-width: 250px;
    margin: 0 auto;
  }

  .destaque-content {
    text-align: left;
    padding: 30px 25px;
    width: 100%;
  }

  .destaque-badge {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .destaque-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .destaque-description {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .destaque-price {
    font-size: 34px;
    margin-bottom: 25px;
  }

  .destaque-btn {
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 800;
    width: 100%;
    max-width: none;
    align-self: stretch;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .footer-logo-social {
    flex-wrap: wrap;
  }

  .footer-logo {
    font-size: 24px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-links li {
    font-size: 14px;
  }

  .footer-payments h3 {
    font-size: 15px;
  }

  .payment-cards {
    gap: 10px;
  }

  .payment-cards img {
    width: 50px;
    height: 32px;
    padding: 6px 10px;
  }

  .payment-pix img {
    width: 45px;
    height: 45px;
  }

  .footer-info {
    font-size: 12px;
  }

  .footer-legal-links {
    font-size: 13px;
  }

  .back-to-top a {
    font-size: 13px;
  }
}

@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;
  }

  .promo-body-box.neon-mobile h2 {
    font-size: 18px;
  }

  .promo-subtitle {
    font-size: 12px;
  }

  .trust-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .discount-badge {
    font-size: 11px;
    padding: 5px 10px;
    top: -6px;
    right: 10px;
  }

  .benefit-tag {
    font-size: 9px;
    padding: 3px 8px;
  }

  .promo-buy-btn {
    font-size: 13px;
    padding: 12px;
  }

  .promo-live-grid {
    padding: 15px 0;
  }

  /* Kits da Live Mobile */
  .kits-live-section {
    padding: 30px 15px;
  }

  .kits-live-badge {
    font-size: 10px;
    padding: 4px 8px;
    top: 10px;
    left: 10px;
  }

  .kits-live-title {
    margin-bottom: 25px;
  }

  .kits-live-title h2 {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .kits-live-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }

  .kits-live-grid .product-card {
    padding: 10px;
  }

  .kits-live-grid .product-card img {
    height: 150px;
  }

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

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

  .kits-live-grid .price-old {
    font-size: 11px;
  }

  .kits-live-grid .price-current {
    font-size: 16px;
  }

  .kits-live-grid .buy-btn {
    padding: 10px;
    font-size: 12px;
  }

  .kits-live-grid .favorite-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    top: 8px;
    right: 8px;
  }

  .destaque-image {
    padding: 30px 10px 20px;
  }

  .destaque-image img {
    max-width: 210px;
    margin: 0 auto;
  }

  .destaque-content {
    padding: 25px 20px;
  }

  .destaque-badge {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .destaque-title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .destaque-description {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .destaque-price {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .destaque-btn {
    padding: 14px 25px;
    font-size: 18px;
  }

  .payment-icons img {
    width: 48px;
    height: 30px;
    padding: 5px 10px;
  }

  .ofertas-live-title {
    font-size: 18px;
    letter-spacing: 1px;
  }

  /* Kits da Live Mobile Pequeno */
  .kits-live-title h2 {
    font-size: 20px;
  }

  .kits-live-badge {
    font-size: 9px;
    padding: 3px 7px;
    top: 8px;
    left: 8px;
  }

  .kits-live-grid {
    gap: 8px;
    padding: 0 5px;
  }

  .kits-live-grid .product-card {
    padding: 8px;
  }

  .kits-live-grid .product-card img {
    height: 120px;
  }

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

  .kits-live-grid .price-current {
    font-size: 14px;
  }

  .kits-live-grid .buy-btn {
    padding: 8px;
    font-size: 11px;
  }

  /* Newsletter Mobile Pequeno */
  .newsletter-box {
    padding: 20px 14px;
  }

  .newsletter-box h3 {
    font-size: 14px;
  }

  .newsletter-form input,
  .newsletter-submit {
    font-size: 12px;
    padding: 9px 12px;
  }
}
