* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-banner {
  background: linear-gradient(90deg, #ff0080 0%, #ff1493 100%);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}

.top-banner strong {
  font-weight: 700;
  text-decoration: underline;
}

.header {
  background-color: white;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo h1 {
  font-size: 32px;
  font-weight: 800;
  color: #ff0080;
  letter-spacing: -1px;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.search-bar input:focus {
  border-color: #ff0080;
}

.search-bar button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ff0080;
  cursor: pointer;
  padding: 5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #ff0080;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.header-link:hover {
  color: #ff0080;
}

.header-icon {
  color: #ff0080;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.header-icon:hover {
  transform: scale(1.1);
}

.main-nav {
  background-color: #f8f8f8;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-list a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  text-transform: lowercase;
}

.nav-list a:hover {
  color: #ff0080;
}

.newsletter-section {
  background: linear-gradient(135deg, #ff0080 0%, #ff1493 100%);
  padding: 50px 20px;
  text-align: center;
  color: white;
}

.newsletter-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.newsletter-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: lowercase;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.newsletter-form input {
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
  min-width: 200px;
}

.newsletter-form button {
  padding: 15px 40px;
  background-color: white;
  color: #ff0080;
  border: none;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fce4ec;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 700px;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
}

.slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #ff0080;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #ff0080;
}

.best-sellers {
  padding: 60px 20px;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #ff0080;
  margin-bottom: 50px;
  text-transform: lowercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ffd700;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-promo {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff0080;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-size {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.product-price {
  margin-bottom: 15px;
}

.old-price {
  display: block;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 3px;
}

.current-price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ff0080;
  margin-bottom: 3px;
}

.btn-buy {
  padding: 12px 20px;
  background-color: #ff0080;
  color: white;
  border: none;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  text-transform: capitalize;
  width: 100%;
}

.btn-buy:hover {
  background-color: #e0006e;
  transform: translateY(-2px);
}

.featured-product {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-image img {
  max-width: 100%;
  height: auto;
}

.featured-info {
  padding: 40px;
  background-color: #ff0080;
  border-radius: 20px;
  color: white;
}

.featured-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.featured-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-description {
  font-size: 16px;
  margin-bottom: 25px;
  font-style: italic;
}

.featured-price {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
}

.btn-featured {
  padding: 15px 50px;
  background-color: white;
  color: #ff0080;
  border: none;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.instagram-section {
  padding: 60px 20px;
  background-color: white;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-post {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.instagram-post:hover {
  transform: scale(1.05);
}

.instagram-post img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  background: linear-gradient(135deg, #ff0080 0%, #ff1493 100%);
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo-container {
  margin-bottom: 30px;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  display: block;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0080;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.back-to-top {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pix-logo {
  background-color: white;
  color: #ff0080;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
  text-align: center;
}

.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-legal a:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-contact {
  font-size: 12px;
  line-height: 1.6;
}

.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: auto;
  padding: 20px;
}

.product-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-content {
  background: #fff;
  max-width: 1200px;
  width: 100%;
  position: relative;
  padding: 60px 40px 40px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
}

.product-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: #333;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: color 0.3s;
}

.product-modal-close:hover {
  color: #ff0080;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-modal-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-modal-main-image {
  width: 100%;
  aspect-ratio: 1;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 20px;
}

.product-modal-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-modal-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-modal-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #ff0080;
  text-transform: uppercase;
  margin: 0;
}

.product-modal-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: #333;
  margin: 0;
}

.product-modal-size {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.product-modal-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

.modal-price-old {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}

.modal-price {
  font-size: 36px;
  font-weight: 700;
  color: #ff0080;
}

.modal-discount-badge {
  background: #ff0080;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.product-modal-description {
  padding: 15px 0;
}

.product-modal-description p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

.product-modal-benefits {
  padding: 24px 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

.product-modal-benefits h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.product-modal-benefits > p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.benefits-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.benefit-icon-item span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}

.product-modal-ingredients {
  border-bottom: 2px solid #f0f0f0;
}

.ingredients-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  color: #333;
}

.toggle-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #ff0080;
}

.ingredients-toggle.active .toggle-icon {
  transform: rotate(45deg);
}

.ingredients-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ingredients-content.active {
  max-height: 500px;
  padding-bottom: 16px;
}

.ingredients-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.product-modal-buy-button {
  background: linear-gradient(135deg, #ff0080 0%, #ff1493 100%);
  color: #fff;
  border: none;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-modal-buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 128, 0.3);
}

.promo-live-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.product-card-promo {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}

.product-card-promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card-promo .product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.product-card-promo .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card-promo .product-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: center;
}

.product-card-promo .product-size {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
  text-align: center;
}

.product-card-promo .current-price {
  text-align: center;
}

.product-card-promo .old-price {
  text-align: center;
}

.product-card-promo .btn-buy {
  padding: 12px 20px;
  width: 100%;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  z-index: 1999;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-header-actions {
  padding: 80px 30px 20px;
  border-bottom: 2px solid #f0f0f0;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-link:hover {
  color: #ff0080;
}

.mobile-menu-link svg {
  color: #ff0080;
}

.mobile-menu-overlay .nav-list {
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 30px;
  gap: 0;
}

.mobile-menu-overlay .nav-list a {
  font-size: 16px;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5;
}

@media (max-width: 968px) {
  .hamburger-menu {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 15px;
  }

  .header-link {
    display: none;
  }

  .header-icon {
    display: none;
  }

  .search-bar {
    max-width: 300px;
  }

  .featured-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-modal-content {
    padding: 40px 20px 20px;
  }

  .benefits-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: auto;
    min-height: 400px;
  }

  .section-title {
    font-size: 32px;
  }

  .newsletter-title {
    font-size: 28px;
  }

  .newsletter-subtitle {
    font-size: 22px;
  }

  .product-card {
    padding: 15px;
  }

  .product-name {
    font-size: 14px;
  }

  .current-price {
    font-size: 20px;
  }

  .btn-buy {
    font-size: 12px;
    padding: 10px 15px;
  }

  .products-grid {
    gap: 15px;
  }
}
