* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    /* background: #91ad31; */
    /* background: #93d63b; */
    background: radial-gradient(#93d63b, #c6ef8f);
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#conteudo {
    max-width: 1048px;
    min-width: 40%;
    margin: 8px auto;
    padding: 32px 16px; 
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

header {
    margin: 16px 0;
}

h1 {
    /* display: none !important; */
    font-family: 'Satisfy', cursive;
    /* font-family: 'Great Vibes', cursive; */
    text-align: center;
    font-size: 3.6rem;
    color: #fff;
    line-height: 1.6;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

h1 span {
    display: block;
    font-size: 1.5rem;
    color: #111;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    text-shadow: none;
}

hr {
    width: 98%;
    height: 1px;
    background-color: #FFF;
    border: none;
    margin: 8px 0;
    
}

.hide-in-mobile {
    display: block;
}

.hide-in-desktop {
    display: none !important;
}


/* .margem {
    max-width: 1048px;
    margin: 0 auto;
    padding: 32px 16px;
} */

#plataformas {
    margin: 8px 0;
    min-width: 80%;
}


#plataformas ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#plataformas ul li {
    margin: 8px 0;
    width: 100%;
    max-width: 290px;
}

#plataformas ul li a {
    padding: 12px 20px;
    border-radius: 4px;
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.cardapio-bg {
    background: #fff;
    color: #000 !important;
}

.instagram-bg {
    /* background: #d6249f; */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #111 !important;
}

.shopee-bg {
    background: linear-gradient(-180deg,#f53d2d,#f63);
    /* background-color: #ee4d34; */
}


#endereco {
    text-align: center;
    padding: 16px 8px;
    font-weight: 300;
    margin: 16px 0 8px 0;
}

#endereco p {
    /* font-family: 'Satisfy', cursive; */
    font-family: 'Bebas Neue', sans-serif;
    color: #111;
    font-size: 1.3rem;
    /* text-shadow: 1px 1px 2px rgba(60, 60, 60, 0.8); */
}

#endereco address {
    font-style: normal;
    color: #111;
    line-height: 1.4;
    margin: 4px 0;

}

#endereco small a {
    /* font-family: 'Satisfy', cursive; */
    text-decoration: none;
    color: #111;
}

#endereco small a:hover {
    border-bottom: 1px solid #111;
}


footer {
    position: absolute;
    bottom: 0;
    padding: 8px 8px 16px 8px;
}

footer p {
    text-align: center;
    font-size: 0.8rem;
}

footer p a {
    text-decoration: none;
    color: #000;
}

footer p a:hover {
    border-bottom: 0.1rem solid #333;
}




@media (max-width: 992px) {

}


@media (max-width: 768px) {

    body {
        
        background: linear-gradient(#93d63b, #c6ef8f);
    }

    .hide-in-mobile {
        display: none !important;
    }
    
    .hide-in-desktop {
        display: block !important;
    }


    body {
        line-height: 1.4;
    }

    #endereco small a {
        border-bottom: 1px solid #111;
    }

    h1 {
        font-size: 3.2rem;
        line-height: 1.7;
    }
    
    h1 span {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    

    
}

@media (max-width: 576px) {

    h1 {
        font-size: 2.8rem;
    }
    
    h1 span {
        font-size: 1.3rem;
    }
    
}

