body {
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    font-family:'MinhaFonte', sans-serif;
}

header {
    background-color: #009739;
}

footer {
    background-color: #009739;
}

@font-face {
    font-family: 'MinhaFonte';
    src: url('Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.logo {
    display: flex;
    justify-content: center;
    color: white;
    padding: 15px;
}
            
.contatos {
    display: flex;
    align-items: center;
}

.contatos a {
    text-decoration: none;
    color: white;
}

.contatos h2 {
    font-size: 25px;
    margin-left: 10px;
}

.contatos img {
    margin-left: 25px;
    padding: 2px;
}

.container-produtos {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    flex-wrap: wrap;
    gap: 20px;
}

.produto {
    background-color: white;
    padding: 10px;
    text-align: center;
    width: 300px;
    border-radius: 15px;
}

.produto img {
    vertical-align: middle;
    display:inline-block;
    width: 224px;            
    height: 157px;
}

.container-produtos2 {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    flex-wrap: wrap;
    gap: 20px;
}

.produto2 {
    background-color: white;
    padding: 10px;
    text-align: center;
    width: 250px;
    border-radius: 15px;
}            

.produto2 img {
    vertical-align: middle;
    display:inline-block;
    width: 230px;            
    height: 300px;
}

.container-produtos3 {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    flex-wrap: wrap;
    gap: 20px
}

.produto3 {
    background-color: white;
    padding: 10px;
    text-align: center;
    width: 350px;
    border-radius: 15px;  
}            

.produto3 img {
    vertical-align: middle;
    display:inline-block;
    width: 256px;            
    height: 180px;
}

            
.detalhe h2 {
    font-size: 18px;
    padding-top: 15px;
    margin: 0;
}

.detalhe p {
    margin: 2px;
    font-size: 18px;
}

.informacao {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    flex-wrap: wrap;
    color: white;
}

.informacao2 a {
    color: white;
    text-decoration: none;
}

.informacao img {
    width: 28px;
    height: 28px;
    margin-top: 0.9%;
}

.informacao h3 {
    margin-left: 10px;
    color: #f9f9f9;
}

.parceiras {
    text-align: center;
    padding-bottom: 10px;
}

.parceiras img {
    height: 110px;
    width: auto;
}

.texto-meio {
    text-align: center;
}

.icone-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding-bottom: 9%;
}

.icone-flutuante img {
    width: 100px;
    height: auto;
}

.icone-flutuante img:hover {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}