/**
 * Unified Navbar Spacing Standard
 * Garantiza 160px de espaciado entre navbar y contenido en todas las páginas
 *
 * Estrategia: Una única fuente de verdad para el espaciado
 * - Usa SOLO padding-top (no margin-top)
 * - 160px en todos los selectores principales
 * - !important para garantizar la aplicación
 */

/* Home Hero */
.hero-finvero {
    padding-top: 160px !important;
    padding-bottom: 80px;
}

/* Services & Product Pages Hero */
.origin-clean-hero {
    padding-top: 160px !important;
    padding-bottom: 0px !important;
}

/* Registration & Forms */
.reg-page {
    padding-top: 160px !important;
    padding-bottom: 80px;
}

/* Generic Page Wrapper */
.layout__main,
.page-wrapper,
.container-main {
    padding-top: 160px !important;
}

/* Microempresarias */
.layout__bannerMicro {
    padding-top: 160px !important;
}

/* Contact Page */
.section-lenders {
    padding-top: 160px !important;
}

/* Safe spacing helper */
.safe-top-fv {
    padding-top: 160px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-finvero,
    .origin-clean-hero,
    .reg-page,
    .layout__main,
    .layout__bannerMicro,
    .section-lenders,
    .safe-top-fv {
        padding-top: 160px !important;
    }
}

@media (max-width: 480px) {
    .hero-finvero,
    .origin-clean-hero,
    .reg-page {
        padding-top: 160px !important;
    }
}
