/* -------------------------------------Reset básico para consistência entre navegadores------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px; /* Define o tamanho base da fonte */
}
body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif; /* Fonte moderna e limpa */
    line-height: 1.6; /* Espaçamento entre linhas */
    background-color: #f9f9f9;
    color: #333; /* Texto em tom escuro */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
form div{
    float: left;
    margin: 0 50px 0 0;
}
label {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
    display: block;
}
input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea, select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus, textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
textarea {
    resize: vertical;
}

button {
    padding: 14px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonExcluir {
    padding: 14px;
    background-color: #ff0000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* -------------------------------------Cabeçalho------------------------------------- */
header {
    position: fixed; /* Fixa o rodapé na base da tela */
    top: 0;
    left: 0; /* Alinha à esquerda */
    width: 100%; /* Faz o rodapé ocupar toda a largura */
    background-color: #333; /* Cor de fundo */
    color: #fff; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
    padding: 1rem 0; /* Espaçamento interno */
    font-size: 0.875rem; /* Tamanho da fonte */
    z-index: 2; /* Coloca o rodapé acima da camada de overlay */
}
header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
h2{
    border-bottom: 3px #333 solid;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    width: 100%;
}
h3{
    color: #999;
    border-bottom: 1px #999 solid;
    margin: 0 0 10px 0;
    width: 100%;
}
ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
}
nav{
    flex: 2;
}
nav ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s ease;
    padding: 50px;
}
nav ul li:nth-child(1) a {
    padding: 25px 0 0 0;
}
nav ul li:nth-child(1) a:hover {
    background: none;
}
nav ul li a:hover {
    color: #000000;
    background: #FFD700; /* Destaque dourado */
    text-decoration: none;
}
.clear{
    clear: both;
}
.mensagem-sucesso {
    background-color: #4CAF50;  /* Verde */
    color: white;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

/* -------------------------------------Conteúdo principal------------------------------------- */
main{
    padding: 150px 0 60px 0
}
section {
    margin-bottom: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------Rodapé------------------------------------- */
footer {
    position: fixed; /* Fixa o rodapé na base da tela */
    bottom: 0; /* Posiciona o rodapé no fundo da viewport */
    left: 0; /* Alinha à esquerda */
    width: 100%; /* Faz o rodapé ocupar toda a largura */
    background-color: #333; /* Cor de fundo */
    color: #fff; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
    padding: 1rem 0; /* Espaçamento interno */
    font-size: 0.875rem; /* Tamanho da fonte */
    z-index: 2; /* Coloca o rodapé acima da camada de overlay */
}
header a , footer a {
    color: #FFD700;
    text-decoration: none;
}
header a:hover, footer a:hover {
    text-decoration: underline;
}

/* -------------------------------------TEASE------------------------------------- */
#tease {
    color: #FDEDF4; /* Cor do texto */
    font-size: 1.3rem; /* Tamanho da fonte ajustado */
    position: fixed; /* Fixa no viewport */
    top: 50%; /* Move para o centro vertical */
    left: 50%; /* Move para o centro horizontal */
    transform: translate(-50%, -50%); /* Ajusta o ponto de ancoragem para centralização */
    z-index: 5; /* Coloca acima de outros elementos */
    text-align: center; /* Centraliza o conteúdo */
    width: 30%; /* Largura fixa */
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
    line-height: 1.6; /* Espaçamento entre linhas */
    letter-spacing: 0.5px; /* Espaçamento entre letras */
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente para destaque */
    padding: 1rem; /* Espaçamento interno */
    border-radius: 8px; /* Borda arredondada */
}
#tease img{
    margin: 10px 0;
    width: 200px;
}
.teaseContatos{
    font-size: 0.8rem; /* Tamanho da fonte ajustado */
    display: inline-flex;
    padding: 10px 0 0 0;
}
.teaseContatos span p{
    padding: 0 10px;
    margin: 4px 0 0 0;
}
.teaseContatos img{
    margin: 0 !important;
    width: 30px !important;
}
.slideshow {
    position: fixed; /* Fixa o slideshow para ocupar a tela inteira */
    top: 0;
    left: 0;
    width: 100vw; /* Largura da viewport */
    height: 100vh; /* Altura da viewport */
    overflow: hidden; /* Esconde partes fora do container */
    z-index: -1; /* Coloca o slideshow atrás de outros elementos */
}
.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta o tamanho da imagem */
    opacity: 0; /* Inicialmente invisível */
    animation: fade 16s infinite; /* Animação automática */
}
.slideshow img:nth-child(1) {
    animation-delay: 0s;
}
.slideshow img:nth-child(2) {
    animation-delay: 4s;
}
.slideshow img:nth-child(3) {
    animation-delay: 8s;
}
.slideshow img:nth-child(4) {
    animation-delay: 12s;
}
@keyframes fade {
    0%, 100% {
        opacity: 0; /* Invisível no início e no fim */
    }
    25%, 75% {
        opacity: 1; /* Visível durante o intervalo */
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(128, 0, 64, 0.6); /* Tom vinho escuro com transparência */
    z-index: 0; /* Coloca a camada sobre o slideshow */
}

/* -------------------------------------TOPO------------------------------------- */
#menuTop{
    display: flex;
    width: 100%;
}
.colMenuTop{
    flex: 1;
}
.colMenuTop ul{
    display: flex;
    align-items: center;
    gap: 2px;
}
.colMenuTop ul li a{
    background-image: url('../img/social_icons.png'); 
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: auto 20px;
    display: block;
    height: 20px;
    width: 20px;
}
.colMenuTop ul li:nth-child(3) a {
    background-position: -28px 0;
}
.colMenuTop ul li:nth-child(4) a {
    background-position: -57px 0;
}
.colMenuTop ul li:nth-child(5) a {
    background-position: -86px 0;
}
#menuHome {
    background: linear-gradient(135deg, #990000, #cc0000, #ff1a1a, #ff4d4d, #ff1a1a, #cc0000, #990000);
    padding: 20px;
    margin: 5px 0 0 0;
    display: flex;
}
.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.menu li {
    position: relative;
}
.menu a {
    text-decoration: none;
    color: white;
    display: block;
    font-weight: bold;
    transition: 0.3s;
}
.submenu {
    background: #FFD700; /* Destaque dourado */
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    display: none;
    min-width: 150px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.submenu li {
    width: 100%;
}
.submenu a {
    padding: 10px;
    display: block;
    color: white;
}
.submenu a:hover {
    background: #FFD700; /* Destaque dourado */
}
.menu li:hover .submenu {
    display: block;
}
#busca, #carrinhoTopo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
#busca form, #carrinhoTopo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contador {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4d;
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#busca input[type="text"] {
    padding: 10px 15px;
    font-size: 16px;
    width: 200px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: 0.3s ease;
    background-color: #f9f9f9;
}
#busca input[type="text"]:focus {
    border-color: #990000;
    background-color: #e9f4ff;
}
#btBuscar {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #990000;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}
#btBuscar:hover {
    background-color: #000;
}
#btBuscar:focus {
    outline: none;
}
#busca input[type="text"]::placeholder {
    color: #aaa;
}
#carrinhoTopo a img{
    width: 30px;
}

