/*FOOTER*/
:root {
    --primaria: #02d7ff;
    --secundaria: #0389a2;
    --marking1: #1f1f23;
    --marking2: #151515;
    --marking3: #fff;
    
}
#footerMaster {
    position: relative;
    border-top: 2px solid var(--PretoEscuro) ;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    background-color: var(--marking3);
}
#footerMaster h1{
    color: var(--marking2);
    padding-top: 20px;
    font-weight: 700;
    font-size: 14px;
}
#footerMaster .rowFooter01{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.segundaColuna {
    padding-bottom: 20px;
}
.terceiraColuna{
    margin: 0 auto;
    text-align: center;
}

.imgFooter {
    width: 30%;
}

.iconsFooter {
    padding-top: 15px;
    padding-left: 2%;
    display: flex;
    gap: 30px;

}

.iconsFooter a {
    color: var(--primaria);
    font-size: 20px;
}

.titleFooter {
    flex-direction: column;
    display: flex;
    gap: 10px;

}

.titleFooter a {
    text-decoration: none;
    color: #787577;
}

.linksRapidos,
.contato,
.Cadastro {
    font-size: 15px;
    color: white;
}



.form-label {
    font-size: 15px;
    text-decoration: none;
    color: #585858;
}

#email {
    display: flex;
    align-items: center;
    background-color: #13131396;
    border-color: #13131396;
    color: var(--primaria);
    border-radius: 5px 0 0 5px;
    width: 70%;
}

#email::placeholder {
    color: #9494949d;
    font-size: 15px;

}

#email:focus {
    box-shadow: none;
}

.bi-envelope {
    color:var(--primaria);

    border: none;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.buttonIcon {
    margin-right: 22px;
    background-color: #13131396;
    border: none;
    border-radius: 0px 5px 5px 0px;
}
.Copyright{
    text-align: center;
    color: #787577;
    font-size: 12px;
    border-top: 1px solid #fec3003f;
    padding-top: 20px;
}

@media (max-width: 992px) {

    .imgFooter {
        width: 20%;
    }
}

/*CSS BOTÃO WHATZA*/
.btn-whatsapp a {

	color:#fff; 
	text-decoration:none; 
	display:block; 
}

.btn-whatsapp {
    
    position:fixed; 
    right:10px; 
    bottom:30px; 
    transform: translate(-50%, -50%);  
    background-color:rgb(37, 211, 102); 
    width:60px; height:59px; 
    text-align:center; 
    line-height:58px; 
    font-size:1.8em; 
    color:#ffffff; 
    font-weight:100; 
    border-radius:50%; 
    z-index: 100;
}

.btn-whatsapp:before,
.btn-whatsapp:after

{

	content: '';
    display:block;
    position: absolute;
    border-radius:50%;
    border:1px solid #25d366;
    left: -20px;
    right: -20px;
    bottom: -20px;
    top: -20px;
    animation: animate 1.5s linear infinite;
    opacity:0;
    backface-visibility:hidden;    
}

.pulsaDelay:after { animation-delay: .5s; }

@keyframes animate {


   0%   { transform: scale(0.5); opacity:0; }
   50%  { opacity:1; }
   100% { transform: scale(1.2); opacity:0; }

}