/* Geral */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #f7f7f7;
}
.header {
    background-color: #000; /* Cor de fundo */
    background-image: url('../img/texture.jpg'); /* Textura */
    background-repeat: repeat-x; /* Repetir a textura */
    background-position: center; /* Centralizar a textura */
}
/* Header */
.header .logo {
    width: 260px;
}
.header nav {
    margin-top: 1rem;
}
.header .navbar-nav {
    gap: 1rem;
}
.header .category-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.header .category-link:hover {
    border: none;
    color: #f8c210;
}
.navbar-toggler {
    border: none;
    color: #fff;
}
.navbar-toggler-icon {
    border: none;
    border-radius: 2px;
}

/* Título Moderno */
.page-title {
    text-align: center;
    padding: 1rem 1rem 0.2rem 1rem;
    background: linear-gradient(90deg, #f8c210, #ff8800);
    color: #fff;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.page-title .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Produtos */
.products .product-card {
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.products .product-card:hover {
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: #000; /* Cor de fundo */
    background-image: url('../img/texture.jpg'); /* Textura */
    background-repeat: repeat-x; /* Repetir a textura */
    background-position: center; /* Centralizar a textura */
    padding: 2rem 1rem;
}
.footer-logo {
    width: 100px;
}
.footer .footer-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}
.footer .footer-link:hover {
    color: #f8c210;
}
.footer-categories .list-unstyled {
    margin: 0;
    padding: 0;
}

#titulo h1{
    padding: 0 0 0 0;
    margin: 20px 0 0 0;
    text-align: center;
    font-size: 30px;
}

.navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}