:root {
    --slide-width-desktop-video: 30%;
    --slide-gap-desktop-video: 15px;
    --slide-width-mobile-video: 100%;
    --slide-gap-mobile-video: 0px;
}
body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}
.video-carousel, .image-carousel {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.move-dots-text-video {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}
.carousel-container-video, .carousel-container-image {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    position: relative;
    align-items: center;
    width: 100%;
}
.video-slides {
    flex: 0 0 var(--slide-width-desktop-video);
    margin: 0 var(--slide-gap-desktop-video);
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    user-select: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
}
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px) {
    .video-slides {
        flex: 0 0 var(--slide-width-mobile-video);
        margin: 0 var(--slide-gap-mobile-video);
        padding: 10px;
    }
    .carousel-container-video {
        justify-content: flex-start;
        transition: transform 0.5s ease;
    }
}
.arrows-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.arrow {
    font-size: 24px;
    cursor: pointer;
    padding: 10px 20px;
    color: #1CACE4;
    border: 1px solid #1CACE4;
    border-radius: 5px;
    margin: 0 10px;
    user-select: none;
}
.info-section-video {
    display: flex;
    align-items: center;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.info-section-video img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}
.info-section-video .text-info {
    font-size: 14px;
    color: #555;
}
.info-section-video .text-info .name {
    font-weight: bold;
}
/* Estilos específicos para o carrossel "Siga no Instagram" */
#image-carousel {
    padding: 40px 0;
    text-align: center;
    border-top: none;
    border-bottom: none;
    background-color: transparent; /* Remover o fundo */
}
#image-carousel h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
}
#image-carousel h2 strong {
    color: #1CACE4;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    
}
/* Ajuste responsivo */
@media (max-width: 768px) {
    .swiper-slide img {
        width: 90%; /* Mantém as imagens grandes no mobile */
    }
}
.arrows-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.arrow {
    font-size: 24px;
    cursor: pointer;
    color: #1CACE4;
    border: 1px solid #1CACE4;
    padding: 10px 20px;
    border-radius: 5px;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.arrow:hover {
    background-color: #1CACE4;
    color: #fff;
}