html {
    scroll-behavior: smooth;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fade-in 0.6s;
}

.testimonial-swiper {
    padding: 0 16px;
}

.testimonial-swiper .swiper-slide {
    padding: 16px;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    background-color: white;
    color: #0f2027; /* metal-primary */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
    background-color: #0f2027; /* metal-primary */
    color: white;
}

.testimonial-swiper .swiper-button-next:after,
.testimonial-swiper .swiper-button-prev:after {
    content: none; /* Hide default Swiper arrows */
}

/* Estilos para o slider de blog */
.blog-swiper {
    padding: 0 16px;
}

.blog-swiper .swiper-slide {
    transition: all 0.3s ease;
    opacity: 0.75;
    transform: scale(0.9);
}

.blog-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
    background-color: #0f2027;
    /* metal-primary */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.blog-swiper .swiper-button-next:hover,
.blog-swiper .swiper-button-prev:hover {
    background-color: #5d737e;
    /* metal-accent */
}

.blog-swiper .swiper-button-next:after,
.blog-swiper .swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0f172a; /* metal-dark */
}