/* 🌐 Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background-color: #e53935;
    color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.title-body {
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    font-size: 2rem;
    color: #333;
}