﻿.produto-container {
    margin-top: 20px;
}

.produto-nome {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.img-thumbnail {
    padding: 50px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    width: 100%;
    height: auto;
}

.img-responsive {
    transform: scale(0.85); /* 85% do tamanho original */
    transform-origin: center center; /* mantém a imagem centralizada */
}

.produto-preco {
    font-size: 22px;
    color: #28a745;
    font-weight: bold;
}

.produto-cada {
    font-size: 14px;
    margin-left: 10px;
    color: #777;
}

.produto-detalhes p {
    margin: 10px 0;
}

.produto-descricao {
    margin-top: 20px;
    line-height: 1.6;
}

/* Responsivo para telas menores */
@media (max-width: 375px) {
    .produto-nome {
        font-size: 18px;
    }

    .produto-preco {
        font-size: 18px;
    }

    .btn-group-justified .btn {
        font-size: 14px;
        padding: 8px;
    }

    .produto-container {
        padding: 10px;
    }
}
