/* ===== TRANSITION ONDULANTE FINE ===== */
.section-divider-wave {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    z-index: 100;
}

.section-divider-wave svg {
    width: 100%;
    height: 40px;
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
}

/* Responsive pour les transitions */
@media (max-width: 768px) {
    .section-divider-wave svg {
        height: 30px;
        top: -15px;
    }
}

@media (max-width: 480px) {
    .section-divider-wave svg {
        height: 25px;
        top: -12px;
    }
} 