
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
body, html {
    overflow-x: hidden;
}

nav {
    background-color: #ffe600;
    width: 100%;
    box-sizing: border-box;
}

nav img {
    width: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.all-sale {
    display: flex;
    margin: 7px;
    color: rgb(146, 141, 141);
    justify-content: space-between;
    font-size: small;
}
.fa-solid{
    color: #3483fa;
}
.h1-home {
    font-size: 12px;
    text-align: center;
    margin: 7px;
}

.carousel {
    width: 50%;
    max-width: 600px;
    margin: 0 auto;
    /* Centraliza o carrossel na página */
}

.main-image {
    width: 100%;
    text-align: center;
    /* Centraliza a imagem principal */
    margin-bottom: 10px;
    /* Espaço entre a imagem principal e as miniaturas */
}

.main-image img {
    width: 75%;
    height: auto;
    border-radius: 8px;
    /* Bordas arredondadas, opcional */
}

.thumbnails {
    display: flex;
    justify-content: center;
    /* Centraliza as miniaturas */
    gap: 10px;
    /* Espaço entre as miniaturas */
}

.thumbnail {
    width: 100%;
    height: 100%;
    cursor: pointer;
    /* Muda o cursor para indicar que a miniatura é clicável */
    border-radius: 4px;
    opacity: 0.7;
    /* Deixa as miniaturas levemente transparentes */
    transition: opacity 0.3s ease;
    /* Efeito de transição ao passar o mouse */
}

.thumbnail:hover {
    opacity: 1;
    /* Aumenta a opacidade ao passar o mouse */
}

.thumbnail.active {
    border: 1px solid #c5c3c3;
    /* Destaque para a miniatura ativa */
    opacity: 1;
    /* Aumenta a opacidade da miniatura ativa */
}

.price-product {
    width: 100%;
    max-width: 600px;
    margin-left: 30px;

}

.price-product .oferta {
    background-color: #3483fa;
    color: #fff;
    text-align: center;
    padding: 0;
    /* Ajuste padding para centralização */
    width: 120px;
    height: 30px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    border-radius: 5px;
    /* Opcional: bordas arredondadas para estilo */

}

.price-product .valor-anterior {
    color: #888;
    /* Cor cinza para indicar que o preço está desatualizado */
    text-decoration: line-through;
    /* Adiciona a linha sobre o texto */
    font-size: 14px;
    /* Ajuste o tamanho da fonte conforme necessário */
    margin: 0;
    /* Remove margens padrão */

    padding: 0;
    /* Remove preenchimento padrão */
}


.price-product .unic {
    color: #888;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.price-product .valor-novo {
    color: #2c2a2a;
    /* Cor vermelha ou outra cor para destacar o preço atual */
    font-size: 32px;
    /* Ajuste o tamanho da fonte conforme necessário */
    font-weight: 600;
    /* Torna o texto mais destacado */
    margin: 0;
    /* Remove margens padrão */
    padding: 0;
    /* Remove preenchimento padrão */
}

.price-product .desconto {
    color: #00a650;
    font-weight: 500;
}

.price-product .img-full img {
    width: 50px;
    margin-top: 4px;
}

.price-product .frete {
    font-weight: 600;
}

.button-container {

    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    margin-top: 1em;

}

.button {
    width: 85%;
    display: inline-block;
    padding: 10px 20px;
    background-color: #3483fa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.button:hover {
    background-color: #246bb7;
    /* Efeito de hover para o botão */
}

.inf-vendedor {
    width: 100%;
    max-width: 600px;
    margin-left: 30px;
    margin-top: 1em;
}

.inf-vendedor p {
    font-size: 12px;
}

.inf-vendedor a {
    text-decoration: none;
}

.info-vendedor {
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
}

.info-vendedor img {
    width: 100%;
}
.div-img{
    display: flex;
    flex-direction: column;  
    align-items: center;
    justify-content: center;
}

.div-img img{
    width: 90%;
}



.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Centraliza os itens horizontalmente */
    justify-content: center; /* Centraliza os itens verticalmente */
    min-height: 100vh; /* Garante que o container ocupe a altura total da tela */
    border: 1px solid #e0e0e0;
}

.coments {
    background-color: #f9f9f9;
    
    padding: 20px;
    border-radius: 8px;
    width: 100%; /* Deixa as divs com 100% da largura do container pai */
    max-width: 600px; /* Define um limite de largura */
    text-align: center; /* Centraliza o conteúdo dentro da div */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.coments p{
    text-align: left;
}

.stars1 {
    margin-bottom: 10px;
    text-align: left;
}

.stars1 i {
    color: #246bb7;
    margin-right: 5px;
    font-size: 12px;
}










.rating-container {
    max-width: 400px;
    margin: 0 auto;
}

.overall-rating {
    text-align: center;
    
}

.overall-rating h2 {
    font-size: 48px;
    margin: 0;
    color: #4A90E2;
}

.stars {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    margin-left: 15px;
   
    
}
.stars2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.stars2 p{
    margin-right: 35px;
    
}

.star {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234A90E2"%3E%3Cpath d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/%3E%3C/svg%3E') no-repeat center center;
    background-size: contain;
}

.full {
    background-size: contain;
}

.partial {
    background: linear-gradient(to right, #4A90E2 80%, #e0e0e0 20%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rating-breakdown {
    margin: 20px 0;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.rating-bar span {
    font-size: 14px;
    color: #4A90E2;
}

.bar-container {
    background-color: #e0e0e0;
    height: 8px;
    width: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: #4A90E2;
    border-radius: 4px;
}





.info-vendedor-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: #333;
}

.vendedor-info {
    margin-top: 20px;
}

.vendedor-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-status {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.status-title {
    font-size: 20px;
    color: #4CAF50;
    margin: 0;
}

.status-description {
    font-size: 16px;
    color: #666;
}

.status-bar {
    margin: 20px 0;
}

.status-bar-color {
    height: 10px;
    background: linear-gradient(to right, #f8e9e9, #fce7c6, #fef6c2, #e9f8db, #48b548);
    border-radius: 5px;
}

.vendedor-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}
.star p{
    margin-right: 30px;
}

.stat-value {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin: 0;
}

.stat-text {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

.stat-icon {
    width: 24px;
    height: 24px;
    
    margin-bottom: 5px;
    
}





.meios-pagamento-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    font-size: 24px;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
}

.pagamento-opcao {
    margin-bottom: 20px;
}

.pagamento-titulo {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.pagamento-subtitulo {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.cartoes-logo {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: start;
}

.pagamento-logo {
    height: 40px;
    max-width: 100px;
    object-fit: contain;
}

.descricao-container {
    display: flex;
    justify-content: center;
    text-align: justify;
    padding: 10px;
    /*height: 100vh;  Define a altura como 100% da viewport */
}


.descricao-conteudo {
    /* Estilos adicionais para o conteúdo se necessário */
    text-align: center; /* Centraliza o texto dentro da div */
}
.descricao-conteudo p{
    text-align: justify;
    padding: 20px;
}