* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --primary: #FF6B33;
    --secondary: #000000;
    --text-light: #FFFFFF;
    --text-dark: #333333;
}

body {
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: var(--secondary);
    padding: 20px;
    
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 10px;
}

.logo-image {
    width: 300px;
    /* height: 50px; */
    object-fit: contain;
}

.logo {
    color: var(--primary);
    font-size: 2.5em;
    text-transform: uppercase;
    font-family: 'Helvetica Black', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: -4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
    position: relative; /* Ajuda a manter o layout consistente */
}

.product-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    order: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-title {
    color: var(--secondary);
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

.product-quantidade,
.product-fabricante {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.product-price {
    color: var(--primary);
    font-size: 1.5em;
    font-weight: bold;
    margin: 15px 0;
    margin-top: auto; /* Empurra o preço para o rodapé do card */
}

.btn-saiba-mais {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Garante espaço entre o preço e o botão */
}

.btn-saiba-mais:hover {
    background-color: #ff8533;
}

.footer {
    background-color: var(--secondary);
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.footer a {
    color: #FFFFFF; /* cor branca */
    text-decoration: none; /* sem sublinhado */
  }
  

/* Responsividade para tablets */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer a {
        color: #FFFFFF; /* cor branca */
        text-decoration: none; /* sem sublinhado */
      }
      
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.8em;
    }
    .logo-image {
        width: 50%;
    }
    .footer a {
        color: #FFFFFF; /* cor branca */
        text-decoration: none; /* sem sublinhado */
      }
      
}