body {
    font-family: monospace;
    background-color: #C0C0C0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-weight: bold;
}

.container .navbar-item {
    text-decoration: none;
    color: white;
    margin-right: 8px;
}

.container .navbar-item:hover {
    font-weight: bold;
}

.navbar .nav-link:hover {
    font-weight: bold;
}

.navbar button:hover {
    background-color: #007BFF;
}

.container h2 {
    font-weight: bold;
    color: white;
}

.carousel-inner img {
    width: 100%;
    height: 710px;
    object-fit: cover;
}

.container-marcas {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.marcas {
    text-align: center;
    padding: 40px;
    background: #007BFF;
    width: 100%;
}

.marcas h2 {
    margin-bottom: 30px;
    font-weight: bold;
    color: white;
}

.marca {
    text-align: center;
}

.marca p {
    color: black;
    margin-top: 10px;
    font-size: 20px;
}

.marca img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    background: #7b7b7b;
    padding: 15px;
}

footer {
    background-color: #343a40;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

footer p {
    margin-top: 20px;
    font-size: 20px;
}