main {
    grid-template-rows: 115px 1fr 130px;
}

/* #region seccion-1 */
.seccion-1 {
    grid-row: 2;
    grid-column: 1 / -1;
    background-image: url("../assets/background-landing.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    height: 100%;
    min-height: 700px;
    position: relative;
    display: flex;
}

.seccion-1 .graf-section-der {
    position: absolute;
    right: 0;
    height: 100%;
    transform: scaleX(-1);
}

.snow-wrapper {
    position: absolute;
    top: 2em;
    right: 16em;
    width: 22em;
}

.snow {
    position: absolute;
    width: 100%;
    z-index: 1;
}

.snow-shadow {
    position: absolute;
    width: 100%;
    mix-blend-mode: multiply;
}

.seccion-1 h1 {
    position: absolute;
    top: 3em;
    right: 3em;
}

.seccion-1 .snow-mobile {
    display: none;
}

.seccion-1 .wrapper {
	width: 100%;
	height: 40%;
	position: absolute;
	display: grid;
	justify-items: center;
	align-self: end;
	padding: 1em;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1em;
	max-height: 18em;
}

.form-acceso {
    background-color: white;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 3em;
    border-radius: 15px;
    max-width: 25em;
    min-width: 20em;
}

.form-acceso header {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.form-acceso .input-label {
    display: flex;
    width: 100%;
    color: black;
    font-weight: 700;
    align-items: center;
    justify-content: space-between;
}

.form-acceso button {
    height: 2.5em;
    width: min-content;
    padding: 0 2em;
    justify-self: end;
}

.form-acceso .input-label input {
    height: 2.5em;
}

.form-acceso .form-wrapper {
	display: flex;
	padding: 1em;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
}

.intranet header {
    background-color: var(--color-azul-2);
}

.clientes header,
.proveedores header {
    background-color: var(--color-azul-2);
}

/* #endregion */

@media screen and (max-width: 1023px) {
    main {
        grid-template-rows: 130px repeat(2, min-content) 4em;
    }
}

@media screen and (max-width: 1024px) {
    .seccion-1 {
        background-image: url("../assets/FONDO.png");
        display: flex;
        justify-content: start;
        align-items: center;
        height: 68em;
        text-align: start;
        flex-direction: column;
        padding: 2em;
        gap: 2em;
    }

    .seccion-1 .wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: static;
        align-items: center;
        gap: 2em;
        padding: 0;
        max-height: initial;
    }

    .seccion-1 .snow-wrapper {
        display: none;
    }

    .seccion-1 h1 {
        position: initial;
        justify-self: center;
        grid-row: 1;
        margin: 0;
    }

    .seccion-1 .graf-section-der {
        display: none;
    }

    .form-acceso {
        min-width: initial;
    }

    .form-acceso .input-label {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .form-acceso .input-label input {
        width: 100%;
    }

    .form-acceso .form-wrapper {
        align-items: center;
        gap: 1em;
        display: flex;
        flex-direction: column;
    }
}