body {
  font-size: 18px;
  line-height: 1.6;
}

.resposta, .mensagem, .chatbox, .pergunta {
  font-size: 18px !important;
  font-family: Arial, sans-serif;
}



header {
    background: #b3e5fc;
    padding: 20px;
    text-align: center;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #004d40;
    font-weight: bold;
}
main {
    padding: 20px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}
.grid img {
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.grid img:hover {
    transform: scale(1.05);
}
footer {
    text-align: center;
    padding: 15px;
    background: #eee;
}
/* Estilos básicos (desktop e tablet) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
}

nav {
    background-color: #004d40;
    padding: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#noticias-container div {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 🔁 Responsividade para telas pequenas */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    #noticias-container div {
        padding: 10px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    textarea, input, button {
        width: 100%;
        box-sizing: border-box;
    }
}
