/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 04 2026 | 14:18:04 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(245, 12, 44, 0.5);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(245, 12, 44, 0);
  }
}
.titulo_topo {
	border: 1px solid #0669B2;
	border-radius: 100px;
	padding: 12px 35px 6px 35px;
}
.whatsapp {
	position: fixed;
    width: initial;
    height: initial;
    bottom: 15px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 14px;
    z-index: 99999;
	padding: 5px 20px;
    line-height: 35px;
    cursor: pointer;
}
.whatsapp img {
	width: 20px;
    height: 20px;
}
.whatsapp a{
    color: #FFF;
}
.whatsappcontent {
	position: relative;
	display: flex;
	gap: 5px;
	align-items:center;
}
.notificacao {
	font-family: Arial;
    line-height: 1.5;
    font-size: 12px;
    font-weight: bold;
    float: left;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
    box-shadow: 0 0 0 #E91E63;
    animation: shadow-pulse 2s infinite;
	-webkit-animation-name: shadow-pulse;
    animation-name: shadow-pulse;
    z-index: 9999;
    position: absolute;
	color: #fff;
    top: -5px;
    right: 2px;
}
.produtoitem {
    border-radius: 10px;
    background: none;
    /*box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);*/
    padding: 10px 25px;
    width: 100%;
    transition: 0.3s;
    margin-bottom: 15px;
	color:#fff;
	border: 1px solid #fff;
}
.produtoitem:hover {
    background: #305199;
	border: 1px solid #305199;
	color: #fff;
}
.form-submit .submit {
	color: #5EABEF !important;
	border: 1px solid #5EABEF !important;
}
.form-submit .submit:hover {
	background: #5EABEF !important;
	color: #ffffff !important;
	border: 1px solid #5EABEF !important;
}
@keyframes flutuar3D {
  0% {
    transform: rotate(20deg) rotateX(0deg) rotateY(0deg) translateY(0px);
  }

  25% {
    transform: rotate(20deg) rotateX(3deg) rotateY(-4deg) translateY(-8px);
  }

  50% {
    transform: rotate(20deg) rotateX(0deg) rotateY(5deg) translateY(-15px);
  }

  75% {
    transform: rotate(20deg) rotateX(-3deg) rotateY(-3deg) translateY(-8px);
  }

  100% {
    transform: rotate(20deg) rotateX(0deg) rotateY(0deg) translateY(0px);
  }
}

.cilindro-flutuando {
  animation: flutuar3D 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@media screen and (max-width: 520px) {
.produtoitem {
	font-size: 12px;
}	

}