/* ESTILO GERAL */

*{
    @import ('~lucide-static/font/Lucide.css');
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    background-color: #fff;
    height: 100vh;
}
.interface {
    max-width: 1200px;
    margin: 0 auto;
}
.flex {
    display: flex;
}
.btn-contato button{
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #3A0054;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
    color: #fff;
}
h2.titulo{
    color: #000;
    font-size: 38px;
    text-align: center;
}
h2.titulo span{
    color: #3A0054;
}
button:hover, form .btn-enviar input:hover{
    box-shadow: 0px 0px 8px #7E57C2;
    transform: scale(1.05);
    color: #ffffff;
}
span{
    color: #3A0054;
}

/* header */
.container-slider {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .container-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    
  }
  
  .slider {
    opacity: 0;
    transition: opacity .2s;
    position: absolute;
    width: 100%;
    
  }
  
  .on {
    opacity: 1;
  }
  
  
  #prev-button {
    transform: rotate(180deg);
  }


  @media screen and (max-width: 1020px){
    .container-slider{
        display: none;
    }
    
}

 /* ESTILO DO TOPO DO SITE */
section.topo-do-site{
    margin-top: 15px;
    padding: 40px 4%;
    animation: translateY 0.8s infinite alternate;
}
section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 90px;
}
.topo-do-site h1 {
    color: #393939;
    font-size: 10;
    line-height: 40px;

}
.topo-do-site .txt-topo-site h1 span {
    color: #3A0054;
}
.topo-do-site .txt-topo-site p {
    color: #656565;
    margin: 40px 0px;
}
.topo-do-site .img-topo-site img{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
    width: 30rem;
}

@keyframes flutuar {
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
}

/* Estilos comuns para os cards */

i{
    font-size: 50px;
    color: #3A0054;
}

.titulo__secao4{
    text-align: center;
    margin: 10px;
    margin-top: 3rem;
    margin-bottom: 10px;
    color: #393939;
}
.secao4 {
    margin: 0;
    
}

.secao4-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.secao4-div-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(90% / 3 - 60px);
    margin: 10px;
    padding: 20px;
    box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    transition: all 0.5s ease;
}

h3{
    color: #393939;
}

.paragrafo__card{
    color: #656565;
}

.secao4-div-card:hover {
    transform: scale(1.1);
    z-index: 1;
}

.secao4-div-card img {
    width: 35%;
    height: auto;
}

.secao4-div-card h3 {
    margin-bottom: 0px;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .secao4-div-card {
        width: 100%;
    }
}


/* RESPONSIVIDADE */
@media screen and (max-width: 1020px){
    /* CLASSES GERAIS */
    .flex{
        flex-direction: column-reverse;
    }

    .img__1{
        width: 300px;
    }
    /* TOPO DO SITE */
    section.topo-do-site .flex{
        gap: 40px;
    }
    section.topo-do-site{
        padding: 20px 8%;
    }
    .topo-do-site h1{
        font-size: 30px;
        text-align: center;
    }
    .topo-do-site p {
        text-align: center;
    }
    .btn-contato {
        margin-left: 3rem;
        margin-bottom: 6rem;
    }
    .topo-do-site .img-topo-site img{
        
        display: none;
    }
}

/* footer */
footer{
    padding: 40px 4%;
    height: 270px;
    background: linear-gradient(90deg, rgba(126,87,194,1) 0%, rgba(9,9,121,1) 100%);
}

footer .flex{
    justify-content: space-between;
}
.btn-social button{
    margin: 7em auto 1em;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    
    transition: .2s;
}
#redes{
    font-size: 20px;
    color: #3A0054;
}
.logo__footer{
    margin-top: 125px;
    height: 50px;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 1020px){
    /* RODAPÉ */
    footer .flex{
        flex-direction: column;
        gap: 30px;
    }
    footer .line-footer {
        text-align: center;
    }
}


/* cards_infinity */

