@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root {
    --hover-header: #000000;
    --header-color: #e30613;
    --text-color: #ffffff;
    --secondary-color: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
}

.all-content {
    margin-left: 18%;
    margin-top: 4%;
}

.apresentation {
    display: flex;
    flex-direction: column;
}

.apresentation h1 {
    margin-top: 4%;
    max-width: 30%;
    font-weight: 1000;
    font-size: 2rem;
    font-weight: 1000;
    font-family: "Montserrat", sans-serif;
    border-bottom: 3px solid var(--secondary-color-red);
}

.apresentation p {
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    margin-right: 20%;
    margin-top: 3rem;
    background-color: var(--secondary-color-red);
    padding: 20px;
    color: var(--text-color);
    border-radius: 10px;
    text-align: center;
    margin-right: 20%;
    word-spacing: 0.1em;
    word-break: normal;
    hyphens: auto;
    transition: 0.5s;
}

.apresentation p:hover {
    background-color: var(--hover-header);
    color: var(--text-color);
    transition: 0.5s;
    cursor: pointer;
    border-radius: 10px;
    padding: 20px;
    margin-right: 20%;
    margin-top: 3rem;
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    word-spacing: 0.1em;
    word-break: normal;
    hyphens: auto;
    transition: 0.5s;
    margin-top: 30px;
}

.text-content {
    display: flex;
    margin-top: 100px;
}

.text-content h2 {
    margin-top: 4%;
    font-weight: 1000;
    font-size: 2rem;
    font-weight: 1000;
    font-family: "Montserrat", sans-serif;
    border-bottom: 3px solid var(--secondary-color-red);
}

.senai-img {
    width: 30%;
    margin-right: 4%;
}

.senai-img img {
    width: 100%;
}

.institution-info {
    display: flex;
    margin-top: 4%;
}

.institution-info p {
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    margin-right: 20%;
    margin-top: 3rem;
    background-color: var(--secondary-color-red);
    padding: 20px;
    color: var(--text-color);
    border-radius: 10px;
    text-align: center;
    margin-right: 20%;
    word-spacing: 0.1em;
    word-break: normal;
    hyphens: auto;
    transition: 0.5s;
}

@media (max-width: 768px){
    .line-p, .line-p2{
        width: 50%;
    }

    .titulo-participantes,
    .titulo-participantes2{
        font-size: 2em;
    }

    .conteudo-home{
        gap: 10px;
        text-align: center;
    }

    .image-home img{
        height: auto;
    }

    .conteudo-home{
        text-align: justify;
    }

    .text-home{
        word-spacing: 0.1em;
        hyphens: auto;
        text-align: justify;
        width: 90%;
    }    

    .apresentation h1 {
        margin-top: 20%;
        font-weight: 1000;
        font-size: 1.5rem;
        font-family: "Montserrat", sans-serif;
        border-bottom: 2px solid var(--secondary-color-red);
    }

    .senai-img {
        width: 80%;
        margin-right: 4%;
    }
    
}