.faqs {
font-family: "TT Norms Pro", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
} .faqs .faq-item {
border: 1px solid #D4D4D4;
border-radius: 0;
background: #fff;
margin-bottom: .75rem;
padding: 0;
transition: background-color .55s cubic-bezier(.22,1,.36,1);
} .faqs .faq-summary {
list-style: none;
cursor: pointer;
display: flex;
align-items: center;
gap: .75rem;
padding: 21.5px 20px; font-weight: 600;
font-size: 1.125rem; line-height: 1.2;
color: #121820; transition: color .55s cubic-bezier(.22,1,.36,1);
}
.faqs .faq-summary::-webkit-details-marker { display: none; }
.faqs .faq-q { flex: 1 1 auto; } .faqs .faq-icon { flex: 0 0 auto; display: inline-flex; line-height: 0; }
.faqs .faq-icon-svg { width: 16px; height: 17px; overflow: visible; }
.faqs .faq-icon-svg .v-line,
.faqs .faq-icon-svg .h-line {
transition:
stroke .55s cubic-bezier(.22,1,.36,1),
opacity .55s cubic-bezier(.22,1,.36,1),
transform .55s cubic-bezier(.22,1,.36,1);
}
.faqs .faq-icon-svg .v-line { transform-origin: 50% 50%; transform: scaleY(1); opacity: 1; } .faqs .faq-summary:hover .faq-icon-svg .v-line,
.faqs .faq-summary:hover .faq-icon-svg .h-line { stroke: #4B5563; } .faqs .faq-item[open] { background: #fff; } .faqs details[open] > .faq-summary { color: #3332CB; } .faqs details[open] .faq-icon-svg .v-line { transform: scaleY(0); opacity: 1; } .faqs details[open] .faq-icon-svg .h-line { stroke: #3332CB; }  .faqs .faq-body {
height: 0;
overflow: hidden;
opacity: 0;
transform: translateY(-6px);
margin-top: 0;
transition:
height .55s cubic-bezier(.22,1,.36,1),
opacity .55s cubic-bezier(.22,1,.36,1),
transform .55s cubic-bezier(.22,1,.36,1),
margin-top .55s cubic-bezier(.22,1,.36,1);
will-change: height, opacity, transform, margin-top;
pointer-events: none;
}
.faqs .faq-body.is-open {
opacity: 1;
transform: translateY(0);
margin-top: 16px; pointer-events: auto;
} .faqs .faq-body-inner {
padding: 0 20px 20px 20px; color: #121820;
font-size: 1rem;
font-weight: 400;
line-height: 150%;
} .faqs .faq-summary:focus { outline: none; }
.faqs .faq-summary:focus-visible { outline: 2px solid #3332CB; outline-offset: 2px; } @media (prefers-reduced-motion: reduce) {
.faqs .faq-item,
.faqs .faq-summary,
.faqs .faq-icon-svg .v-line,
.faqs .faq-icon-svg .h-line,
.faqs .faq-body { transition: none; }
} @media (max-width: 767px) {
.faqs .faq-summary {
padding: 30px 16px; font-size: 1rem; }
.faqs .faq-body-inner {
padding: 0 16px 30px 16px; font-size: 1rem; }
}  .puestos-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
column-gap: 20px;
row-gap: 50px;
margin: 0;
padding: 0;
list-style: none;
}
.puesto-card {
position: relative;
border: 1px solid #D4D4D4;
padding: 60px 30px 30px 30px;
background: #fff;
text-align: center;
cursor: pointer;
outline: none;
}
.puesto-card:focus { box-shadow: 0 0 0 2px rgba(51,50,203,.35); }
.puesto-icon {
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -50%);
display: inline-block;
width: 90px; height: 90px;
line-height: 0;
}
.puesto-icon svg { width: 100%; height: 100%; display: block; }
.puesto-titulo {
margin: 0;
font-size: 1.25rem;
color: #1B1C1D;
font-weight: 500;
} .puesto-modal {
position: fixed;
inset: 0;
display: none;
z-index: 1000;
overflow: hidden; }
.puesto-modal.is-open {
display: flex;
align-items: center;
justify-content: center;
padding: 100px 0; }
.puesto-modal__overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,.6);
z-index: 1;
} .puesto-modal__dialog {
position: relative;
z-index: 2;
background: #fff;
width: 100%;
max-width: 700px;
padding: 40px 30px;
box-sizing: border-box;
overflow: visible; max-height: calc(100dvh - 200px); display: flex;
flex-direction: column;
} .puesto-modal__body {
flex: 1 1 auto;
overflow: auto;
overscroll-behavior: contain;
} .puesto-modal__closewrap {
position: absolute;
top: -40px;
right: -40px;
width: 40px; height: 40px;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
cursor: pointer;
background: rgba(255,255,255,.1); }
.puesto-modal__close {
position: relative;
width: 100%; height: 100%;
display: flex; align-items: center; justify-content: center;
background: transparent; border: 0; cursor: pointer;
font-size: 0; line-height: 1; color: #121820;
} .puesto-modal__close::before,
.puesto-modal__close::after {
content: "";
position: absolute;
width: 20px;
height: 2px;
background: #fff; border-radius: 1px;
}
.puesto-modal__close::before { transform: rotate(45deg); }
.puesto-modal__close::after  { transform: rotate(-45deg); } .puesto-modal__icon { width: 90px; height: 90px; margin: 0 auto 20px; line-height: 0; display: block; }
.puesto-modal__icon svg { width: 100%; height: 100%; display: block; }
.puesto-modal__title { margin: 0; font-size: 1.5rem; color: #121820; text-align: center; }
.puesto-modal__separator { border: 0; border-top: 1px solid #E5E5E5; margin: 20px 0; }
.puesto-modal__content { color: #1B1C1D; font-size: 1rem; }
.puesto-modal__cta-wrap { text-align: center; margin-top: 40px; }
.puesto-modal__cta {
display: inline-flex; align-items: center; justify-content: center;
height: 50px; padding: 0 24px; background: #3332CB; color: #fff;
font-size: 1rem; text-transform: uppercase; text-decoration: none;
}
.puesto-modal__cta:focus { outline: 2px solid rgba(51,50,203,.4); outline-offset: 2px; } @media (max-width: 900px) {
.puestos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
.puestos-grid { grid-template-columns: 1fr; } .puesto-modal.is-open { padding: 40px 20px; } .puesto-modal__dialog { max-height: calc(100dvh - 200px); }  .puesto-modal__closewrap { top: 8px; right: 8px; } .puesto-modal__close::before,
.puesto-modal__close::after {
background: #121820;
}
} .puesto-modal__close,
.puesto-modal__close:focus,
.puesto-modal__close:active,
.puesto-modal__close:focus-visible {
outline: none !important;
box-shadow: none !important;
} .puesto-modal__closewrap,
.puesto-modal__close {
pointer-events: auto;
} .puesto-modal__content p {
margin: 0 0 1rem;
}
.puesto-modal__content ul,
.puesto-modal__content ol { margin: 0 0 1rem 1.25rem;
padding-left: 1.25rem;
list-style-position: outside;
}
.puesto-modal__content ul { list-style-type: disc; }
.puesto-modal__content ul ul { list-style-type: circle; } .puesto-modal__content ol { list-style-type: decimal; }
.puesto-modal__content li {
margin: 0 0 .5rem;
} .puesto-modal__content .wp-block-list {
margin: 0 0 1rem 1.25rem;
padding-left: 1.25rem;
list-style: revert; }