.cards_infinity{
    margin-top: 1px;
    margin-bottom: 1px;
    height: 100vh;
    display: grid;
    place-content: center;

}
li{
    list-style: none;
}
.container{
    
    width: 100vw;
}
.logos{
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.logos ul {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: 20s infinite slide linear;
}
.logos img {
    width: 150px;
    filter: grayscale(10%);
}

@keyframes slide {
    from{
        transform: translate(0);
    }
    to{
        transform: translateX(-1020px);
    }
}

.logos ul:hover{
    animation-play-state: paused;
}

.titulo_cards_infinity{
    text-align: center;
    font-size: 26px;
    margin: 10px;
    margin-top: 35px;
    margin-bottom: 10px;
    color: #393939;
}
.titulo_cards_infinity span {
    color: #3A0054;
}




/* Flex Item */
.flex-item-1 {
	flex: 1;
    font-size: 10px;
}
.item {
	
    margin-top: 30px;
	text-align: center;
	font-weight: 600;
    font-size: 15px;
    color: #3A0054;
}

.imgapprvalab{
    margin-top: 90px;
    width: 350px;
}



 /* ESTILO DO METODOLOGIA DE ENSINO */
 section.topo-do-site{
    margin-top: 15px;
    padding: 30px 4%;
    animation: translateY 0.8s infinite alternate;
}
section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 90px;
}
.topo-do-site h1 {
    color: #393939;
    font-size: 10;
    line-height: 40px;

}
.topo-do-site .txt-topo-site h1 span {
    color: #3A0054;
}
.topo-do-site .txt-topo-site p {
    color: #656565;
    margin: 40px 0px;
}
.topo-do-site .img-topo-site1 img{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
    width: 20rem;
}

@keyframes flutuar {
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
}

.topo-do-site .txt-topo-site2{
    text-align: center;
}
.topo-do-site .txt-topo-site2 h1 span {
    color: #3A0054;    
}
.topo-do-site .txt-topo-site2 p {
    color: #656565;
    margin: 40px 0px;
}




/* CALENDARIO DE PROVAS */

.header {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #282828;
}

.menu-abas {
    margin: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-abas ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-abas .aba {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    text-align: center;
    color: #282828;
}

.menu-abas .aba-selecionada {
    background-color: #028b8b;
    color: #fff;
    font-weight: bold;
}

/* Estilos para a seção de filtros */
.filtro-simulado {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.form-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.campo {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.campo label {
    font-size: 14px;
    color: #595959;
    margin-bottom: 5px;
}

.campo input, .campo select {
    padding: 8px;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    font-size: 14px;
    color: #282828;
}

.botoes {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btn-filtrar {
    background-color: #7e57c2;
    color: white;
}

.btn-limpar {
    background-color: white;
    border: 1px solid #7e57c2;
    color: #7e57c2;
}

/* Estilos para os cards */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px;
    
}

.card {
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
}

.card-header {
    background-color: #f4f4f4;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.card-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #282828;
    margin: 0;
}

.card-content {
    padding: 15px;
    font-size: 14px;
    color: #595959;
    
}

.card-content p {
    margin: 5px 0;
    
}

.card-footer {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-status {
    background-color: #af52de;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
}

.btn-saiba-mais {
    background-color: #7e57c2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
}

/* Estilos para a paginação */
.paginacao {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.paginacao ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.btn-paginacao {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #595959;
    cursor: pointer;
    font-size: 14px;
}

.btn-paginacao.ativo {
    background-color: #3a0054;
    color: white;
    font-weight: bold;
}

.btn-paginacao:hover {
    background-color: #f0f0f0;
}

.btn-paginacao.anterior,
.btn-paginacao.proximo {
    font-weight: bold;
    color: #028b8b;
}






/* ESTILO_CALENDARIO */
/*.card2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: baseline;
    justify-content: space-around;
    margin: 20px;
}
.card {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 16px;
    margin: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}*/

.card-content {
    margin-bottom: 16px;
}

.modal {
    
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
    }
}