.swiper-slide {
    position: relative;
    height: 100vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 20em 20rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 0 20px;
}

.overlay h1 {
    font-size: 3rem;
    margin: 0;
    padding-top: 30rem;
}

.overlay .btn{
    border-radius: 50px;
    background-color: var(--primary-color-rgb);
    width: 200px;
    padding: 1rem;
    color: #fff !important;
    font-weight: bold;
    font-family: 'Poppins Medium' !important;
}

.overlay p {
    font-size: 1rem;
    margin-top: 3rem;
}
.swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wave{
    position: relative; /* Ou absolute, dependendo da estrutura */
    margin-top: -200px;
    z-index: 99999 !important; /* Aumentei para garantir que fique acima de tudo */
    width: 100%;
}
