body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    min-height: 100vh;
}

.item {
    width: 200px;
    height: 300px;
    background-color: #eef4f7; /*rgb(231, 246, 246);*/
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

.item img {
    width: 90%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.sub-titulo{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.texto{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
    color: #000;
}

.btn-saibamais {
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #16891a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-saibamais:hover {
    background-color: #224e17;
}

.div-info-redesociais {
    overflow: auto;
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 0;
}

.pull-left,
.pull-right {
    display: flex;
    align-items: left;
    margin: 5px;
}

.div-box {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #e8f0fe;
    border-radius: 8px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.div-box:hover {
    background-color: #d0e2ff;
}

.fa {
    margin-right: 8px;
}
