.contacto {

    .formulario {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 40px;
        gap: 20px;

        .grupo-formulario {
            display: flex;
            flex-direction: column;
            gap: 5px;

            &.mensaje {
                grid-column: span 2;
            }

            &.error {
                grid-column: span 2;
                background: var(--primario);
                color: #fff;
                padding: 16px;
                border-radius: 5px;
                font-weight: 500;
            }

            &.enviar {
                grid-column: span 2;
                display: flex;
                justify-content: center;
                align-items: center;
                padding-bottom: 20px;
            }

            label {
                font-size: 18px;
                font-weight: 500;
            }



            input {
                width: 100%;
                padding: 15px;
                border-radius: 5px;
                border: none;
                font-size: 18px;
                font-family: 'Inter', sans-serif;
                background: var(--shade-1);
            }

            textarea {
                width: 100%;
                height: 300px;
                padding: 15px;
                border-radius: 5px;
                border: none;
                font-size: 18px;
                font-family: 'Inter', sans-serif;
                background: var(--shade-1);
            }

            input:hover,
            input:focus,
            textarea:hover,
            textarea:focus {
                outline: 2px solid var(--primario);
            }

            textarea {
                resize: vertical;
                min-height: 80px;
                max-height: 200px;
            }

            .dark & input,
            .dark & textarea {
                background: var(--shade-10);
                color: var(--shade-1);
            }

            .boton {
                background: var(--primario);
                color: #fff;
                border: none;
                cursor: pointer;
                border-radius: 100px;
                font-weight: 500;
                padding: 14px 20px;
                display: flex;
                gap: 10px;
                align-items: center;
                transition: 0.3s ease all;
                text-decoration: none;

                &:hover {
                    background: var(--primario-hover);
                    text-decoration: none;
                }

                &.dark & {
                    color: #fff;
                }
            }
        }

        @media screen and (max-width: 768px) {
            & {
                width: 100%;

                .grupo-formulario {
                    label {
                        font-size: 14px;
                    }

                    textarea {
                        font-size: 14px;
                    }

                    input {
                        font-size: 14px;
                    }
                }

            }
        }

        @media screen and (max-width: 576px) {
            & {
                grid-template-columns: 1fr;

                .grupo-formulario {

                    &.mensaje,
                    &.error,
                    &.enviar {
                        grid-column: span 1;
                    }
                }
            }
        }
    }

    .ubicacion {
        /* text-align: center; */
        /* padding: 20px; */
        background-color: #fff;
        /* width: 1200px;
        max-width: 600px; */

        h2 {
            font-size: 30px;
        }

        .mapa {
            height: 350px;
            padding-top: 20px;
            margin: auto;

            iframe {
                width: 100%;
                height: 100%;
                border: 0;
                border-radius: 12px;
            }
        }

        @media screen and (max-width: 768px) {
            & {
                h2 {
                    font-size: 16px;
                }

            }
        }
    }
}