/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Aminute';
    src: url('/storage/font/Aminute.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* <-- importante */
}

.font-amintue {
    font-family: 'Amintue', sans-serif !important; 

}

.font-amintue-bold {
    font-family: 'Amintue', sans-serif  !important;
    font-weight: 700;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
}

a {
    text-decoration: none;
    color: inherit;
}