.list-faq{
    .list-faq-item{
        background-color: var(--color-white);
        padding: 20px;
        border-radius: 5px;
        border: 1px solid #6961584D;
        .list-faq-item-title{
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            .list-faq-item-icon{
                width: 22px;
                height: 12px;
                transition: 0.3s ease;
            }
        }
        .list-faq-item-content{
            max-height: 0;
            overflow: hidden;
            transition: 0.5s ease-in-out;
            p, ul li, ol li{
                font-size: 16px;
            }
        }
        &.active{
            .list-faq-item-title{
                .list-faq-item-icon{
                    transform: rotate(180deg);
                }
            }
            .list-faq-item-content{
                max-height: 1000px;
                padding-top: 20px;
            }
        }
        &:not(:last-child){
            margin-bottom: 20px;
        }
    }
}
.section-contacto{
    position: relative;
    .contacto-bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: bottom right;
        }
    }
    .contacto-content{
        position: relative;
        z-index: 1;
    }
}
@media (min-width: 768px) {
    .list-faq{
        .list-faq-item{
            .list-faq-item-title{
                font-size: 22px;
            }
            .list-faq-item-content{
                p, ul li, ol li{
                    font-size: 16px;
                }
            }
        }
    }
}
@media (min-width: 1200px) {
    .list-faq{
        .list-faq-item{
            .list-faq-item-title{
                font-size: 24px;
            }
            .list-faq-item-content{
                p, ul li, ol li{
                    font-size: 20px;
                }
            }
        }
    }
    .section-contacto{
        .contacto-content{
            .btn{
                min-width: 340px;
            }
        }
    }
}