.elementor-1255 .elementor-element.elementor-element-690f630{--display:flex;}.elementor-1255 .elementor-element.elementor-element-de1bffd{width:100%;max-width:100%;top:0px;}.elementor-1255 .elementor-element.elementor-element-de1bffd > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-1255 .elementor-element.elementor-element-de1bffd.elementor-element{--order:-99999 /* order start hack */;--flex-grow:0;--flex-shrink:0;}body:not(.rtl) .elementor-1255 .elementor-element.elementor-element-de1bffd{left:0px;}body.rtl .elementor-1255 .elementor-element.elementor-element-de1bffd{right:0px;}@media(max-width:767px){.elementor-1255 .elementor-element.elementor-element-de1bffd > .elementor-widget-container{margin:9px 9px 9px 9px;}}/* Start custom CSS for html, class: .elementor-element-de1bffd *//* Estilo para garantir que as ondas fiquem no final do container */
.banner-wave {
    position: relative;  /* Garante que o container de ondas seja referência para o posicionamento */
    width: 100%;
    height: 100%;
}

.banner-wave svg {
    position: absolute;  /* Faz a onda ficar fixa dentro do container */
    bottom: 0;  /* Garante que a onda fique no final do container */
    width: 100%;
    height: 100%;
    max-height: 350px;  /* Ajusta o tamanho das ondas no desktop */
}

/* Ajuste para telas menores (mobile) */
@media (max-width: 768px) {
    .banner-wave svg {
        max-height: 400px;  /* Aumenta a altura das ondas no mobile */
        transform: scale(2) translateY(30px); /* Aumenta a escala e move as ondas para baixo */
    }
}

/* Animação de movimento das ondas */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.40, .5, .35, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}/* End custom CSS */