@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');

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

header {
    background: linear-gradient(to right, #2cc3ac, #5985d7);
    height: 30%;
    display: flex;
    align-items: left;
    justify-content: space-around;
    padding: 0 2%;
}

header h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    color: white;
    font-size: 6vw;
    max-width: auto;
    max-height: auto;
    text-align: left;
    margin-top: 5%;
}

.search-container {
    display: flex;
    justify-content: center;
    margin: 2% 0;
}

.search-container input {
    width: 70%;
    padding: 1%;
    font-size: 1.2em;
    border: none;
    /*border-radius: 5px;*/
    background: linear-gradient(to right, #2cc3ac8c, #5985d770);
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.search-container input::placeholder {
    color: white;
}

.search-container input:hover {
    background: linear-gradient(to right, #2cc3ac8c, #5985d770);
    transform: scale(1.02);
}

.search-icon {
    width: 3%;
    height: 3%;
    margin-left: 65%;
    position: absolute;
}

.search-icon:hover {
    cursor: pointer;
}

.search-form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2%;
    gap: 2%;
    margin-bottom: 5%;
}

.ceten-logo {
    width: 10%;
    position: absolute;
    margin-right: 85%;
}

.titulo-img {
    position: absolute;
    margin-left: 70%;
    width: 20.45%;
    
}

.option {
    background: linear-gradient(to right, #c2eae8ce, #c6e4edcb, #ccdbf2d3);
    width: 20%;
    text-align: center;
    padding: 2%;
    margin-top: 2%;
    font-size: clamp(0.8rem, 1.5vw, 1.5em);
    /*border-radius: 5px;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: rgb(66, 66, 66);
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: keep-all;
}

.rodape-btn {
    background: linear-gradient(to right, #c2eae8ce, #c6e4edcb, #ccdbf2d3);
    text-align: center;
    padding: 0.8%;
    font-size: 1.0em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: rgb(66, 66, 66);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.rodape-btn:hover {
    background-color: #87cefa;
    transform: scale(1.05);
}

.option:hover {
    background-color: #87cefa;
    transform: scale(1.05);
}

footer {
    background: linear-gradient(to right, #2cc3ac, #5985d7);
    height: 10vh;
    margin-top: auto;
    display: flex;
    justify-content:left;
    padding-left: 2%;
    gap: 20px;
    align-items: center;
}

footer a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
}

@media only screen and (max-width: 768px) {
    header {
        height: 25.45vw;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    header h1 {
        font-size: auto;
        width: auto;
        font-weight: 200;
    }

    footer a {
        text-decoration: none;
        color: white;
        font-size: 0.6em;
    }

    .rodape-btn {
        font-size: 0.9em;
        padding: 1.7%;
    }

    .options-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .option {
        width: 70%;
        font-size: 1.0em;
    }

    .ceten-logo {
        width: 18%;
        margin-right: 0;
        margin-bottom: 12%;
    }

    header h1 {
        margin-top: 15%;
        z-index: 2;
    }

    .titulo-img {
        width: 25.45%;
        margin-top: 6%;
        z-index: 1;
    }
}
