header {
           width: 100%;
            border-bottom: 1px solid #d1fae5;
            padding: 0 10px;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }

        .logo-icon{
            display: flex;
            align-items: center;
            gap: 36px;
        }
        .logo-icon img:nth-child(1n){
            width: 70px;
        }
        
        .logo-icon img:nth-child(3n){
            width: 130px;
        }

        .nav-links {
             font-size: 2.4rem;
             font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--emerald-600);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--emerald-500);
            transition: width 0.2s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-contact-btn {
            background: linear-gradient(135deg, var(--emerald-500), var(--primary-green-dark));
            color: var(--white);
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .nav-contact-btn:hover {
            background: linear-gradient(135deg, var(--emerald-600), var(--primary-green-darker));
            transform: scale(1.05);
        }

        .mobile-menu-btn {
            display: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: var(--gray-700);
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .menu-toggle:hover {
            color: var(--emerald-600);
        }

        .mobile-menu {
            display: none;
            margin-top: 16px;
            padding-bottom: 16px;
            border-top: 1px solid var(--gray-200);
            padding-top: 16px;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-nav-link {
                         font-family: 'Inter', sans-serif;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            transition: color 0.2s ease;
            font-size: 2.4rem;
        }

        .mobile-nav-link:hover {
            color: var(--emerald-600);
        }

        .mobile-contact-btn {
            background: linear-gradient(135deg, var(--emerald-500), var(--primary-green-dark));
            color: var(--white);
            padding: 12px 16px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            font-size: 2.4rem;
        }
        
        
 
        /* Filter Section */
        .filter-section {
            background: white;
            padding: 30px 0;
           
            position: sticky;
            top: 0;
            z-index: 100;
            font-family: 'Inter', sans-serif;
            font-size:1.4rem;
        }

        .filter-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .filter-row {
            display: flex;
            gap: 25px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-group {
            display: flex;
            
            align-items: center;
        }

        .filter-label {
            font-weight: 600;
            color: #374151;
            font-size: 14px;
        }

        .filter-btn {
            padding: 8px 16px;
            border: 2px solid #10b981;
            background: white;
            color: #10b981;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size:1.4rem;
            font-weight: 600;
            margin:8px 8px;
            transition: all 0.2s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #10b981;
            color: white;
        }

        /* Products Grid */
        .products-section {
            max-width: 97%;
            margin: 0 auto;
            padding: 20px 10px;
        }

    .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    justify-content: center;
}

        .product-card {
            background: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
            background: #f3f4f6;
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 6px;
            border-radius: 5px;
         
         
            text-transform: uppercase;
            letter-spacing: 0.5px;
               font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
    font-style: normal;
     background-color: #d1fae5;
    color: var(--emerald-600);
    font-size: 1.7rem;
        }

        .badge-venda {
            background: #10b981;
            color: white;
        }

        .badge-troca {
            background: #f59e0b;
            color: white;
        }

        .badge-doacao {
            background: #8b5cf6;
            color: white;
        }

        .product-content {
            padding: 20px;
        }

        .product-title {
                 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
    font-style: normal;
    font-size:2rem;
    color: var(--emerald-600);
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .product-description {
            color: #6b7280;
          font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-price {
            font-family: 'Inter', sans-serif;
            font-size: 1.7rem;
            font-weight: 400;
            font-weight: 800;
            color: #10b981;
            margin-bottom: 16px;
        }

        .product-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6b7280;
            font-size: 12px;
            margin-bottom: 16px;
        }

        .whatsapp-btn {
            width: 100%;
            background: #25d366;
            color: white;
            border: none;
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            transform: translateY(-1px);
        }

        .whatsapp-icon {
            width: 18px;
            height: 18px;
        }

        .no-products {
            text-align: center;
            padding: 60px 20px;
            color: #6b7280;
        }

        .no-products-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 40px 20px;
            }

            .header-title {
                font-size: 28px;
            }

            .header-subtitle {
                font-size: 16px;
            }

            .filter-row {
                flex-direction: column;
                gap: 16px;
            }

            .filter-group {
                flex-wrap: wrap;
                justify-content: center;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 16px;
            }

            .product-content {
                padding: 16px;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .filter-section {
                padding: 20px 0;
            }
        }

        .footer {
            background-color: var(--gray-800);
            color: var(--white);
            padding: 24px 0;
        }

        .footer-content {
       display: flex;
       justify-content: space-between;
       padding: 0 20px;
       flex-wrap: wrap;
       align-items: center;
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .footer-icon {
            width: 70px;
        }

        .footer-title {
             font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
        }

        .footer-subtitle {
            font-size: 14px;
            opacity: 0.75;
        }


        .footer-copyright,
        .footer-location {
            font-size: 14px;
            opacity: 0.75;
        }

     .modal-sucesso {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-conteudo {
background: #fff;
  width: 600px;
  height:140px;
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
            font-weight: 400;
text-align: justify;
flex-wrap: wrap;
  display: flex;
  gap: 10px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-align: center;
  max-width: 300px;

}

.fechar {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

  .header {
           
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .header-content {
            max-width: 90%;
            margin: 0 auto;
            gap:10px;
             display:flex;
  flex-direction:column;
  align-items:center;
       justify-content: center;
       
        }

        .header-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .header-subtitle {
           font-family: "Bebas Neue", sans-serif;

    font-size: 1.8rem;
            font-weight: 400;
            opacity: 0.9;
            
          color:#fff;
            line-height: 1.6;
        }

    .how-it-works {
  position: relative;
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), /* camada escura */
    url("../images/geral/fundoHeader.png");
  background-size: cover;
  background-position: center;
  color: #f9fafb; /* texto mais claro para contraste */
  padding: 2rem;
  border-radius: 0.75rem;
  margin: 2rem auto 0;
  max-width: 55rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 
}



        .steps-container {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .step {
            display:flex;
             align-items: center;
            justify-content: center;
            flex-direction:column;
            flex: 1;
            min-width: 12rem;
            text-align: center;
            padding: 1.5rem 1rem;
            background: #f8fafc;
            border-radius: 0.5rem;
            border: 0.125rem solid #e2e8f0;
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width:40px;
            text-align:center;
height:40px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
             font-family: "Bebas Neue", sans-serif;

    font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }

        .step-text {
            font-size: 0.875rem;
            line-height: 1.4;
            color: #64748b;
            font-weight: 500;
        }
        .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 20px;
}

.product-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}