/* =========================================
   ESTILO GLOBAL — AZURY
========================================= */

body {
    min-width: 320px;

    background:
        radial-gradient(
            circle at top right,
            rgba(0, 81, 255, 0.06),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(212, 175, 55, 0.08),
            transparent 30%
        ),
        #f8f9fc;

    font-family:
        "Poppins",
        Arial,
        sans-serif;
}


/* =========================================
   ROLAGEM SUAVE
========================================= */

html {
    scroll-behavior: smooth;
}


/* =========================================
   ELEMENTOS GERAIS
========================================= */

img,
svg {
    max-width: 100%;
}


button,
input {
    font: inherit;
}


/* =========================================
   CORREÇÃO DAS ÂNCORAS COM CABEÇALHO FIXO
========================================= */

#home,
#Cardapio,
#Sobre,
#Contato {
    scroll-margin-top: 145px;
}


@media (max-width: 950px) {

    #home,
    #Cardapio,
    #Sobre,
    #Contato {
        scroll-margin-top: 155px;
    }
}


@media (max-width: 520px) {

    #home,
    #Cardapio,
    #Sobre,
    #Contato {
        scroll-margin-top: 125px;
    }
}