

/* ESTILO GERAL */

*{    
    font-family: "Poppins", sans-serif;
}

.conteudo{
    text-align: center;
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.grid-container-topo{

    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin-top: 20px;

}

.grid-item{
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    margin:  00 35%;

    

}


h1.slogan{
    color: #F3037a;
    font-size: 26px;
    font-weight: bold;

}


h1.slogan span{
    color: #560683;
}

h2.especialidades{
    color: #F3037a;
    font-size: 25px;
    text-align: center;
}

h2.especialidades span{
    color: #560683;
}

.gid-item p{
    color: #560683;
    
}

.interface p{
    color: #560683;
    text-align: justify;
    
}


.desenvolvimento{
    background-color: #560683;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    display: flex;
	font-size: 11px;
    
}

/* IMG TOPO SITE FLUTUANDO */
.gid-item{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.gid-item .img-topo-site img{
    position: relative;
    animation: flutuar 5s ease-in-out infinite alternate;
   
}

@keyframes flutuar{

    0% {
        transform: scale(1, 1);
      }
      50% {
        transform: scale(1.1, 1.1);
      }
      100% {
        transform: scale(1, 1);
      }
    }




/* CSS DOS BOTÕES DE CONTATO */

.btn-contato-ifood button{

    padding: 11px 71px;
    font-size: 14px;
    font-weight: 30%;
    background-color: #D50000;
    border: 0;
    border-radius: 28px;
    cursor: pointer;
    margin: 6px 0;
    color: #FFF;

}

.btn-contato-ifood button:hover{
    box-shadow: 0px 0px 6px #000;
    transform: scale(1.05);
}

.btn-instagram button{

    padding: 11px 71px;
    font-size: 14px;
    font-weight: 30%;
    background-color: #553A76;
    border: 0;
    border-radius: 28px;
    cursor: pointer;
    margin: 6px 0;
    color: #FFF;

}

.btn-instagram button:hover{
    box-shadow: 1px 0px 6px #FFF;
    transform: scale(1.05);
}

.btn-facebook button{

    padding: 11px 71px;
    font-size: 14px;
    font-weight: 30%;
    background-color: #0866FF;
    border: 0;
    border-radius: 28px;
    cursor: pointer;
    margin: 6px 0;
    color: #FFF;

}

.btn-facebook button:hover{
    box-shadow: 1px 0px 6px #FFF;
    transform: scale(1.05);
}

.btn-contato button{

    padding: 11px 71px;
    font-size: 14px;
    font-weight: 30%;
    background-color:#75D40F;
    border: 0;
    border-radius: 28px;
    cursor: pointer;
    margin: 6px 0;
    color: #FFF;

}

.btn-contato button:hover{
    box-shadow: 0px 0px 6px #FFF;
    transform: scale(1.05);
}



.fotos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;

}

.fotos img{

    max-width: 340px;
    border-radius: 20px;
    border-color: #553A76;
    max-width: 350px;

    box-shadow: #543A76 0px 0px 6px;
    transition: all 0.3s ease;
    cursor: pointer;
 
}