/*======================================= SLIDE IMAGENS=================================*/

.container-pages{
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}
.container-pages .slider {
    position: relative;
    width: 75%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid #3564d0;
    background: #000;
}
.container-pages .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.container-pages .slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-pages .slide img, .slide video {
    max-width: 100%;
    max-height: 100%;
}
.container-pages .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.container-pages .nav button {
    background-color: #3564d0;
    color: #fff;
    border: none;
    font-size: 40px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: .3s ease;
}
.container-pages .nav button:hover {
    font-size: 45px;
}
/*======================================= Outros Componentes da pagina=================================*/

.container-pages > h1{
    font-size: 50px;
    color: #3564d0;
    font-family: 'Poppins';
    margin-bottom: 10px;
    margin-top: 30px;
    text-align: center;
}
.container-pages > p{
    font-size: 15px;
    padding-left: 10%;
    padding-right: 10%;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 20px;
    text-align: center;
}
.container-pages .txt-G{
    text-align: justify;
}

.container-pages .linguagem{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 50px;
}
.container-pages .linguagem > img{
    width: 50px;
    height: 50px;
}

.container-pages .btn-link{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}
.container-pages .btn-link > a{
    text-decoration: none;
}
.container-pages .btn-link > a > button{
    background-color: transparent;
    border: 2px solid #3564d0;
    color: #3564d0;
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s ease;
}
.container-pages .btn-link > a > button > i{
    margin-right: 5px;
}
.container-pages .btn-link > a > button:hover{
    background-color: #3564d0;
    color: #fff;
}

.container-pages button {
    background-color: #3564d0;
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s ease;
}
.container-pages button:hover {
    background-color: #fff;
    color: #3564d0;
}

@media screen and (max-width: 768px) {
    .container-pages .slider {
        width: 90%;
    }
    .container-pages > h1 {
        font-size: 40px;
    }
    .container-pages > p {
        font-size: 14px;
        padding-left: 5%;
        padding-right: 5%;
        text-align: justify;
    }
    .container-pages .nav button {
        font-size: 15px;
        padding: 5px;
    }
    .container-pages .nav button:hover{
        font-size: 15px;

    }
    .container-pages .linguagem > img {
        width: 40px;
        height: 40px;
    }
    .container-pages .btn-link > a > button {
        font-size: 15px;
        padding: 8px 16px;
    }
    .container-pages button {
        font-size: 15px;
        padding: 8px 16px;
    }
    
}
