.fondoPqrs {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../img/fondoPqrs.png) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: .3;
}
.oculto {
    display: none;
}
.pqrs {
    position: relative;
    min-height: 430px;
    padding-top: 130px;
    padding-bottom: 130px;
}
.formPqrsContainer {
    width: 740px;
    position: relative;
}
.formPqrs {
    padding: 20px 30px;
    border-radius: 24px;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, .1);
    overflow: hidden;
}
input:focus + label, textarea:focus + label, select:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label,
select:not(:placeholder-shown) + label {
    transform: scale(0.9) translateY(-5px);
    color: #7E7F80;
}
input:hover + label, textarea:hover + label {
    color: #3F3F3F;
}
input:hover ~ .formLine, textarea:hover ~ .formLine  {
    background-image: linear-gradient(to right, #8F1A14 0%, #FF322C 50%, #FF6661 100%);
    opacity: 1;
}
select option {
    padding: 20px;
    height: 20px;
}
.formPT {
    padding-bottom: 13px;
    border-bottom: 1px solid white;
}
.formPT h2 {
    font-size: 28px;
    line-height: 34px;
    margin: 0;
    position: relative;
}
.formPT .smallT {
    position: absolute;
    margin: 0;
    top: 0;
    right: 0;
    line-height: normal;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
}
.iconPqrs {
    left: -30px;
    top: -50px;
    background-color: rgba(0, 0, 0, .1);
}
.iconPqrs img {
    width: 28px;
    height: auto;
}
.formNotificar {
    width: 100%;
}
.dropdown .option {
    position: absolute;
    width: 100%;
    background: #fafafa;
    border-radius: 5px;
    z-index: 1;
    overflow: hidden;
    display: none;
    box-shadow: 0px 10px 70px rgb(253 89 84 / 15%);
}
.dropdown .option div {
    font-family: 'Lato', sans-serif;
    color: #3F3F3F;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    cursor: pointer;
}
.dropdown .option div:hover {
    background: #F7F7F7;
    color: #FF322C;
}
.dropdown.active .option {
    display: block;
}
.dropdown svg {
    position: absolute;
    opacity: 1;
    right: 15px;
    bottom: 15px;
    transform: rotate(90deg);
}
.dropdown.active svg {
    transform: rotate(-90deg);
}
@media screen and (max-width: 480px) {
    .formPqrs {
        padding: 0 15px;
    }
}