@charset "UTF-8";

* {
    box-sizing: border-box;
}

body {
    background-color: white;
    background-attachment: fixed;
    margin: 0px;
}

main {
    background-color: rgb(255, 255, 255);
    padding: 0px 0px auto 0px;
    margin-left: auto;
    margin-right: auto;
}

.CardAviso {
    width: 500px;
    height: auto;

    margin-left: auto;
    margin-right: auto;

    background-color: #F6BC18;

    border: 10px solid #F6BC18;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;

    animation: fadeInDown;
    animation-duration: 1s;
}

@media screen and (max-width: 530px) {
    .CardAviso {
        width: auto;
    
        margin-left: 10px;
        margin-right: 10px;
    }
}

.CardAviso > p {
    font-size: 22px;
    text-align: center;

    color: white;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.795)
}

.SalgadosP {
    text-align: center;
    font-family: 'Dalla', Helvetica, sans-serif;
    font-size: 5em;
    color: #F46036;
    padding-top: 60px;
    margin-top: 0px;
    margin-bottom: 0px;

    animation: fadeInDown;
    animation-duration: 1s;
}

@media screen and (max-width: 484px) {
    .SalgadosP {
        font-size: 4em;
    }
}

@media screen and (max-width: 386px) {
    .SalgadosP {
        font-size: 3.5em;
    }
}

.TextoPrincipal p {
    margin-left: 200px;
    margin-right: 200px;
    font-family: 'Roboto Slab', serif;
    font-size: 30px;

    /*    margin: 10px 10px;
    flex-direction: row;
    flex-wrap: wrap;*/
}

@media screen and (max-width: 840px) {
    .TextoPrincipal > p {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media screen and (max-width: 495px) {
    .TextoPrincipal > p {
        font-size: 25px;
    }
}

@media screen and (max-width: 425px) {
    .TextoPrincipal > p {
        font-size: 22px;
    }
}

@media screen and (max-width: 402px) {
    .TextoPrincipal > p {
        font-size: 20px;
    }
}

/*.FundoCoxinha {
    background-image: url('Fundos/FundoTrigoVetorial1.jpg');
    background-repeat: repeat;
    background-position: center;
    background-attachment: inherit;
}
    /*1879×977 100% 886px;*/

.OverlayCoxinha {
    background-color: #1B860F;
    opacity: 0.2;
}

.coxinhaf {
    height: 241px; /*241*/
    width: 	336px; /*336*/

    padding: 8px;

    margin: 2px 12px 0px 12px; /*2px 20px 0px 20px ou no left e right 17 17*/

    /*background-image: linear-gradient(to bottom, #a70e133d, #A70E13);*/

    background-color: #da1218;
    border-radius: 20px 40px;
    box-shadow: 5px 10px 10px 1px rgba(0, 0, 0, 0.493);

    transition: background-image 1s ease-in-out;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (max-width: 390px) {
    .coxinhaf {
        margin-right: 8px;
        margin-left: 8px;
    }
}

h2 {
    color: #F46036;
    font-size: 2em;
}

p {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;

    animation: fadeInDown;
    animation-duration: 1s;
}

.coxinhaf:hover {
    padding: 8px;
    border-radius: 20px 40px;
    background-color: #F6BC18;
    
    /*background-image: linear-gradient(to bottom, #f6bb1836, #F6BC18);*/
}

.DescriçãoP {
    margin-top: 0px;
    margin-bottom: 0.9rem;
}

.TextoSalg {
    margin: 40px 20px 0px 40px;
}

.ImagensPrincipais {
    display: flex;
    list-style: none;
    text-align: center;
}


div {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: block;
}


.DivSalgados {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
    padding-bottom: 200px;

    animation: fadeInDown;
    animation-duration: 1s;
}

.DivSalgados > li > p > a {
    text-decoration: none;
    font-size: 30px; /*25px*/
    color: #F6BC18;
    padding: 6px;
    border: solid 4px #F6BC18;
    border-radius: 15px;
    box-shadow: 3px 3px 10px -3px rgba(0, 0, 0, 0.493);

    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);;
}

.DivSalgados > li > p {
    margin-bottom: 60px;
}

.DivSalgados > li > p > a:hover {
    background-color: #F6BC18;
    color: white;
}

.DivSalgados > li > a > img {
    height: 271px; /*241px*/
    width: 366px; /*336*/
}

@media screen and (max-width: 390px) {
    .DivSalgados > li > a > img {
        height: 241px;
        width: 336px;
    }
}

.DivSalgados > li {
    margin-right: auto;
    margin-left: auto;
}