main {
    grid-template-rows: 115px 1fr 130px;
}

.seccion-1 {
    grid-row: 2;
    grid-column: 1 / -1;
    background-image: url("../assets/FrioFort_PersonasSaludando.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    background-position-x: -15em;
    min-height: 700px;
}

.seccion-1 .form-contacto .asunto {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1em;
}

.seccion-1 .opt-asunto {
	display: flex;
	height: min-content;
}

.seccion-1 .graf-section-der {
    position: absolute;
    right: 0;
    height: 100%;
    transform: scaleX(-1);
}

.card-contacto {
    position: absolute;
    bottom: 0;
    color: white;
    height: min-content;
    z-index: 1;
    mix-blend-mode: hard-light;
}

.card-contacto .texto {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#frame-modal img {
    width: 100%;
    min-width: 15em
}

.card-contacto h2 {
    margin: 0;
}

.card-contacto .background {
    background-color: var(--color-azul-2);
    mix-blend-mode: hard-light;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 0 15px 0 0;
}

.form-contacto {
    display: flex;
    flex-direction: column;
    width: 400px;
    background-color: var(--color-azul-1);
    justify-content: space-between;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 10px;
    color: white;
    margin-left: 80px;
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translate(0, -50%);
    gap: 10px;
    z-index: 1;
}

.form-contacto .texto-principal {
    margin: 5px 0;
}

.form-contacto label {
    font-size: 15px;
}

.form-contacto .contacto-textarea {
    resize: none;
}

.form-contacto .btn-enviar {
    border-radius: 4px;
    background-color: var(--color-azul-2);
    color: white;
    font-weight: 600;
    border: 1px solid var(--fa-style-family-classic);
    cursor: pointer;
    width: 100%;
    height: 35px;
}

.form-contacto .btn-enviar:hover {
    background-color: var(--color-celeste-oscuro);
}

#frame-modal {
    position: fixed;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    z-index: 6;
}

#overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 6;
    background-color: #58595b90;
}

.seccion-contactanos {
    color: var(--color-azul-3);
}

@media screen and (max-width: 1050px) {
    .card-contacto {
        width: 20em;
    }

    .seccion-1 {
        background-image: url("../assets/FONDO.png");
        background-size: cover;
        background-position-x: initial;
    }

    .seccion-1 .graf-section-der {
        display: none;
    }
}

@media screen and (max-width: 810px) {
    main {
        grid-template-rows: 130px 1fr;
    }

    .seccion-1 {
        display: flex;
        flex-direction: column;
        height: min-content;
        justify-content: space-between;
        align-items: center;
        padding: 2em;
        gap: 2em;
    }

    .form-contacto {
        margin: 0;
        position: static;
        transform: initial;
        width: 100%;
        max-width: 30em;
    }

    .card-contacto {
        position: relative;
        width: 100%;
    }

    .card-contacto .background {
        border-radius: 15px;
    }
}