html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-image: url("../img/back-sind.jpg");
    background-position: right top; /* Alinha a imagem à direita */
    background-repeat: no-repeat;   /* Evita repetição */
    /* background-size: auto 100%;     Ajusta altura para 100% da tela, largura proporcional */
    background-size: cover;
    /* background: linear-gradient(180deg, #00FF85 0%, #00B368 100%); */
}
.icon {
    width: 100px;
    height: 100px;
}

/* @media (max-width: 768px) {
    .icon {
        width: 50px;
        height: 50px;
    }
} */

.text-brown {
    color: #393939;
}
.text-blue {
    color: #001F5B;
}
.titulo {
    background-color: #001F5B;
    padding: 10px;
    border-radius: 20px;
    display: inline-block; /* <-- ESSENCIAL para o background preencher só o texto e não a linha toda */
}