*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* outline: 1px solid red !important; */
}

body {
    font-family: "Nunito Sans", sans-serif;
    background: var(--shade-0);
}

a {
    text-decoration: none;
    color: var(--shade-10);

    &:hover {
        text-decoration: underline;
    }
}

.boton {
    display: inline-flex;
    padding: 10px 15px;
    background: var(--azul-primario);
    transition: 0.2s ease all;
    color: #fff;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    gap: 10px;

    .icono {
        width: 18px;
        height: 18px;

        svg {
            width: 100%;
            height: 100%;
        }
    }

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

.contenedor {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    z-index: -1;

}

.titulo {
    font-size: 30px;
    font-weight: 700;
    color: var(--shade-10);
    text-align: left;
    margin-bottom: 40px;

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

.subtitulo {
    font-size: 18px;
    color: var(--shade-10);
    text-align: justify;
    padding-bottom: 20px;

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

.subtitulo-servicios {
    font-size: 18px;
    color: var(--shade-10);
    text-align: justify;
    padding-top: 40px;
    padding-bottom: 20px;

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

.encabezado-sectores {
    font-size: 30px;
    color: var(--shade-10);
    padding: 30px 0px 60px 0px;
    text-align: center;

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

.mensaje-exito {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    color: var(--primario);
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid black;
    padding: 100px 0 100px 0;
}

/* .contacto {

    .formulario {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        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;
            }

            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%;
            }
        }

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

                .grupo-formulario {

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