/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f5f5;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}


.navbar {
    width: 1920px;
    height: 75.41px;
    padding-left: 48px;
    padding-right: 48px;
    background: #90EE90;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.10), 0px 1px 3px rgba(0, 0, 0, 0.10)
}

.nav-content .brand {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* LAYOUT PRINCIPAL */
.main-layout {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 120px); /* navbar + footer */
}

/* LADO DEL CONTENIDO (60%) */
.content-side {
    width: 60%;
    background: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* LADO DE LA IMAGEN (40%) */
.image-side {
    width: 40%;
    overflow: hidden;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FOOTER */
.footer {
    width: 100%;
    background: #2ecc71;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    margin-top: auto;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .main-layout {
        flex-direction: column;
    }

    .content-side {
        width: 100%;
        padding: 30px;
    }

    .image-side {
        width: 100%;
        height: 250px;
    }
}