/* -------------------------------------Modal Login------------------------------------- */
.overlay2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Estilos do modal */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 300px;
}

.modal h2 {
    margin-top: 0;
}

.modal input {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#bt-entrar {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#bt-entrar:hover {
    background: #218838;
}

.fechar {
    background: red;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    float: right;
    border-radius: 5px;
}

.fechar:hover {
    background: darkred;
}

/* -------------------------------------Estilo geral do carrossel------------------------------------- */
.carousel-container {
    position: relative;
    width: 100vw;
    height: 450px;
    overflow: hidden;
}

/* Carrossel (container das imagens) */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; 
}

/* Adiciona a sombra nas laterais */
.sombraCarousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%),
                linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%);
    pointer-events: none;
    z-index: 1; /* Garante que a sombra fique acima da imagem */
}

/* Imagens do carrossel */
.carousel img {
    flex-shrink: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    animation: slideUp 15s ease-in-out infinite; /* Animação vertical */
    transition: transform 0.5s ease-in-out; /* Transição suave vertical */
}

/* Animação para mover as imagens lentamente para cima */
@keyframes slideUp {
    0% {
        transform: translateY(35px); /* Começa deslocada para baixo */
        opacity: 0; /* Totalmente invisível no final */
    }
    5% {
        transform: translateY(35px); /* Começa deslocada para baixo */
        opacity: 1; /* Totalmente invisível no final */
    }
    90% {
        transform: translateY(-1000px); /* Move a imagem para cima */
        opacity: 1; /* Continua totalmente visível */
    }
    100% {
        transform: translateY(-1000px); /* Mantém na posição final */
        opacity: 0; /* Totalmente invisível no final */
    }
}

