main .home{
    width: 100%;
    height: auto;
}
main .home .container{
    width: 100%;
    height: auto;
    position: relative;
}
main .home .container > video{
    width: 100%;
    height: 700px;
    filter: brightness(0.5);
    object-fit: cover;
}
main .home .container .sobre-container{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 30px;
    background: linear-gradient(to top, var(--preto), transparent, transparent);
}
main .home .container .sobre-container > h1{
    width: 80%;
    line-height: 60px;
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    font-family: 'outfit';
    color: var(--azul);
}
main .home .container .sobre-container > h1.visivel{
    animation: enter-right 1s forwards;
    animation-delay: 1s;
}
main .home .container .sobre-container > p{
    width: 70%;
    font-size: 20px;
    margin-bottom: 100px;
    font-weight: 400;
    font-family: 'poppins';
    color: var(--branco);
    text-align: center;
}
main .home .container .sobre-container > p.visivel{
    animation: enter-right 1.5s forwards;
    animation-delay: 1.5s;
}

/*Servicos*/

main .servicos{
    width: 100%;
    height: auto;
    padding-top: 50px;
    background-color: var(--preto);
}
main .servicos .container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 4%;
    column-gap: 50px;
}
main .servicos .container > .card{
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--branco);
}
main .servicos .container > .card.visivel{
    animation: enter-top 1s forwards;
    animation-delay: 0.5s;
}
main .servicos .container > .card > img{
    width: 80px;
    height: auto;
    background-color: var(--azul);
    padding: 12px;
    border-radius: 15px;
}
main .servicos .container > .card > i{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    background-color: var(--azul);
    padding: 12px;
    border-radius: 15px;
}
main .servicos .container > .card > h1{
    font-family: 'Outfit';
    color: var(--branco);
}
main .servicos .container > .card > p{
    font-family: 'Poppins';
    font-size: 13px;
    font-weight: 400;
    text-align: start;
    color: var(--branco);
}

/*Chamada*/

main .chamada{
    width: 100%;
    height: auto;
    padding: 50px 0;
}
main .chamada .container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--azul);
    padding-bottom: 70px;
}
main .chamada .container > .txt{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--azul);
    padding: 40px 0;
}
main .chamada .container > .txt > h1{
    font-family: 'poppins';
    font-size: 35px;
    font-weight: 400;
    color: var(--branco);
    text-align: center;
}
main .chamada .container > .txt > h1 > span{
    font-weight: bold;
    font-family: 'Outfit';
    color: var(--preto);
    font-size: 50px;
}
main .chamada .container > .txt > p{
    font-family: 'Poppins';
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--branco);
    text-align: center;
}

main .chamada .container .cards{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
main .chamada .container .cards > .card{
    width: 600px;
    height: 250px;
    background-color: transparent;
    border: 4px solid var(--preto);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
main .chamada .container .cards > .card > img{
    width: 100%;
    height: 100%;
    border-radius: 14px;
    position: relative;
    object-fit: cover;
    filter: blur(1px) brightness(0.7);
    transition: 0.3s ease-in-out;
}
main .chamada .container .cards > .card > .txt{
    width: 600px;
    height: 250px;
    border-radius: 15px;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease-in-out;
}
main .chamada .container .cards > .card > .txt:hover{
    background-color: #5553c574;
    transition: 0.3s ease-in-out;
}
main .chamada .container .cards > .card > .txt > i{
    font-size: 40px;
    color: var(--branco);
    transition: 0.3s ease-in-out;
}
main .chamada .container .cards > .card > .txt > h2{
    font-size: 27px;
    font-weight: 600;
    font-family: 'Outfit';
    color: var(--branco);
    text-align: center;
    transition: 0.3s ease-in-out;
}
main .chamada .container .cards > .card > .txt > p{
    font-size: 15px;
    font-weight: 400;
    font-family: 'poppins';
    color: var(--branco);
    text-align: center;
    transition: 0.3s ease-in-out;
}

/*======================= Responsividade =======================*/


@media screen and (max-width: 600px) {
    main .home .container > video{
        height: 100vh;
    }
    main .home .container .sobre-container > h1{
        width: 95%;
        font-size: 35px;
        line-height: 40px;
    }
    main .home .container .sobre-container > p{
        width: 90%;
        font-size: 12px;
    }
    main .home .container .sobre-container > a{
        width: 25px;
        height: 50px;
        font-size: 25px;
    }

    /* servicos */
    main .servicos{
        padding-top: 70px;
    }
    main .servicos .container > .card{
        width: 90%;
        height: auto;
        margin-bottom: 20px;
    }
    main .servicos .container > .card > p{
        text-align: justify;
        font-size: 12px;
    }

    /*chamada*/

    main .chamada .container > .txt > h1{
        font-size: 25px;
        display: flex;
        flex-direction: column;
    }
    main .chamada .container > .txt > h1 > span{
        font-size: 40px;
    }
    main .chamada .container > .txt > p{
        font-size: 12px;
    }

    main .chamada .container .cards > .card{
        width: 96%;
    }
    main .chamada .container .cards > .card > .txt{
        width: 100%;
    }
}
