@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f1f1f1;
}

#popup-ad {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(34, 34, 34, 0.65);
    top: 0;
    left: 0;
}

#popup-ad #ad-container {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 40%;

    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 10px;
}

#ad-container #ad-title {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}
#ad-container #ad-description {
    width: 80%;
    font-size: 1.15rem;
    text-align: center;
}
#ad-container #ad-link {
    display: flex;
    width: 80%;
    padding: 1rem 1.25rem;
    box-sizing: border-box;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    margin-top: 1rem;
}
#ad-link #ad-link-info {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    text-align: left;
}
#ad-link #ad-play {
    margin-left: auto;
    object-fit: contain;
    width: 1rem;
}

@media only screen and (max-width: 550px) {
    main .container-vagas {
        grid-template-columns: auto !important;
    }
    
    #ad-link #ad-link-info {
        width: 70% !important;
    }
}
@media only screen and (max-width: 1080px) {
    #popup-ad #ad-container {
        width: 90%;
        height: 40%;
    }
}

header {
    display: flex;
    flex-direction: row;
    width: 100%;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    padding: 28px 0;
    background-color: #001bde;
}

@media only screen and (max-width: 1080px) {
    header {
        padding: 17px 18px;
    }
}

header div {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
}

header div h1 {
    color: #fff;
    font-size: 30px;
}

@media only screen and (max-width: 1080px) {
    header div h1 {
        font-size: 18px;
    }
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 150px;
}

@media only screen and (max-width: 1080px) {
    main {
        width: 90%;
    }
}

main h2 {
    color: #000;
    font-size: 23px;
    margin-top: 50px;
    border-left: 4px solid #00de0b;
    padding-left: 15px;
}

@media only screen and (max-width: 1080px) {
    main h2 {
        font-size: 17px;
        margin-top: 28px;
    }
}

main h3 {
    color: #000;
    font-size: 23px;
    margin-top: 50px;
    border-left: 4px solid #00de0b;
    padding-left: 15px;
}

@media only screen and (max-width: 1080px) {
    main h3 {
        font-size: 17px;
        margin-top: 28px;
    }
}

main p {
    color: #3e3e3e;
    font-size: 19px;
    margin-top: 15px;
}

@media only screen and (max-width: 1080px) {
    main p {
        font-size: 15px;
    }
}

main label {
    color: #3e3e3e;
    font-size: 17px;
    font-weight: 600;
    margin-top: 25px;
}

@media only screen and (max-width: 1080px) {
    main label {
        font-size: 13px;
    }
}

main img {
    width: 330px;
    height: 100%;
    margin: 15px 0;
}

@media only screen and (max-width: 1080px) {
    main img {
        width: 80%;
        height: 100%;
    }
}

main ul {
    margin: 20px 0 10px 30px;
}

@media only screen and (max-width: 1080px) {
    main ul {
        margin: 17px 0 8px 20px;
    }
}

main ul li {
    margin-top: 5px;
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 1080px) {
    main ul li {
        margin-top: 10px;
        font-size: 14px;
    }
}

main .btn {
    display: flex;
    text-align: center;
    width: 100%;
    background-color: #001bde;
    padding: 18px 32px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

@media only screen and (max-width: 1080px) {
    main .btn {
        margin-top: 25px;
        font-size: 16px;
    }
}

main .btn:hover {
    box-shadow: 0 5px 16px 0 rgba(0,0,0,0.2);
}

main .container-vagas {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 12rem;
    gap: 1rem;
    margin-top: 2rem;
}

main .container-vagas .btn {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
    background-color: transparent;
    padding: 18px 32px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.4s;
    gap: 1rem;
    border: 1px solid gray;
    margin-top: 0;
}

main .btn img {
    object-fit: contain;
    /* width: 30%; */
    height: 4rem;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #3e3e3e;
    bottom: 0;
    text-align: center;
}

footer .content-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
}

footer .content-footer text {
    font-size: 14px;
    color: #f1f1f1;
}

@media only screen and (max-width: 1080px) {
    footer .content-footer text {
        font-size: 12px;
    }
}

footer .content-footer div {
    display: block;
    margin-top: 7px;
}

footer .content-footer div .link {
    font-size: 14px;
    color: #b0aeae;
    margin-top: 10px;
    text-decoration: none;
    transition: 0.2s;
}

@media only screen and (max-width: 1080px) {
    footer .content-footer div .link {
        font-size: 12px;
    }
}

footer .content-footer a:hover {
    text-decoration: underline;
    color: #f1f1f1;
}