* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

header {
    min-height: 130px;
    display: flex;
    background-image: linear-gradient(to bottom, #ED1C24 80%, #950d15);
    align-items: center;
    color: #fff;
}

header>img {
    width: 300px;
    margin: 10px 50px;
}

header>.t1 {
    font-size: 12px;
    font-weight: 100;
    margin-left: 10px;
}

#logo>h1,
#logo>p {
    text-shadow: 1px 1px 5px black;
    margin-bottom: 5px;
}

.list-alunos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    padding: 20px;
}

.card-aluno {
    background-image: url(../img/fundo-card.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: -100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    min-height: 300px;
    /*background-image: linear-gradient( to bottom right, #ED1C24 60%, #950d15 );*/
    border-top: 3px solid #950d15;
    border-radius: 10px;
    box-shadow: 3px 3px 5px #950d15;
    padding: 10px;
    color: #950d15;
    text-align: center;
    transition: all 500ms;
    overflow: hidden;
}

.card-aluno:hover {
    transform: scale(1.1);
    transition: all 500ms;
}

.card-aluno>img {
    margin-top: 20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid white;
}

.card-aluno>h2 {
    text-shadow: 1px 1px 1px #fbb8bd;
    font-size: 20px;
}

.botoes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
}

.botao {
    background-color: #950d15;
    color: white;
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 6px;
    margin: 2px;
    text-shadow: 2px 2px 5px black;
    box-shadow: 2px 2px 5px black;
}

.card-aluno>div {
    margin-top: 15px;
    margin-bottom: 10px;
}

.blur {
    z-index: -1;
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: -80px;
    right: -60px;
    background: rgba(255, 51, 51, 0.8);
    filter: blur(60px);
}

hr {
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(149, 13, 21, 1) 50%, rgba(255, 255, 255, 0) 100%);
    border: 0;
    height: 4px;
    width: 100%;
    margin: 20px auto;
}

.titulo-secao {
    text-align: center;
    color: #950d15;
    text-shadow: 1px 1px 4px rgb(92, 92, 92);
    margin-top: 10px;
}

footer {
    margin-top: 60px;
    position: relative;
    height: 60px;
    background-image: linear-gradient(to bottom, #ED1C24 60%, #950d15);
    text-align: center;
    padding: 15px;
    color: white;
    font-style: italic;
}


.swiper {
    width: 100%;
    height: 200px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    /* min-height: 520px; */
    box-shadow: 1px 1px 1px #950d15;
    transition: all 500ms;
}

.card:hover {
    transform: scale(1.02);
    transition: all 500ms;
}

.categories {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 1rem;
}

.categories a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.category {
    padding: 2rem;
}

.project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ED1C24 !important;
}

@media (max-width:700px) {
    header {
        flex-direction: column;
    }

    #logo {
        text-align: center;
    }
}

.wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../img/wave.png");
    background-size: 1000px 100px;
}

.wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
}

.wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}

@keyframes animateWaves {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-positon-x: 0px;
    }
}

@keyframes animate {
    0% {
        background-position-x: -1000px;
    }

    100% {
        background-positon-x: 0px;
    }
}