    * {
      margin: 0;
      padding: 0;footer {
  background: linear-gradient(135deg, #0d1324 0%, #070b14 100%);
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #ff6b00;
  margin-top: 20px;
}


      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    
    body {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      color: #f1f1f1;
      line-height: 1.6;
      min-height: 100vh;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header Fixo Combinado */
    .fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(255, 102, 0, 0.2);
      z-index: 1000;
      height: 70px;
      border-bottom: 1px solid #333;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5%;
      height: 70px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
    }
    
    .logo {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #ff6600, #ff9d00);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0a0a0a;
      font-weight: bold;
      font-size: 18px;
      box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
    }
    
    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 24px;
      font-weight: 700;
      background: linear-gradient(to right, #ff9d00, #ff6600);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
      letter-spacing: 0.5px;
    }
    
    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .support-icon, .filter-icon {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #ddd;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 25px;
      transition: all 0.3s ease;
      background: linear-gradient(135deg, #222 0%, #111 100%);
      box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
      border: 1px solid #333;
      cursor: pointer;
    }
    
    .support-icon:hover, .filter-icon:hover {
      background: linear-gradient(135deg, #ff6600 0%, #ff9d00 100%);
      color: #0a0a0a;
      box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
      transform: translateY(-2px);
    }
    
    .material-symbols-outlined {
      font-size: 24px;
    }
    
    .orange-line {
      height: 2px;
      width: 100%;
      background: linear-gradient(to right, transparent, #ff6600, #ff9d00, #ff6600, transparent);
      box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
    }
    
    /* Painel de Categorias */
    .categories-panel {
      position: fixed;
      top: 70px;
      right: 0;
      width: 300px;
      height: calc(100vh - 70px);
      background: rgba(20, 20, 20, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
      z-index: 999;
      padding: 25px;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      overflow-y: auto;
      border-left: 2px solid #ff6600;
    }
    
    .categories-panel.active {
      transform: translateX(0);
    }
    
    .categories-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      margin-bottom: 25px;
      color: #ff9d00;
      text-align: center;
      padding-bottom: 10px;
      border-bottom: 2px solid #333;
    }
    
    .category-list {
      list-style: none;
    }
    
    .category-item {
      margin-bottom: 15px;
    }
    
    .category-link {
      display: block;
      padding: 12px 15px;
      background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
      color: #ddd;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.3s ease;
      border: 1px solid #333;
    }
    
    .category-link:hover {
      background: linear-gradient(135deg, #ff6600 0%, #ff9d00 100%);
      color: #0a0a0a;
      transform: translateX(5px);
    }
    
    .category-link i {
      margin-right: 10px;
      width: 20px;
      text-align: center;
    }
    
    /* Overlay para fechar o painel */
    .overlay {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: calc(100vh - 70px);
      background: rgba(0, 0, 0, 0.7);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    /* Hero Section */
    .hero {
      padding: 100px 0 40px;
      text-align: center;
    }
    
    .hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
      background: linear-gradient(to right, #ff9d00, #ff6600);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 15px rgba(255, 107, 0, 0.3);
    }
    
    .hero p {
      font-size: 22px;
      color: #ccd6f6;
      max-width: 800px;
      margin: 0 auto 30px;
    }
    
    .divider {
      height: 4px;
      width: 120px;
      background: linear-gradient(to right, #ff6b00, #ff9e00);
      margin: 30px auto;
      border-radius: 4px;
    }
    
    /* Barra de Pesquisa e Filtros */
    .search-section {
      background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
      padding: 30px;
      border-radius: 16px;
      margin: 30px auto;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      border: 1px solid #333;
    }
    
    .search-container {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .search-box {
      flex: 1;
      min-width: 300px;
      position: relative;
    }
    
    .search-input {
      width: 100%;
      padding: 16px 20px 16px 50px;
      border: 1px solid #333;
      border-radius: 12px;
      font-size: 16px;
      background: #0a0a0a;
      color: #fff;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }
    
    .search-input:focus {
      outline: none;
      border-color: #ff6600;
      box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
    }
    
    .search-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: #888;
    }
    
    .filter-box {
      display: flex;
      gap: 15px;
      align-items: center;
    }
    
    .filter-select {
      padding: 16px 45px 16px 20px;
      border: 1px solid #333;
      border-radius: 12px;
      font-size: 16px;
      background: #0a0a0a;
      color: #fff;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 12a.5.5 0 0 1-.354-.146l-5-5a.5.5 0 1 1 .708-.708L8 10.793l4.646-4.647a.5.5 0 0 1 .708.708l-5 5A.5.5 0 0 1 8 12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .filter-select:focus {
      outline: none;
      border-color: #ff6600;
      box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
    }
    
    .filter-button {
      padding: 16px 25px;
      background: linear-gradient(135deg, #ff6600, #ff9d00);
      color: #0a0a0a;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    
    .filter-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
    }
    
    /* Products Section */
    .category-section {
      margin: 70px 0 40px;
    }
    
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 36px;
      margin-bottom: 30px;
      color: #ccd6f6;
      background: linear-gradient(to right, #ff9d00, #ff6600);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .section-title i {
      font-size: 32px;
    }
    
  .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* mais largo */
  gap: 15px; /* um espacinho a mais entre eles */
  margin-bottom: 40px;
}

    
    .product {
      background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .product:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 35px rgba(255, 102, 0, 0.2);
    }
    
    .product-image {
      height: 200px;
      background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      position: relative;
      overflow: hidden;
    }
    
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .product-info {
      padding: 25px;
    }
    
    .product-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      margin-bottom: 12px;
      color: #ddd;
    }
    
    .product-description {
      color: #8892b0;
      font-size: 15px;
      margin-bottom: 20px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .product-price {
      font-family: 'Montserrat', sans-serif;
      font-size: 26px;
      font-weight: 700;
      background: linear-gradient(to right, #ff9d00, #ff6600);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    }
    
    .old-price {
      text-decoration: line-through;
      color: #888;
      font-size: 18px;
      margin-left: 10px;
    }
    
    .product-category {
      display: inline-block;
      background: rgba(255, 106, 0, 0.2);
      color: #ffcc33;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }
    
    .buy-button {
      display: block;
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #ff6b00, #ff9e00);
      color: #0a0e17;
      border: none;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 17px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
      text-decoration: none;
      text-align: center;
    }
    
    .buy-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 107, 0, 0.5);
    }
    
    /* Efeito de partículas de fundo */
    .background-effects {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }
    
    .particle {
      position: absolute;
      background: linear-gradient(135deg, #ff6600, #ff9d00);
      border-radius: 50%;
      opacity: 0.1;
      animation: float 15s infinite linear;
    }
    
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      100% {
        transform: translateY(-100vh) rotate(360deg);
      }
    }
    
    /* Footer */
    footer {
      background: linear-gradient(135deg, #0d1324 0%, #070b14 100%);
      padding: 40px 0;
      text-align: center;
      border-top: 2px solid #ff6b00;
      margin-top: 60px;
    }
    
    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }
    
    .footer-logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      font-weight: 700;
      background: linear-gradient(to right, #ff9e00, #ff6b00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      cursor: pointer;
    }
    
    .footer-text {
      color: #8892b0;
      max-width: 600px;
      line-height: 1.6;
    }
    

    .copyright {
      color: #8892b0;
      margin-top: 20px;
      font-size: 14px;
    }
    
    /* WhatsApp fixed button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #1ebe5e);
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
  border: 2px solid #fff;
}


.whatsapp-float i {
  font-size: 18px;
}

    
    .whatsapp-float:hover {
      transform: scale(1.1) rotate(5deg);
    }
    
    .whatsapp-float i {
      font-size: 28px;
    }
    
    /* Botão voltar ao topo */
    .back-to-top {
      position: fixed;
      bottom: 110px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #ff6600, #ff9d00);
      color: #0a0a0a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
      z-index: 1000;
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
    }
    
    .back-to-top i {
      font-size: 20px;
    }
    
    /* Loading */
    .loading {
      text-align: center;
      padding: 3rem;
      color: #ff9d00;
      font-size: 1.2rem;
    }
    
    .loading i {
      animation: spin 1s linear infinite;
      margin-right: 10px;
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }
      
      .hero p {
        font-size: 18px;
      }
      
      .search-container {
        flex-direction: column;
      }
      
      .search-box {
        min-width: 100%;
      }
      
      .filter-box {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      
      .filter-select {
        flex: 1;
        min-width: 140px;
      }
      
      .products {
        grid-template-columns: 1fr;
      }
      
      .header-container {
        padding: 0 15px;
      }
      
      .categories-panel {
        width: 85%;
      }
      
      .support-icon span, .filter-icon span {
        display: none;
      }
      
      .support-icon, .filter-icon {
        padding: 10px 15px;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .search-section {
        padding: 20px;
      }
      
      .search-input, .filter-select, .filter-button {
        padding: 14px;
      }
      
      .whatsapp-float, .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
      }
      
      .back-to-top {
        bottom: 90px;
      }
    }
    
    @media (max-width: 480px) {
      .hero {
        padding: 80px 0 30px;
      }
      
      .hero h1 {
        font-size: 28px;
      }
      
      .logo-text {
        font-size: 20px;
      }
      
      .logo {
        width: 35px;
        height: 35px;
        font-size: 16px;
      }
      
      .filter-box {
        flex-direction: column;
        gap: 10px;
      }
      
      .filter-select, .filter-button {
        width: 100%;
      }
      
      .section-title {
        font-size: 24px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }
      
      .section-title i {
        font-size: 28px;
      }
    }

    /* Tablet - 2 colunas */
@media (max-width: 768px) {
  .products {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
}

/* Celular - 1 coluna */
@media (max-width: 480px) {
  .products {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
