.servicios-faq {
padding: var(--space-9) var(--container-padding);
background-color: var(--color-bg);
padding-top: 20px;
}
.servicios-faq__contenedor {
max-width: 900px;
margin: 0 auto;
text-align: left;
}
.servicios-faq__contenedor .servicios-faq__titulo {
color: #000000;
font-family: var(--font-family-base);
font-size: var(--font-size-h2);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
letter-spacing: var(--tracking-tight);
text-align: center;
text-transform: uppercase;
margin: 0 0 var(--space-3);
}
@media screen and (max-width: 767px) {
.servicios-faq__contenedor .servicios-faq__titulo {
font-size: 34px;
}
}
.servicios-faq__parrafo {
color: #000000;
font-family: var(--font-family-base);
font-size: var(--font-size-body);
font-weight: var(--font-weight-regular);
line-height: var(--line-height-base);
text-align: center;
margin: 0 auto var(--space-7);
max-width: 720px;
}
.servicios-faq__lista {
display: flex;
flex-direction: column;
}
.servicios-faq__item {
border-bottom: 1px solid #333333;
}
.servicios-faq__item:first-child {
border-top: 1px solid #333333;
}
.servicios-faq__pregunta {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-4);
padding: var(--space-5) 0;
cursor: pointer;
list-style: none;
color: #000000;
font-family: var(--font-family-base);
font-weight: var(--font-weight-semibold);
transition: color 0.2s ease;
}
.servicios-faq__pregunta:hover,
.servicios-faq__item[open] .servicios-faq__pregunta {
color: var(--color-brand);
}
.servicios-faq__pregunta::-webkit-details-marker {
display: none;
}
.servicios-faq__pregunta-titulo {
flex: 1;
margin: 0;
color: inherit;
font-family: inherit;
font-size: 1rem;
font-weight: inherit;
line-height: var(--line-height-snug);
letter-spacing: var(--tracking-normal);
text-transform: uppercase;
}
.servicios-faq__icono {
position: relative;
width: 18px;
height: 18px;
flex-shrink: 0;
}
.servicios-faq__icono::before,
.servicios-faq__icono::after {
content: "";
position: absolute;
background-color: var(--color-brand);
transition: transform 0.3s ease, opacity 0.3s ease;
}
.servicios-faq__icono::before {
top: 50%;
left: 0;
width: 100%;
height: 2px;
transform: translateY(-50%);
}
.servicios-faq__icono::after {
top: 0;
left: 50%;
width: 2px;
height: 100%;
transform: translateX(-50%);
}
.servicios-faq__item[open] .servicios-faq__icono::after {
transform: translateX(-50%) rotate(90deg);
opacity: 0;
}
.servicios-faq__respuesta {
padding: 0 0 var(--space-5);
color: #000000;
font-family: var(--font-family-base);
font-size: var(--font-size-body);
font-weight: var(--font-weight-regular);
line-height: var(--line-height-base);
}
.servicios-faq__respuesta-contenido p {
margin: 0 0 var(--space-3);
color: inherit;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
}
.servicios-faq__respuesta-contenido p:last-child {
margin: 0;
}
@media (max-width: 921px) {
.servicios-faq {
padding: var(--space-7) var(--container-padding);
}
.servicios-faq__titulo {
font-size: var(--font-size-h3);
}
}
@media (max-width: 544px) {
.servicios-faq {
padding: var(--space-6) var(--container-padding);
}
.servicios-faq__pregunta {
padding: var(--space-4) 0;
}
.servicios-faq__pregunta-titulo {
font-size: 0.95rem;
}
}