body p {
    font-size: 16px !important;
}
.link-download {
    font-weight: 600;
    color: #ef426f;
}
    .link-download:hover {
        text-decoration: underline;
    }
.formulario-landing {
    margin-bottom: 0px;
}
.formulario-landing input, .formulario-landing select {
    border-radius: 6px !important;
}
.formulario-landing input[type="file"] {
    border: none !important;
    padding: 0 !important;
    margin-top: 20px;
    background-color: transparent !important;
}
.formulario-landing input[type=submit] {
    font-family: "Gilroy-Black";
    border: 0;
    background-color: #440099;
    color: #ffffff;
    font-size: 16px;
    height: 50px;
    display: block;
    margin: 20px auto 0 auto;
    padding: 0 60px 0 60px;
    text-align: center;
    border-radius: 0;
    width: 100%;
}
.formulario-landing label {
    color: #666;
    font-size: 16px;
    float: left;
}
.form-check .form-check-input {
    float: left;
    height: 24px;
    margin-right: 10px;
}
.field-group {
    margin-bottom: 20px;
    padding: 0 20px;
}
.form-check-inline {
    display: inline-block !important;
}
/* file upload button */
input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: rgba(180, 180, 180, .5);
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: background-color 200ms;
}
  
/* file upload button hover state */
input[type="file"]::file-selector-button:hover {
    background-color: #f3f4f6;
}
  
/* file upload button active state */
input[type="file"]::file-selector-button:active {
    background-color: #e5e7eb;
}
.wpcf7 form.valid .wpcf7-response-output {
    color: #440099;
}
.wpcf7 form.invalid .wpcf7-response-output {
    color: #ef426f;
}
.wpcf7-spinner {
    display: none;
}
.bg-gray {
    background-color: rgba(221, 229, 237, 0.2);
    padding-top: 20px;
}
.color-violet {
    color: #440099;
}
.header-group {
    font-family: 'Gilroy-ExtraBold', sans-serif;
    font-size: 24px;
    padding-bottom: 10px;
}

.row {
    display: flex;
    flex-direction: column;
    align-self: stretch !important;
    width: 100%;
    justify-content: space-between;
    row-gap: 10px;
    margin-bottom: 10px;
}
.col-12 {
    width: 100%;
}
.col-md-6 {
    width: 100%;
}
.col-lg-4 {
    width: 100%;
}

p.label {
    font-size: 15px !important;
    font-weight: 600;
}

@media (min-width: 991px) {
    body p {
        font-size: 18px !important;
    }
    .formulario-landing {
        padding: auto 20px;
    }
    .formulario-landing input[type=submit] {
        margin: 20px 0 0 0;
        width: 240px;
    }
    .row {
        flex-direction: row !important;
        column-gap: 10px;
        align-items: stretch;
        justify-content: space-between;
        align-self: flex-start !important;
    }
    .col-md-6 {
        width: 50% !important;
    }
}

@media (min-width: 1279px) {
    .row {
        align-self: flex-start !important;
        justify-content: center;
        align-items: flex-start;
        column-gap: 20px;
    }
    .col-lg-4 {
        width: 33.3% !important;
    }
}