@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-default{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcb45;
    border-radius: 12px;
    padding: 10 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover{
    background-color: #f8d477;
}

.servicos{
    padding: 40px;
    display: flex;
    flex-direction: column;
    margin-bottom: 500px;
}

.servicos h2{
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #f8d477;
    border-radius: 20px;
}

h1{
    padding: 30px;
    text-align: center;
}

#button1{
    background-color: #ffcb45;
    border-radius: 5px;
    padding: 5px;
}

.job-card {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        margin: 10px 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      }

.cookies-msg{
    width: 80%;
    background-color: #fff;
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 15px;
    display: none;
}

.cookies-msg.mostrar{
    display: block;
}

.cookies-txt{
    display: flex;
    align-items: center;
    text-align: justify;
    padding: 20px;
}

.cookies-btn{
    margin-left: 30px;
}

.cookies-btn button{
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    padding: 10px 40px;
    cursor: pointer;
    border-radius: 15px;
    transition: 0.2s;
}

.cookies-btn button:hover{
    transform: scale(0.9);
}

footer{
    background-color: #f8d477;
    position: relative;
    right: 0;
    left: 0;
    bottom: 0px;
    display: block;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

footer .web{
    background-color: #f8d477;
}

footer .web a{
    color: #1d1d1d;
    text-decoration: none;
    background-color: #f8d477;
    
}

footer .media{
    background-color: #f8d477;
}

footer .media i{
    font-size: 11px;
    background-color: #f8d477;
}

footer .contact{
    background-color: #f8d477;
}

footer .end{
    background-color: #f8d477;
}

footer .contact i{
    font-size: 11px;
    background-color: #f8d477;
}

footer p{
    background-color: #f8d477;
}

@media screen and (max-width: 1170px){
    
    .alie{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    footer{
        background-color: #f8d477;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        right: 0;
        left: 0;
        bottom: 0px;
        width: 100%;
    }
    
    footer .web a{
        color: #1d1d1d;
        text-decoration: none;
        
    }

    footer .media{
        background-color: #f8d477;
    }
    
    footer .media i{
        background-color: #f8d477;
        font-size: 11px;
    }

    footer .contact{
        background-color: #f8d477;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    footer .contact i{
        font-size: 11px;
    }

    footer p{
        background-color: #f8d477;
        padding: 10px;
        margin-bottom: 0;
    }
}

