@charset "utf-8";
/* CSS Document */

 corpo2 {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}


.carousel #melhores_artigos {
	
	width: 90%;
	
	
	}



.carousel {
    width: 100%;
   
    position: relative;
	margin-left:auto;
	margin-right:auto;
	overflow: hidden;
}
 
.carousel-inner {
    display: flex;
    width: 500%;
    animation: slide 20s infinite;
	background-color:rgb(243,245,249);
}

.carousel-item {
    width: 20%;
    flex: 1;
    text-align: center;
    padding: .3%;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
	background-color:rgb(243,245,249);
}

@keyframes slide {
0% { transform: translateX(0); } 33% { transform: translateX(0); } 38% { transform: translateX(-33.3333%); } 71% { transform: translateX(-33.3333%); } 76% { transform: translateX(-66.6666%); } 100% { transform: translateX(-66.6666%); }
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}
