/*---------------------------------------------------------------------------------------------------------------
   AUTOR          : DIEGO BUSTOS PEÑA
   FECHA CREACIÓN : 09-06-2026
   DESCRIPCIÓN    : CSS DEL BODY DE LA WEB
----------------------------------------------------------------------------------------------------------------*/

/* BODY GENERAL */
body {
    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #eef4fb 100%
        );
    min-height     : 100vh;
    display        : flex;
    flex-direction : column;
    font-family    : 'Inter', sans-serif;
}

/* MAIN CONTENT */
#main-content {
    flex    : 1;
    padding : 26px 0 40px;
}

/* LANDING */
.landing-wrapper {
    max-width     : 1140px;
    margin        : 0 auto;
    background    : #f7f7f7;
    border-radius : 26px;
    overflow      : hidden;
    box-shadow    : 0 2px 8px rgba(0,0,0,.08);
    }

.landing-content {
    padding : 36px;
}

.banner-overlay-top {
    height : 180px;
}

footer {
    margin-bottom : -50px;
}