body {
    padding-top: 70px;
    padding-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

img {
    max-width: 100%;
}

.theme-dropdown .dropdown-menu {
    position: static;
    display: block;
    margin-bottom: 20px;
}

.theme-showcase > p > .btn {
    margin: 5px 0;
}

.theme-showcase .navbar .container {
    width: auto;
}

.col-sm-6.col-md-6 {
    margin: 45px 0px;
}

/* imagem transformer */
.carro-transformer img {
    width: 100%;
}

/* fim imagem transformer*/

/* imagem transformer acessorio */
.btn.acessorio {
    padding: 0;
    border: 0px solid transparent;
    border-radius: 0px;
    background: none;
    margin-top: 30px;
}

a.acessorio img, button.btn.acessorio img {
    width: 100%;
    background: #d6d6d6;
    border-radius: 15px;
    padding: 10px;
    transition: 0.5s;
}

a.acessorio img {
    margin-top: 30px;
}

a.acessorio:hover img, a.acessorio:active img, button.btn.acessorio:hover img, button.btn.acessorio:active img {
    background: #feb900;
}

a.acessorio.acessorio-ativo img, button.btn.acessorio-ativo img {
    background: #feb900;
}

/* fim imagem transformer acessorio */

/* informacao carros*/
h1.nome-carro {
    font-weight: bold;
    font-size: 36px;
    color: #000000;
}

.informacoes p {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.preco p {
    background: #feb900;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 20px;
    width: max-content;
}

button.btn.encomendar {
    background: #000000;
    color: #feb900;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 0;
    transition: 0.5s;
    float: right;
    border: 0px;
}

button.btn.encomendar:hover {
    background: #feb900;
    color: #000000;
}

.row.item-selecionado {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0px;
    margin: 10px 0px;
}

.item-selecionado .descricao p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.titulo-item-selecionado {
    border-bottom: 1px solid #ddd;
}

.titulo-item-selecionado h3 {
    font-weight: bold;
    margin: 5px 0;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.preco-item.vcenter {
    padding: 0px 0px 0px 15px;
    margin-left: -10px;
}

.descricao.vcenter {
    padding: 15px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.imagem-item-selecionado.vcenter {
    padding: 5px;
}

button.btn.cancelar {
    background: #ff0000;
    color: #000000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 0;
    transition: 0.5s;
    float: right;
    border: 0px;
}

button.btn.cancelar:hover {
    background: #000000;
    color: #ff0000;
}

.preco-item.vcenter p {
    margin-bottom: 0;
}

.preco-item.vcenter b {
    background: #5aca00;
    padding: 6px 10px;
    vertical-align: sub;
}

/* fim informacao carros*/

/* responsivo */
@media (max-width: 992px) {
    .col-sm-12.col-md-6.preco {
        align-content: center;
        text-align: center;
        float: none;
    }

    .preco p {
        text-align: center;
        width: 100%;
    }

    button.btn.encomendar {
        width: 100%;
    }

    .titulo-item-selecionado.vcenter {
        width: 100%;
        text-align: center;
    }

    .imagem-item-selecionado.vcenter {
        text-align: center;
        width: 100%;
    }

    .descricao.vcenter {
        text-align: center;
    }

    .preco-item.vcenter {
        width: 100%;
        text-align: center;
        padding-bottom: 10px;
    }

    button.btn.cancelar {
        float: none;
        margin-top: 5px;
    }
}

/* fim responsivo */

/* slider */
.carrossel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    padding: 5px;
    cursor: pointer;
    border: none;
}

.seta.esquerda {
    left: 10px;
}

.seta.direita {
    right: 10px;
}

.seta:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* fim slider */