* {
    margin: 0;
    border: 0;
    text-decoration: none;
}

body {
    background-image: url("../media/img/fundoLEA.jpg");
    border: 0;
    background-size: 250px;
    padding-bottom: 20px;
}

.menu {
    display: flex;
    flex-direction: column;
}

.menu-img {
    padding: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
}

.ic-1 {
    padding: 4px;
    flex: 1;
}

.ic {
    padding: 10px;
    flex: 1;
    font-weight: 700;
    color: black;
}

#ic-0 {
    background-color: #83a7d6;
}

#ic-1 {
    background-color: #81D6B5;
}

#ic-2 {
    background-color: #B2E677;
}

#ic-3 {
    background-color: #FFCE58;
}

#ic-4 {
    background-color: #FF9B54;
}

#ic-5 {
    background-color: #FF6255;
}

#ic-6 {
    background-color: #FF6283;
}

#ic-7 {
    background-color: #ff76fd;
}

.barra {
    background-color: #4B7D88;
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.barra a {
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.barra img {
    height: 80px;
}

#ismaelnerd {
    height: 100px;
}

.landing {
    background-color: #4b7e88c9;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.landing img {
    height: 100%;
    width: 60%;
}

.landing div {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    font-size: 4vh;
    width: 40%;
}

.section1 {
    display: flex;
    flex-direction: column;
    text-align: center;
}

@media (max-width: 500px) {
    /* Exemplo do que muda no mobile:
       (ajusto só o essencial — você pode pedir para
       adaptar exatamente como quiser depois) */
    .menu-img {
        flex-direction: column;
        text-align: center;
    }
    .barra a {
        font-size: 32px;
    }
    .barra img {
        height: 60px;
    }
    .landing {
        flex-direction: column;
    }
    .landing img {
        width: 100%;
        height: auto;
    }
    .landing div {
        width: 100%;
        font-size: 3.5vh;
        padding: 20px;
    }
}