@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700;900&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 100%;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#sobreposicao {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}
#carregandoSite {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 1;
    transition: opacity .5s ease-in-out;
    z-index: 9999;
}
@keyframes spin {
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}
#carregandoSite img {
    width: 50px;
    height: 50px;
    animation:spin 1s linear infinite;
}
.conteudo {
    max-width: 1280px;
    width: 85%;
    margin: 0 auto;
}
.linhaConteudo {
    padding: 50px 0;
}
img {
    width: 100%;
    height: 100%;
    border: 0;
}
@keyframes up-down{
    from {bottom: 30px}
    to {bottom: 20px}
}
.seta {
    position: absolute;
    left: 50%;
    width: 80px;
    height: 25px;
    z-index: 1;
    transform: scale(.9) translateX(-50%);
    animation: 1s up-down infinite;
}
.seta::before,
.seta::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    top: -14px;
    left: 20px;
    cursor: pointer;
    background-color: #FFFFFF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.seta::before {
    transform: rotate(30deg) translate(-2px,30px);
}
.seta::after {
    transform: rotate(-30deg) translate(2px,30px);
}
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background: linear-gradient(180deg, rgba(0,0,0,.5) 50%, rgba(0,0,0,0) 100%);
}
header.interno {
    background: linear-gradient(180deg, rgba(0,0,0,.25) 50%, rgba(0,0,0,0) 100%);
}
header .conteudo {
    display: flex;
    justify-content: space-between;
}
header.interno .conteudo {
    height: 330px;
    justify-content: center;
    align-items: center;
}
header .logo a {
    display: flex;
    height: 120px;
    width: 180px;
    background-image: url("../imagens/logo.png");
    background-size: cover;
}
header.interno .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #420D01;
}
header.interno .logo a {
    width: 150px;
    height: 100px;
}
header nav {
    display: flex;
}
header nav .botaoMenu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    background-color: #855B49;
    border-radius: 50%;
    cursor: pointer;
    transition: cubic-bezier(.26,.1,.27,1.55) .35s;
    z-index: 3;
}
@keyframes pop-out {
    0% {transform: scale(1)}
    50% {transform: scale(1.05)}
    100% {transform: scale(1)}
}
header nav .botaoMenuAtivo {
    background-color: #420D01;
    animation: .25s pop-out ease-in-out .1s;
}
header nav .botaoMenu .linhaBotaoMenu {
    width: 30px;
    height: 3px;
    margin: 3px;
    border-radius: 3px;
    background-color: #FFFFFF;
    transition: cubic-bezier(.26,.1,.27,1.55) .35s;
}
header nav .botaoMenuAtivo .linhaBotaoMenu:nth-child(1) {
    transform: rotate(45deg) translate(20%,200%);
}
header nav .botaoMenuAtivo .linhaBotaoMenu:nth-child(2) {
    transform: rotate(-45deg) translate(-1%,10%);
}
header nav .botaoMenuAtivo .linhaBotaoMenu:nth-child(3) {
    transform: rotate(-45deg) translate(20%,-200%);
}
header nav .menu {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    padding-top: 100px;
    font-size: 1.3em;
    font-weight: 300;
    text-transform: uppercase;
    background-color: #855B49;
    clip-path: circle(0px at 90% 5%);
    transition: cubic-bezier(.26,.1,.27,1.55) .5s;
    pointer-events: none;
    z-index: 2;
}
header nav .menuAberto {
    clip-path: circle(350px at 110% 20%);
    pointer-events: all;
}
header nav .menu li {
    display: flex;
    align-items: center;
    list-style: none;
}
header nav .menu li::after {
    content: "";
}
header nav .menu li a {
    padding: 20px 25px;
    color: #FFFFFF;
    transition: color .15s ease-in-out;
}
header nav .menu li a:hover {
    color: rgba(255,255,255,.75);
}
.fundoCinza {
    background-color: #818181;
    color: #333333;
}
.fundoRodape {
    background-color: #000000;
}
section {
    text-align: center;
}
section h1 {
    margin-bottom: 10px;
    font-size: 2.2em;
    text-transform: uppercase;
}
section h2 {
    font-size: 1.8em;
}
section p {
    line-height: 1.5em;
}
.fundoPrincipal {
    height: 100vh;
    background: url("../imagens/fundo.jpg") 55% top no-repeat;
    background-size: cover;
}
.principal {
    display: none;
    position: absolute;
    width: 100%;
    top: 50vh;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    -moz-text-shadow: 0 1px 2px rgba(0,0,0,.6);
    -webkit-text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.cortinaDestaque {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.cortinaDestaque a {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    max-width: 320px;    
    color: #000000;
    overflow: hidden;
}
.cortinaDestaque a .foto {
    width: 200%;
    line-height: 0;
}
.cortinaDestaque a:nth-child(1) .foto {
    align-self: flex-start;
}
.cortinaDestaque a:nth-child(2) .foto {
    align-self: center;
}
.cortinaDestaque a:nth-child(3) .foto {
    align-self: flex-end;
}
.cortinaDestaque a .texto {
    padding: 15px;
    text-align: left;
    background-color: #CCCCCC;
}
.cortinaDestaque a .texto h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 300;
    text-transform: uppercase;
}
.cortinaDestaque a .texto span {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: #333333;
    color: #FFFFFF;
    cursor: pointer;
}
.cortinaDestaque a:hover .texto span {
    background: #666666;
}
.fundoPrincipalInterno {
    height: 350px;
}
.fundoPrincipalInterno.brigadeiros {
    background: url("../imagens/destaque2.jpg") 55% top no-repeat;
    background-size: cover;
}
.fundoPrincipalInterno.produtos {
    background: url("../imagens/destaque3.jpg") 55% top no-repeat;
    background-size: cover;
}
.tituloInterno {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.tituloInterno h2 {
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
    width: fit-content;
    text-transform: uppercase;
    background-color: #FFFFFF;
}
.tituloInterno h2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 40px);
    height: 4px;
    background-color: #000000;
    transform: translate(-50%,-50%);
    z-index: -1;
}
.tituloInterno p {
    margin-bottom: 20px;
    font-style: italic;
}
.blocos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.blocos .cartao {
    display: grid;
    grid-template-columns: 100px auto;
    grid-column-gap: 15px;
    padding-top: 20px;
    margin-top: 20px;
    max-width: 350px;
    border-top: 1px solid #CCCCCC;
}
.blocos .cartao .frente {
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.blocos .cartao .verso {
    text-align: justify;
}
.blocos .cartao .verso h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
}
.listaProdutos .linhaConteudo {
    position: relative;
    padding: 40px 0 80px 0;
}
.listaProdutos .linhaConteudo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;    
    width: 100%;
    height: 40px;
    background: url(../imagens/divisor.png) center bottom no-repeat;
    background-size: 100px 38px;
}
.listaProdutos .linhaConteudo:last-child::after {
    display: none;
}
.listaProdutos .linhaConteudo.aberto .texto {
    position: fixed;
    width: 70vw;
    height: 70vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #FFFFFF;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    border-radius: 15px;
    z-index: 999;
}
.listaProdutos .linhaConteudo .texto h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
}
.listaProdutos .linhaConteudo .texto ul {
    list-style-position: inside;
}
.listaProdutos .linhaConteudo.aberto .texto ul {
    display: inherit;
    margin-top: 15px;
    line-height: 1.5em;
    text-indent: 5px;
}
.listaProdutos .linhaConteudo .texto .botaoMais,
.listaProdutos .linhaConteudo .texto a {
    margin-top: 20px;
    padding: 5px 10px;
    background: #333333;
    color: #FFFFFF;
    cursor: pointer;
}
.listaProdutos .linhaConteudo .texto a {
    display: inline-block;
}
.listaProdutos .linhaConteudo .texto .botaoMais {
    display: none;
}
.listaProdutos .linhaConteudo .texto .botaoMais:hover,
.listaProdutos .linhaConteudo .texto a:hover{
    background: #666666;
}
.listaProdutos .linhaConteudo.aberto .texto .botaoMais {
    position: absolute;
    bottom: 40px;
    right: 40px;
}
.listaProdutos .linhaConteudo .foto {
    padding-top: 40px;
}
.listaProdutos .linhaConteudo.aberto .foto {
    display: none;
}
@media screen and (min-width: 640px) {
    section h2 {
        font-size: 2em;
    }
    .cortinaDestaque a {
        max-width: 260px;
    }
    .blocos .cartao {
        max-width: 260px;
    }
}
@media screen and (min-width: 1024px) {
    header {
        padding-bottom: 280px;
        background: url(../imagens/fundoTopo.svg) bottom center no-repeat;
        background-size: cover;
    }
    header.interno {
        padding-bottom: 60px;
        background: url(../imagens/fundoTopoInterno.svg) bottom left no-repeat;
        background-size: cover;
    }
    header.interno .conteudo {
        justify-content: space-between;
        height: auto;
    }
    header.interno .logo {
        width: auto;
        height: auto;
        border-radius: 0;
        background-color: transparent;
    }
    header.interno .logo a {
        height: 120px;
        width: 180px;
    }
    header nav .botaoMenu {
        display: none;
    }
    header nav .menu {
        position: relative;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        height: 100%;
        margin-left: 25px;
        padding-top: 0;
        font-size: 0.9em;
        font-weight: 400;
        background-color: transparent;
        clip-path: none;
        transition: none;
        pointer-events: all;
    }
    header nav .menu li {
        padding: 5px 10px;
    }
    header nav .menu li::after {
        content: "∙";
        margin-left: 18px;
        color: #FFFFFF;
    }
    header nav .menu li:last-child::after {
        content: "";
    }
    header nav .menu li a {
        padding: 10px;
        letter-spacing: 1px;
    }
    header nav .menu li a:hover {
    }
    .cortinaDestaque {
        position: relative;
        height: calc((85vw / 3) + 40px);
    }
    .cortinaDestaque a {
        position: absolute;
        align-items: flex-start;
        max-width: none;
        height: 100%;
        transition: all .5s cubic-bezier(1,0,.45,.45) .15s;
        z-index: 1;
    }
    .cortinaDestaque a:nth-child(1) {
        left: 0;
        right: calc((2 * 85vw / 3) + 20px);
    }
    .cortinaDestaque a:nth-child(2) {
        left: calc((85vw / 3) + 20px);
        right: calc((85vw / 3) + 20px);
    }
    .cortinaDestaque a:nth-child(3) {
        left: calc((2 * 85vw / 3) + 20px);
        right: 0;
    }
    .cortinaDestaque a:hover {
        left: 0;
        right: 0;
        z-index: 10;
    }
    .cortinaDestaque a .foto {
        position: absolute;
        width: 85vw;
    }
    .cortinaDestaque a:nth-child(1) .foto {
        left: 0;
    }
    .cortinaDestaque a:nth-child(2) .foto {
        left: 50%;
        transform: translateX(-50%);
    }
    .cortinaDestaque a:nth-child(3) .foto {
        right: 0;
    }
    .cortinaDestaque a .texto {
        position: absolute;
        display: grid;
        grid-template-columns: 30% auto;
        padding: 0;
        align-items: center;
        bottom: 0;
        width: 85vw;
    }
    .cortinaDestaque a .texto h3 {
        margin: 0;
        padding: 20px;
    }
    .cortinaDestaque a .texto p {
        padding: 20px;
        opacity: 0;
        transform: translateX(-10%);
        transition: all .5s cubic-bezier(1,0,.45,.45) .15s;
    }
    .cortinaDestaque a:hover .texto p {
        transform: none;
        opacity: 1;
    }
    .cortinaDestaque a .texto span {
        display: none;
    }
    .blocos {
        justify-content: center;
    }
    .blocos .cartao {
        position: relative;
        display: flex;
        padding: 0;
        margin: 20px;
        max-width: none;
        width: 340px;
        height: 340px;
        border: none;
        cursor: pointer;
    }
    .blocos .cartao:hover > .frente {
        transform: perspective(600px) rotateY(-180deg);
    }
    .blocos .cartao:hover > .verso {
        transform: perspective(600px) rotateY(0deg);
    }
    .blocos .cartao .frente,
    .blocos .cartao .verso {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        backface-visibility: hidden;
        transition: transform .6s linear;
    }
    .blocos .cartao .frente {
        border-radius: 0;
        transform: perspective(600px) rotateY(0deg);
    }
    .blocos .cartao .verso {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        background-color: #f1f1f1;
        transform: perspective(600px) rotateY(180deg);
    }
    .blocos .cartao .verso h3 {
        font-size: 1.4em;
    }
    .listaProdutos .linhaConteudo {
        display: flex;
        align-items: center;
    }
    .listaProdutos .linhaConteudo:nth-child(2) {
        flex-direction: row-reverse;
    }
    .listaProdutos .linhaConteudo .texto {
        width: 150%;
        text-align: justify
    }
    .listaProdutos .linhaConteudo .texto ul {
        display: none;
    }
    .listaProdutos .linhaConteudo .texto .botaoMais {
        display: inline-block;
    }
    .listaProdutos .linhaConteudo .foto {
        margin-top: 0;
        margin-left: 40px;
    }
    .listaProdutos .linhaConteudo:nth-child(2) .foto {
        margin-left: 0;
        margin-right: 40px;
    }
}
.botaoWhatsApp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #1ebea5;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 2px 0 rgba(247,242,242,0.302), 0 1px 3px 1px rgba(247,242,242,0.149), 0 -1px 2px 0 rgba(129,129,129,0.604), 0 -1px 3px 1px rgba(129,129,129,0.298);
    -moz-box-shadow: 0 1px 2px 0 rgba(247,242,242,0.302), 0 1px 3px 1px rgba(247,242,242,0.149), 0 -1px 2px 0 rgba(129,129,129,0.604), 0 -1px 3px 1px rgba(129,129,129,0.298);
    -webkit-box-shadow: 0 1px 2px 0 rgba(247,242,242,0.302), 0 1px 3px 1px rgba(247,242,242,0.149), 0 -1px 2px 0 rgba(129,129,129,0.604), 0 -1px 3px 1px rgba(129,129,129,0.298);
    transition: all .15s ease-in-out;
    z-index: 999;
}
.botaoWhatsApp:hover {
    box-shadow: 0 1px 3px 0 rgba(247,242,242,0.302), 0 4px 8px 3px rgba(247,242,242,0.149), 0 -1px 3px 0 rgba(129,129,129,0.604), 0 -2px 6px 3px rgba(129,129,129,0.298);
    -moz-box-shadow: 0 1px 3px 0 rgba(247,242,242,0.302), 0 4px 8px 3px rgba(247,242,242,0.149), 0 -1px 3px 0 rgba(129,129,129,0.604), 0 -2px 6px 3px rgba(129,129,129,0.298);
    -webkit-box-shadow: 0 1px 3px 0 rgba(247,242,242,0.302), 0 4px 8px 3px rgba(247,242,242,0.149), 0 -1px 3px 0 rgba(129,129,129,0.604), 0 -2px 6px 3px rgba(129,129,129,0.298);
    transform: scale(1.05);
}
.botaoWhatsApp span {
    color: #FFFFFF;
    font-size: 40px;
    transition: all .15s ease-in-out;
}
.botaoWhatsAppRodape {
    position: absolute;
    top: -30px;
}
@keyframes left-right {
    0% {
        opacity: 0;
    }
    28% {
        opacity: 0;
    }
    30% {
        margin-right: 10px;
        opacity: .5;
    }
    35% {
        margin-right: 0;
        opacity: 1;
    }
    40% {
        margin-right: 10px;
        opacity: 1;
    }
    45% {
        margin-right: 0;
        opacity: 1;
    }
    50% {
        margin-right: 10px;
        opacity: 1;
    }
    55% {
        margin-right: 0;
        opacity: 1;
    }
    60% {
        margin-right: 10px;
        opacity: 1;
    }
    65% {
        margin-right: 0;
        opacity: 1;
    }
    70% {
        margin-right: 10px;
        opacity: 1;
    }
    75% {
        margin-right: 0;
        opacity: 1;
    }
    80% {
        margin-right: 10px;
        opacity: 1;
    }
    85% {
        margin-right: 0;
        opacity: 1;
    }
    90% {
        margin-right: 10px;
        opacity: 1;
    }
    95% {
        margin-right: 0;
        opacity: 1;
    }
    97% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.botaoWhatsApp::before {
    content: 'Faça seu pedido agora';
    position: absolute;
    right: 78px;
    padding: 15px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #666666;
    color: #666666;
    font-size: 0.9em;
    white-space: nowrap;
    opacity: 0;
    animation: 30s left-right;
    pointer-events: none;
}
.botaoWhatsApp::after {
    content: '';
    position: absolute;
    right: 71px;
    width: 15px;
    height: 15px;
    background-color: #FFFFFF;
    border-top: 1px solid #666666;
    border-right: 1px solid #666666;
    transform: rotate(45deg);
    opacity: 0;
    animation: 30s left-right;
    pointer-events: none;
}
footer {
    position: relative;
    color: #818181;
}
footer .conteudo {
    position: relative;
    display: grid;
    grid-template-columns: 25% 25% 1fr;
}
footer article {
    margin-bottom: 20px;
}
footer a {
    color: #818181;
    transition: color .15s ease-in-out;
}
footer a:hover {
    color: #F7F2F2;
}
footer h4 {
    font-size: 1.2em;
    text-transform: uppercase;
    margin: 20px 0;
    color: #F7F2F2;
}
footer ul li {
    list-style: none;
}
footer ul li a {
    display: flex;
    height: 30px;
}
footer .contatos li a {
    align-items: center
}
footer .contatos .icones {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 24px;
}
footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    height: 57px;
    text-align: center;
    font-size: .8em;
    border-top: 1px solid #818181;
}
footer .copyright a {
    color: #818181;
    transition: color .15s ease-in-out;
}
footer .copyright a:hover {
    color: #F7F2F2;
}
.social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-indent: 0;
}    
.social li {
    list-style: none;
}
.social li a {
    height: 22px;
    width: 22px;
    margin: 0 10px;
    font-size: 22px;
}
.social li:nth-child(2) a {
    font-size: 24px;
}
@media screen and (max-width: 960px) {
    footer .conteudo {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 640px) {
    footer .conteudo {
        grid-template-columns: 1fr;
    }
    footer .copyright {
        flex-direction: column-reverse;
        height: 97px;
        padding: 16px 8px;
    }
}