

.swiper-section{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.swiper-body{
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
   
}

.swiper-title {
    font-size: 22px; 
    font-weight: 600; 
    color: #333; 
    margin-top: 5px;
    margin-left: 460px; 
}



.swiper-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}

.swipe-content{
    
    margin: 0 35px; /*antes estava margin: 0 40px;*/
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 20px;

}
/*Funcionando*/
.card{

    width: 241.25px;
    border-radius: 25px;
    background-color: #FFF;
}

.card-content{
    height: 100px;
    text-align: center;
}

.card-link {
    text-decoration: none;
    color: inherit;
}


.image-content, .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.image-content{
  position: relative;
  row-gap: 5px;  
  padding: 25px 0;
  
  
}

.card-image{
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
}

.card-image i {
    font-size: 2em; /* Tamanho relativo ao tamanho do contêiner pai */
   /* color: #4070f4; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 4px solid #4070f4;
}

.name{
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 0;
}


.button{
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    /*margin: 14px;*/
    margin-top: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover{
    background: #265DF2 ;
}

.swiper-navBtn{
    color: #6e93f7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover{
    color: #4070F4;
}

.swiper-navBtn::before, .swiper-navBtn::after{
    font-size: 40px;
}

.swiper-button-next{
    right: 0;
}

.swiper-button-prev{
    left: 0;
}

.swiper-pagination-bullet{
    background-color: #6e93f7; 
    opacity: 1;

}

.swiper-pagination-active{
    background-color: #4070F4; 

}

.Botoes {
    display: flex;
    justify-content: center;
    margin-top: 0,5px;
}

.botao {
    display: inline-block;
    padding: 10px 20px;
    font-size: 19px;
    font-weight: 600;
    margin: 0 10px;
    margin-right: 80px;
    margin-left: 80px;
    background-color: #2D3B4F;
    color: #FFF;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.botao:hover {
    background-color: #202a38;
}

@media screen and (max-width: 768px){
    .swipe-content{
        margin: 0 10px;
    }
    /* .swiper-navBtn{
       display: none;
    }*/

    .swiper-container{
        width: 90%;
    }

    .card{
        margin-bottom: 10px;
    }

    .name{
        font-size: 0.9rem;
    }
    
}