/* Botões de navegação */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 1000;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* Efeito de hover nos botões */
button.prev:hover, button.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* -------------------------------------Vitrine------------------------------------- */
#bannerHome1{
    margin: 20px auto;
    text-align: center;
    width: 70%;
}
#bannerHome1 img{
    width: 90%;
}
.vitrine{
    margin: 10px auto;
    width: 70%;
}
.vitrine ul li{
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px;
    position: relative;
    flex: 0 1 23.5%;
    width: 23.5%; /* Garante que o tamanho se mantenha */
}
.vitrine ul li a{
    display: block;
}
.vitrineImagem{
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
    height: 300px;
    width: 100%;
}
.vitrineDetalhes{
    color: #333;
    font-size: 22px;
    text-decoration: none;
    text-transform: uppercase;
}
.vitrineDetalhes:hover{
    text-decoration: underline;
}
.vitrineSubcategoria{
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
}
.vitrineSubcategoria:hover{
    text-decoration: underline;
}
.vitrineValor1{
    color: #aaa;
    display: block;
    font-size: 14px;
    margin: 20px 0 0 0;
}
.vitrineValor2{
    color: #FFD700;
    font-size: 18px;
    font-weight: bold;
    margin: -3px 0 0 0;
    vertical-align: super;
}
.vitrineValor3{
    color: #FFD700;
    font-size: 34px;
    font-weight: bold;
}
.vitrineValor4{
    color: #FFD700;
    font-size: 18px;
    font-weight: bold;
}
.vitrineAddCarrinho{
    background-color: #ddd;
    border-radius: 50px;
    position: absolute !important;
    bottom: 15px;
    right: 15px;
    padding: 15px;
    width: 75px;
}
.vitrineAddCarrinho:hover{
    background-color: #FFD700;
}
.vitrineAddCarrinho img{
    width: 40px;
}

/* -------------------------------------Internas------------------------------------- */
#internas{
    background: #FFF;
    margin: auto;
    padding: 80px 10px 10px 10px;
    width: 80%;
}
#visualizarItem{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.visualizarItemCol{
    flex: 1;
    flex-basis: calc(40% - 5px);
}
/* Estilização do contêiner do slider */
.slider-container {
    width: 80%;
    padding: 20px;
    position: relative;
    text-align: center;
    margin: auto;
}

/* Estilização da área principal das imagens */
.slider {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: auto;
    display: none;
    cursor: pointer;
}

/* Exibir apenas a primeira imagem inicialmente */
.slide:first-child {
    display: block;
}

/* Estilização das miniaturas */
.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumb {
    width: 100px;
    height: 100px;
    cursor: pointer;
    margin: 0 5px;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.thumb:hover {
    border: 2px solid #007bff;
}

.imageModal{
    display: none; /* Oculta o modal por padrão */
    position: fixed;
    z-index: 1000; /* Mantém o modal acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Fundo escuro semi-transparente */
    text-align: center;
    overflow: auto; /* Permite rolagem caso necessário */
    padding-top: 50px;
}

/* Imagem no modal */
.modal-content {
    max-width: 80%; /* Ajuste para não ultrapassar a tela */
    max-height: 80%;
    margin: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Botão de fechar */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #ccc;
}

/* Animação de fade-in para o modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Botão de fechar */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

.visualizarItemTitulo{
    color: #666;
    font-size: 32px;
}
.visualizarItemSubtitulo{
    border-bottom: 1px #999 solid;
    color: #999;
    font-size: 22px;
    padding: 10px 0;
}
.visualizarItemDetalhes{
    border-bottom: 1px #999 solid;
    padding: 20px 0;
    font-size: 16px;
    line-height: 18px;
}
.visualizarItemValor{
    color: #999;
    padding: 10px 0;
    font-weight: bold;
    font-size: 52px;
}
.visualizarItemBotoes, .visualizarItemDescricao{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 10px 0;
}
.quantidade-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    height: 45px;
}

