.faqs {
    display: flex;
    flex-direction: column;
    width: min(60%, 720px);
    margin: 0 auto;
}

.faqs article {
    border-bottom: 2px solid #000;
    cursor: pointer;
}

.faqs .pregunta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    transform: translate(0);
    transition: .4s all ease-out;
}

.faqs .pregunta:hover {
    transform: translateX(10px);
}

.faqs .pregunta:hover .flecha {
    transform: translateX(-20px);
}

.faqs .pregunta p {
    margin-bottom: 0rem;
    margin-top: 1rem;
    font-weight: 700;
}

.faqs .respuesta {
    overflow-y: hidden;
    max-height: 0px;
    opacity: 0;
    transition: .6s all ease-out;
    padding-bottom: 0.5rem;
}

.faqs .respuesta span {
    color: var(--c2-medium);
    font-size: 16px;
}

.faqs .respuesta.show {
    max-height: 500px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.faqs .pregunta .flecha {
    transform: rotate(0deg);
    transition: .6s all ease-out;
}

.faqs .pregunta .flecha.rotate {
    transform: rotate(90deg);
}

.mas-dudas {
    display: flex;
    background-color: var(--c3-light);
    flex-direction: row;
}

.mas-dudas article {
    flex: 1;
    display: flex;
    align-items: center;
}

.mas-dudas article:first-child div {
    height: 100%;
    width: 100%;
}

.mas-dudas article:first-child div img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.mas-dudas article .unete {
    margin-bottom: 0;
    text-transform: uppercase;
}

.mas-dudas article h3 {
    font-size: min(3vw, 40px);
    padding-top: 0.5rem;
}
.faqs-container{
  margin-bottom: 4rem;
}
.faqs-container .upper{
  text-transform: uppercase;
  font-size: 16px;
}
.faqs-container .faqs-description{
  width:40%;
  margin-inline: auto;
}
.faqs-container button a{
  color: white;
}

@media(max-width: 768px) {
    .faqs {
        width: 100%;
    }
    .mas-dudas {
        flex-direction: column;
    }
    .mas-dudas article h3 {
        line-height: min(9vw, 60px);
    }
    .faqs-container .faqs-description{
        width: 80%;
    }
}
