/*********************************************************/
/*CSS MODE - MRPNET 2025
/*********************************************************/
/*BANNER ROTATIVO*/
.carousel {position: relative; width: 100%; overflow: hidden;}
.carousel h2 {font-size: 4em; padding-bottom: 30px; color: var(--cor_3); font-family: var(--font_s); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);}
.carousel p {line-height: 25px; font-weight: 300; font-family: var(--font_s); color: var(--cor_3); letter-spacing: 1px;}
.carousel-item {position: absolute; width: 100%; opacity: 0; transition: opacity 1s ease-in-out;}
.carousel-item.active {opacity: 1; position: relative;}
.carousel-item img {width: 100%; height: auto;} 

.carousel-caption {position: absolute; top: 50%; transform: translateY(-50%);}
.carousel-caption.center {width: 60%; left: 20%; text-align: center; z-index: 9;}
.carousel-caption.left {left: 10%; width: 40%; text-align: left; z-index: 9;}
.carousel-caption.right { right: 10%; width: 40%; text-align: right; z-index: 99;}
/*CONTROLES*/
.carousel-control-prev, .carousel-control-next {position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: #fff; text-decoration: none; background: rgba(0, 0, 0, 0.5); padding: 10px; cursor: pointer; border-radius: 5px; z-index: 9;}
.carousel-control-prev {left: 10px; z-index: 999 !important;}
.carousel-control-next {right: 10px; z-index: 99;}
.carousel-control-prev:hover, .carousel-control-next:hover {color: var(--cor_2);}
@media (max-width: 1600px) {
    .carousel-caption.left {width: 45%; }
    .carousel-caption.right {width: 45%;}
}
@media (max-width: 1440px) {
    .carousel-caption.left {left: 5%; width: 55%; }
    .carousel-caption.right {right: 5%; width: 55%;}
}
@media (max-width: 1360px) {
    .carousel h2 {font-size: 3em; }
}
@media (max-width: 1155px) {
    .carousel h2 {font-size:2em; }
}
@media (max-width: 950px) {
    .carousel h2 {font-size:1.6em; }
    .carousel-caption.center {width: 90%; left: 5%;}
    .carousel-caption.left {width: 90%; left: 5%; text-align: center;}
    .carousel-caption.right {width: 90%; left: 5%; text-align: center;}
}
@media (max-width:414px) {
    .carousel img {width: 150%; height: 340px;}
}