/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 23 2026 | 19:27:47 */
.et-db #et-boc .et-l .et_pb_with_background .et_pb_row, .et-db #et-boc .et-l .single.et_full_width_page .et_pb_row, .et-db #et-boc .et-l .single.et_full_width_portfolio_page .et_pb_row {
    width: 92%;
}

.align-row-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.et-db #et-boc .et-l .et_pb_menu--style-centered .et_pb_menu__menu>nav>ul, .et-db #et-boc .et-l .et_pb_menu--style-centered .et_pb_menu__wrap {
    justify-content: flex-end;
}


.pulsante{
    display: block;
    box-shadow: 0 0 0 0 rgba(103, 255, 123, 1); /* altere a cor aqui */
    border-radius: 12px; /* altere o arrendondamento da borda aqui */
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: all 300ms ease-in-out;
}

.pulsante:hover{
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}

@-webkit-keyframes pulsing{
  to{
    box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
  }
}

@-moz-keyframes pulsing{
  to{
    box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
  }
}

@-ms-keyframes pulsing{
  to{
    box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
  }
}

@keyframes pulsing {
	  to{
		box-shadow: 0 0 0 20px rgba(103, 255, 123, 0); /* altere a cor aqui */
	  }
}

.pulsante{
	animation: pulsar 2s ease-in-out infinite;
}

@keyframes pulsar{
	0%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.050);
	}
	100%{
		transform: scale(1);
	}
}



