section.contenedor_faq.seccion_fq{
    background: transparent linear-gradient(0deg, #FAFAFB 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    max-width: 100vw;
    position: relative;
/*     left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw; */
}
.faq-q{
    font-weight: 300;
    font-size: 1rem;
    
}

.faq-a {
	overflow: hidden;
	height: 0;
	opacity: 0;
	transform: translateY(-10px);
	transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
	box-sizing: border-box;
	background-color: #fff !important;
}

.faq-a.show {
	opacity: 1;
	transform: translateY(0);
}
.faq-a p{  
    padding: 5px;
}

.faq-a.hide {
   
    animation: hideUp 0.5s ease-in-out forwards;
}
.contenedorTexto {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5em 0;
    text-align: left !important;
    padding: 20px 20px 20px 10px !important;
    border-bottom: 1px solid #e0e0e0 !important;
    cursor: pointer !important;
    position: relative !important;
    margin: 0 !important;   
}

.faq-icon img {
    width: 31px;
    height: 31px;
    margin-left: 10px;
}

.faq-icon .icon-minus {
    display: none;
}

.faq-q.active .icon-plus {
    display: none;
}

.faq-q.active .icon-minus {
    display: inline;
}

/*************************************/

.faq-container {
    width: 85%;
    max-width: 800px;
    margin: 100px auto 0;
    padding-bottom: 50px;
    margin-top: 5%;
}
.tit_fq{
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}
.faq-container h4 {     
    margin-bottom: 20px;
    color: #000;
}

.contenedorTexto::after {
    font-weight: bold !important;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;     
     font-size: 1.5em !important;
}



.contenedorTexto:hover {
    background-color:  #fff2e6 !important;
    border-color: var(--color2) !important;
}
/*************************************/
@keyframes revealDown {
    0% {
        clip-path: inset(0 0 100% 0);    /* oculto desde abajo */
        opacity: 0;
        transform: translateY(-10px);    /* ligeramente arriba */
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px);
    }
    100% {
         clip-path: inset(0 0 0 0);       
        opacity: 1;
        transform: translateY(0);        /* en su sitio */
    }
}

@keyframes hideUp {
    0% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        clip-path: inset(0 0 100% 0);
        opacity: 0;
        transform: translateY(-10px);
    }
}


.faq-container .pregunta{
    background-color: var(--color2);
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    padding: 10px;
}

.interrogacion{
    color: var(--color1);
    font-size: 3rem;
     font-weight: 300;
     width: 10%;
}
.txt_faq{
    font-size: 1rem;
    font-weight: 300;
    width: 100%;
    margin: auto;
    color: var(--color1);
}
.div_int{
    width: 15%;
    margin: auto;
    text-align: center;
}
.contenido_preg{
    width: 85%;
    margin: auto;
    padding-bottom: 10px;
    padding-top: 10px;
}
.txt_faq span{
    margin-right: 5px;
    font-weight: bold;
}

.contenedor_pregunta{
    margin-top: 20px;
 
}
.faq-q strong {
    display: inline;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .contenido_preg{
        width: 90%;
    }
    .div_int{
        width: 10%;
    }
    .txt_faq{
        width: 95%;
        color: var(--color1);
        
    }
}
@media (min-width: 1024px) {
    .tit_fq{
        font-size: 2em;
    }
    .faq-container {
    width: 85%;
    max-width: 85%;
}
}
@media (min-width: 1440px) {
    .faq-container {
    width: 85%;
    max-width: 85%;
}
}


@media (max-width: 768px) {
    .faq-container {     
         padding-top:20px ;  
        width: 90%;
    }
}

@media (max-width: 640px) {
    .faq-container {
        /* width: 95%; */
        margin: 0 auto 0;
        padding-bottom: 30px;
    }
} 
@media (max-width: 425px) {
    .faq-container {
        padding: 0px;
    }
    .tit_fq {
        text-align: center;
        color: #000;
        margin-bottom: 20px;
        font-size: 2rem;
        font-weight: 800;
    }
    .faq-container h4 {
        margin-bottom: 20px;
        color: #000;
        font-size: 1.3rem;
    }
} 