#s-preguntas {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
    background-image: url(/src/img/banners/4.webp);
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

#s-preguntas h1{
    font-size: 70px;
    font-weight: bold;
    color: var(--rosado);
    margin-bottom: 10px;
    margin-top: 80px;
}

#s-preguntas h2{
    font-size: 40px;
    font-weight: bold;
    color: var(--azul);
}


.content-preg-pet {
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.pf-item.active p {
	display: block;
}

.pf-item {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: ease all 0.2s;
    border-radius: 10px;
}

.pf-item.active {
	margin: 15px 0px;
	border-radius: 10px;
}

.pf-item.active .pregunta {
	border-bottom: 1px solid #d3d3d3;
    border-radius: 10px;
    border: 1px solid var(--rosado);
}

.pf-item.active .pregunta > span {
    color: var(--rosado);
}

.pf-item.active .pregunta > svg {
	transform: rotate(-180deg);
}

.pf-item.active .pregunta > svg path{
    fill: var(--rosado);
}

.pf-item p {
	display: none;
	color: #606060;
	font-size: 20px;   
    font-weight: bold;
	padding: 10px 10px 10px 50px;
	margin-bottom: 0px;
    text-align: start;
    width: 100%;
}

.pf-item p a{
	color: var(--rosado);
	font-size: 20px;   
}

.pregunta {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 20px 20px 20px 90px;
    margin: 0px;
    background-color: #DCDCDB;
    position: relative;
	border-radius: 10px;
}

.pregunta span {
	color: #606060;
	font-size: 22px;
    font-weight: bold;
}

.pregunta >svg {
	width: 35px;
    height: 35px;
}

.icon-pregunta {
    position: absolute;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -10px;
    border-radius: 15px 50% 50% 15px;
    background-color: var(--azul-claro);
    z-index: 1;
}

.icon-pregunta svg {
    width: 90%;
    fill: #fff;
    padding-right: 10px;
}

@media screen and (max-width: 1024px) {
    #s-preguntas h1 {
        font-size: 35px;
        margin-top: 15px;
    }

    #s-preguntas h2 {
        font-size: 25px;
        text-align: center;
    }

    .pregunta span {
        font-size: 18px;
        width: calc(100% - 30px);
    }

    .icon-pregunta {
        height: 30px;
        width: 30px;
        border-radius: 8px 50% 50% 8px;
    }

    .icon-pregunta svg {
        padding-right: 4px;
    }

    .pregunta {
        padding: 10px 10px 10px 30px;
    }

    .pregunta >svg {
        width: 20px;
        height: 20px;
    }

    .pf-item p {
        display: none;
        color: #606060;
        font-size: 16px;
        font-weight: bold;
        padding: 10px 10px 10px 20px;
        margin-bottom: 0px;
        text-align: start;
        width: 100%;
    }

    .pf-item p a{
        font-size: 16px;
    }

    .content-preg-pet {
        width: 90%;
        gap: 20px;
    }
}