@import url(./menu.css);
@import url(./main.css);
@import url(./modal.css);

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 52.5%;
}

body{
    display: flex;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f4f6fb;
    color: #222;
    line-height: 1.6;
}

input,
textarea,
select,
button {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.6rem;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.6rem;
    color: #999;
}

select{
    color: #999;
}

/* Opções do dropdown */
select option {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.6rem;
    color: #222;
}


/* Scroll suave */
html {
    scroll-behavior: smooth;
}