/* Estilos existentes (mantenha esses se já estiverem no seu arquivo) */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Novos estilos para o navbar e produtos */
body {
    padding-top: 120px; /* Espaço para o navbar fixo */
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #8B4513 !important;
    padding: 0.8rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 8px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
}

/* Card Styles */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-img-top {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-text {
    flex-grow: 1;
    font-size: 0.9rem;
    color: #666;
}

/* Button Styles */
.btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
}

.btn-detalhes {
    min-width: 100px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    color: #8B4513 !important;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.5rem !important;
    }
}

/* Color Scheme */
.bg-warning {
    background-color: #FFC107 !important;
}

.text-primary {
    color: #8B4513 !important;
}

.bg-primary {
    background-color: #8B4513 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

/* Utility Classes */
.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destaque-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0;
}

/* Estilos para a página de login */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-top: 5rem;
}

.login-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-login {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-login img {
    max-height: 80px;
}

/* Estilos para o botão de login */
.btn-login {
    background-color: #8B4513;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #6d3810;
    transform: translateY(-2px);
}