* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

.saibaMais {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: clamp(10rem, 10vw, 12rem); 
    height: clamp(2rem, 2vw, 2.5rem); 
    background: #F0BC23;
    border-radius: 10px;
    border: none;
    padding: 1rem 2.5rem;
    white-space: nowrap;
    font-family: 'Nunito';
    font-size: clamp(1rem, 1.2vw, 1.5rem); 
    font-weight: 700;
}

.saibaMais:hover {
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.5); 
    cursor: pointer;
}

.saibaMais p,
.saibaMais i {
    color: #000000;
    font-weight: 700;
}
