* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

main {
    padding: 2rem;
    max-width: 85rem;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.conteudo-dicas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 8rem;
    padding: 2rem;
}

.conteudo-dicas p {
    text-align: justify;
    line-height: 1.5rem;
}

.itens {
    background-color: white;
    border: 0.1rem solid #ddd;
    border-radius: 0.3rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.1);
    width: 15rem;
    padding: 1rem;
    text-align: center;
    height: 16rem;
}

.itens img {
    max-width: 6rem;
    margin-bottom: 0.8rem;
}

.itens h3 {
    color: #d32f2f;
    margin-bottom: 0.5rem;
}
.itens:hover {
    transition: 0.6s ease;
    transform: scale(1.1);
};
