:root {
    --primary-color: #353431;
    --dark-bg: #fafafa;
    --darker-bg: #FFDE59;
    --light-text: #353431;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--dark-bg);
    font-family: 'Poppins', sans-serif;
    color: var(--light-text);
    min-height: 100vh;
}


.navbar {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border-color: var(--border-color);
}

.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='rgba(255, 255, 255, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link:hover, .nav-link:focus {
    color: var(--light-text) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.card {
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
}

.card-img-top {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.breadcrumb {
    background-color: var(--darker-bg);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary-color);
    font-weight: bold;
}

.footer {
    background-color: var(--light-text);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 3rem;
    color: white
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--darker-bg);
    border-color: var(--light-text);
    color: var(--light-text)
}

.btn-outline-light {
    color: var(--dark-bg);
    border-color:var(--dark-bg);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.page-header {
    padding: 3rem 0 2rem;
}

.page-header h1 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 56px;
}

.page-header p {
    color: white;
    font-size: 1.1rem;
    margin: 0 auto;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .card-img-container {
        height: 150px;
    }

    .page-header div h1 {
        color: white;
        font-size: 32px;
        margin: 0 auto;
    }
}

.bg-full{
   background-color: var(--light-text);
   color: white;
   height: 350px;
}

.bg-options-full-card{
    margin-top: -80px;
    background-color: white;
    border-radius: 35px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Marca */

.marca-logo {
    max-height: 100px;
    max-width: 100%;
    margin-bottom: 1rem;
    padding: 10px
}

.modelo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.modelo-ano {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .card-img-container {
        height: 150px;
    }
}

/* Modelo */

     .modelo-foto {
            max-height: 200px;
            max-width: 100%;
            margin-bottom: 1rem;
            border-radius: 5px;
        }
        
        .modelo-info {
            margin-bottom: 1.5rem;
        }
        
        .modelo-info .badge {
            font-size: 0.9rem;
            padding: 0.5rem 0.75rem;
            margin-right: 0.5rem;
        }
        
        .manual-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .manual-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        
        @media (max-width: 767.98px) {
            .modelo-foto {
                max-height: 150px;
            }
        }

