 /*#region carousel*/

 .hero-carousel {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
 }

 .carousel-slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0;
     transition: opacity 1.5s ease-in-out;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: white;
     text-align: center;
     padding: 20px;
 }

 .carousel-slide::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.3);
     z-index: 1;
 }

 .carousel-slide.active {
     opacity: 1;
 }

 .carousel-content {
     position: relative;
     z-index: 2;
 }

 .carousel-legend {
     font-family: 'Dancing Script', cursive;
     font-size: 5rem;
     display: flex;
     flex-direction: column;
     line-height: normal;
 }

 .seta-carousel {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.2);
     color: white;
     border: none;
     padding: 15px;
     font-size: 2rem;
     cursor: pointer;
     z-index: 10;
     transition: 0.3s;
 }

 .seta-carousel:hover {
     background: rgba(0, 0, 0, 0.5);
     color: var(--dourado-fosco);
 }

 .prev-car {
     left: 10px;
     border-radius: 0 5px 5px 0;
 }

 .next-car {
     right: 10px;
     border-radius: 5px 0 0 5px;
 }

 @media (max-width: 600px) {
     .carousel-content h1 {
         font-size: 3rem;
     }
 }
 @media (max-width: 350px) {
     .carousel-content h1 {
         font-size: 2rem;
     }
 }

 /*#endregion*/