/* ===================================== 
   SEPARADOR ENTRE SECCIONES
   Agrega esto a tu CSS
   ===================================== */

.section-separator {
    height: 80px;
    background: transparent;
    display: block;
    clear: both;
}

/* Responsive - Ajustar altura del separador */
@media screen and (max-width: 768px) {
    .section-separator {
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .section-separator {
        height: 40px;
    }
}