.quantidade-input {
    width: 80px !important;
    text-align: center;
    border: 1px #F0F0F0 solid !important;
    border-radius: 0 !important;
    font-size: 16px;
    background: #fff;
    outline: none;
    margin: 0 !important;
    height: 100%;
}

.btn-quantidadeMais {
    color: #999;
    background: #f0f0f0;
    border: none;
    border-radius: 6px 0 0 6px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
}
.btn-quantidadeMenos {
    color: #999;
    background: #f0f0f0;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
}

.btn-quantidadeMais:hover, .btn-quantidadeMenos:hover, .btn-internasAddCarrinho:hover {
    color: #FFF;
    background: #007bff;
}
.btn-internasAddCarrinho{
    color: #999;
    background: #f0f0f0;
    border: none;
}

/* -------------------------------------Pagina Registrar-se------------------------------------- */
#cadastroForm {
    max-width: 400px;
    margin: auto;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
}
#cadastroForm input, #cadastroForm button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}
.error {
    color: red;
    font-size: 14px;
    display: none;
}

/* -------------------------------------Painel------------------------------------- */
.categorias-lista {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: block; /* Garante que os itens fiquem empilhados */
}
.categorias-lista li {
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px; /* Espaçamento entre os itens */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.categorias-lista li a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}
.categorias-lista li:hover {
    transform: translateX(5px);
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
}
.categorias-lista li a:hover {
    color: #d9534f; /* Vermelho elegante */
}
.mensagem-vazia {
    font-size: 18px;
    color: #777;
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-top: 20px;
}
#menu_painel{
    margin: -70px 0 0 0;
}
#menu_painel ul{
    justify-content: left;
}
#menu_painel ul li a{
    background-image: url('../img/ico-menu_painel.png');
    background-repeat: no-repeat;
    background-size: auto 40px;
    display: inline-block;
    height: 40px;
    width: 40px;
}
.menu_painel01{
    background-position: 0 0;
}
.menu_painel02{
    background-position: -40px 0;
}
.menu_painel03{
    background-position: -80px 0;
}
#cadastroCategoriaForm h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
#painel ul li a {
    align-items: center;
    border: 1px #CCC solid;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    font-size: 10px;
    flex-direction: column;
    padding: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out; /* Adiciona a transição suave */
}
#painel ul li a:hover {
    border: 1px red solid;
    box-shadow: 4px 4px 15px rgba(255, 0, 0, 0.4); /* Sombra mais intensa no hover */
}
#painel ul li a img{
    width: 100px;
}
#painel-internas{
    display: flex;
    gap: 10px;
}
.painel-caixa{
    flex: 1;
    border: 1px #CCC solid;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}
.thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
    width: 100%;
}
.thumb-container {
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}
.thumb {
    padding: 5px;
}
.excluir {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    padding: 2px 7px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
}

/* -------------------------------------CARRINHO------------------------------------- */
#lisCarrinho a{
    text-decoration: none;
    color: #666;
}
#lisCarrinho a:hover{
    text-decoration: underline;
}
/* Mensagem de carrinho vazio */
.mensagem {
    font-size: 18px;
    color: #777;
    padding: 20px;
}

/* Tabela de carrinho */
.carrinho-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}

.carrinho-table th, .carrinho-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.carrinho-table th {
    background: #f8f8f8;
    font-weight: bold;
}

/* Linhas alternadas na tabela */
.carrinho-table tbody tr:nth-child(even) {
    background: #f2f2f2;
}

/* Botão de remover */
.remover-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.remover-btn:hover {
    background: #cc0000;
}

/* Rodapé da tabela */
tfoot td {
    font-size: 18px;
    font-weight: bold;
    background: #f8f8f8;
}

/* Área de ações */
.acoes {
    margin-top: 20px;
}

/* Botão continuar comprando */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
}

.continuar {
    background: #4CAF50;
}

.continuar:hover {
    background: #388E3C;
}