 @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

 /* ─── RESET & BASE ─── */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --orange: #E85D04;
     --dark: #111111;
     --gray-bg: #F4F3F0;
     --border: #E2E0DC;
     --text: #111111;
     --text2: #555555;
     --text3: #888888;
     --white: #ffffff;
     --font: 'Open Sans', system-ui, sans-serif;
     --cond: 'Open Sans', system-ui, sans-serif;
 }

 body {
     font-family: var(--font);
     color: var(--text);
     background: var(--gray-bg);
     font-size: 16px;
     line-height: 1.6;
 }
 
 main {
    margin-top: 122px;
 }


 /* ─── BREADCRUMB ─── */
 .bc {
     background: var(--white);
     border-bottom: 1px solid var(--border);
 }

 .bc-w {
     max-width: 1200px;
     margin: 0 auto;
     padding: 9px 32px;
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 12px;
     color: var(--text3);
 }

 .bc-w a {
     color: var(--text3);
     text-decoration: none;
 }

 .bc-w a:hover {
     color: var(--orange);
 }

 .bc-sep {
     color: var(--border);
 }

 .bc-cur {
     color: var(--text);
     font-weight: 600;
 }

 /* ─── PAGE LAYOUT ─── */
 .term-layout {
     max-width: 1280px;
     margin: 0 auto;
     padding: 32px 32px 64px;
     display: grid;
     grid-template-columns: 1fr 280px;
     gap: 32px;
     align-items: start;
 }

 /* Only style direct images under main.kt-glossary */
 .kt-glossary>img {
     display: block;
     width: 100%;
     max-width: 1280px;
     margin: 24px 0 32px 0;
     border-radius: 6px;
     object-fit: cover;
 }

 /* ─── MAIN CONTENT CARD ─── */
 .term-main {
     background: var(--white);
     border: 1px solid var(--border);
     padding: 36px 40px;
     min-width: 0;
 }

 /* ════════════════════════════════════════════
   CASCADE STYLES — .kt-glossary
   All selectors scoped to the company HTML
════════════════════════════════════════════ */

 /* paragraphs */
 .kt-glossary p {
     font-size: 15px;
     color: var(--text2);
     line-height: 1.75;
     margin-bottom: 14px;
 }

 .kt-glossary p:last-child {
     margin-bottom: 0;
 }

 /* links */
 .kt-glossary a {
     color: var(--orange);
     text-decoration: none;
     font-weight: 500;
     border-bottom: 1px solid rgba(232, 93, 4, 0.25);
     transition: border-color .15s;
 }

 .kt-glossary a:hover {
     border-color: var(--orange);
 }

 /* headings */
 .kt-glossary h2 {
     font-family: var(--cond);
     font-size: 26px;
     font-weight: 800;
     color: var(--text);
     line-height: 1.1;
     letter-spacing: -.2px;
     margin-top: 40px;
     margin-bottom: 14px;
     padding-top: 36px;
     border-top: 1px solid var(--border);
 }

 .kt-glossary h2:first-child {
     margin-top: 0;
     padding-top: 0;
     border-top: none;
 }

 .kt-glossary h3 {
     font-family: var(--cond);
     font-size: 18px;
     font-weight: 800;
     color: var(--text);
     margin-top: 24px;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .kt-glossary h3::before {
     content: '';
     display: inline-block;
     width: 3px;
     height: 16px;
     background: var(--orange);
     border-radius: 2px;
     flex-shrink: 0;
 }

 /* blockquote — two variants:
   first one = summary/question box (dark)
   second one = expert quote (orange accent) */
 .kt-glossary blockquote {
     background: var(--gray-bg);
     border-left: 4px solid var(--orange);
     padding: 18px 22px;
     margin: 0 0 20px;
     border-radius: 0 3px 3px 0;
 }

 .kt-glossary blockquote:first-child {
     background: var(--dark);
     border-left: 4px solid var(--orange);
     padding: 20px 24px;
     margin-bottom: 24px;
 }

 .kt-glossary blockquote:first-child strong,
 .kt-glossary blockquote:first-child em {
     color: #fff;
 }

 .kt-glossary blockquote:first-child strong em {
     color: var(--orange);
     font-style: normal;
 }

 .kt-glossary blockquote p {
     margin: 0;
     font-size: 15px;
     line-height: 1.65;
 }

 .kt-glossary blockquote:first-child p {
     color: rgba(255, 255, 255, .75);
 }

 .kt-glossary blockquote em {
     color: var(--text2);
     font-style: italic;
 }

 .kt-glossary blockquote strong em {
     color: var(--text);
     font-style: normal;
     font-weight: 700;
 }

 /* lists */
 .kt-glossary ul,
 .kt-glossary ol {
     padding-left: 0;
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 6px;
     margin-bottom: 16px;
 }

 .kt-glossary ul li,
 .kt-glossary ol li {
     font-size: 14px;
     color: var(--text2);
     line-height: 1.65;
     padding-left: 18px;
     position: relative;
 }

 .kt-glossary ul li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 9px;
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--orange);
 }

 .kt-glossary ol {
     counter-reset: ol-counter;
 }

 .kt-glossary ol li {
     counter-increment: ol-counter;
     padding-left: 32px;
 }

 .kt-glossary ol li::before {
     content: counter(ol-counter);
     position: absolute;
     left: 0;
     top: 0;
     width: 22px;
     height: 22px;
     background: var(--orange);
     color: #fff;
     font-size: 48px;
     font-weight: 900;
     color: var(--text);
     line-height: 1;
     letter-spacing: -0.5px;
     margin-bottom: 28px;
     padding-bottom: 18px;
     border-bottom: 1px solid var(--border);

     /* strong inside lists */
     .kt-glossary li strong {
         color: var(--text);
         font-weight: 700;
     }

     /* table */
     .kt-glossary table {
         width: 100%;
         border-collapse: collapse;
         font-size: 13px;
         margin: 16px 0 20px;
         display: block;
         overflow-x: auto;
     }

     .kt-glossary thead {
         background: var(--dark);
     }

     .kt-glossary th {
         padding: 11px 14px;
         text-align: left;
         font-size: 11px;
         font-weight: 700;
         text-transform: uppercase;
         letter-spacing: .06em;
         color: #fff;
         white-space: nowrap;
     }

     .kt-glossary td {
         padding: 12px 14px;
         border-bottom: 1px solid var(--border);
         color: var(--text2);
         vertical-align: top;
         line-height: 1.5;
     }

     .kt-glossary tbody tr:last-child td {
         border-bottom: none;
     }

     .kt-glossary tbody tr:hover {
         background: rgba(0, 0, 0, .02);
     }

     .kt-glossary tbody td:first-child {
         font-weight: 700;
         color: var(--text);
         white-space: nowrap;
     }

     /* span with inline orange color from WordPress (company markup) */
     .kt-glossary span[style*="color"] {
         color: var(--orange) !important;
     }

     /* FAQ section — <strong> question + text node answer pattern */
     /* We target the h2 "Preguntas frecuentes" section specifically */
     .kt-glossary h2:last-of-type~strong,
     .kt-glossary h2+strong {
         display: block;
     }

     /* Sources section */
     .kt-glossary h2:last-of-type~ul {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 4px 16px;
     }

     .kt-glossary h2:last-of-type~ul li {
         padding-left: 0;
         font-size: 12px;
     }

     .kt-glossary h2:last-of-type~ul li::before {
         display: none;
     }

     /* FAQ Accordion */

     .kt-glossary details {
         border-bottom: 1px solid var(--border);
         margin-bottom: 0;
     }

     .kt-glossary details:first-child {
         border-top: 1px solid var(--border);
     }

     .kt-glossary summary {
         padding: 18px 8px 18px 0;
         font-size: 17px;
         font-weight: 700;
         color: var(--text);
         cursor: pointer;
         list-style: none;
         display: flex;
         justify-content: space-between;
         align-items: center;
         user-select: none;
         transition: color .15s;
         position: relative;
     }

     .kt-glossary summary:hover {
         color: var(--orange);
     }

     .kt-glossary summary::-webkit-details-marker {
         display: none;
     }

     .kt-glossary summary::after {
         content: "+";
         font-size: 22px;
         font-weight: 400;
         color: var(--orange);
         margin-left: 16px;
         transition: transform .2s;
         flex-shrink: 0;
     }

     .kt-glossary details[open] summary::after {
         transform: rotate(45deg);
     }

     .kt-glossary .faq-content {
         padding: 0 4px 18px 4px;
         animation: slideDown .2s ease-out;
     }

     .kt-glossary .faq-content p {
         margin-bottom: 12px;
     }

     .kt-glossary .faq-content p:last-child {
         margin-bottom: 0;
     }

     .kt-glossary .faq-content table {
         margin: 12px 0;
     }

     @keyframes slideDown {
         from {
             opacity: 0;
             transform: translateY(-10px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }

     .kt-glossary h2:last-of-type~ul a {
         font-size: 11px;
         color: var(--text3);
         font-weight: 400;
         border-bottom: none;
         word-break: break-all;
     }

     .kt-glossary h2:last-of-type~ul a:hover {
         color: var(--orange);
     }

     /* ─── SIDEBAR ─── */
     .term-sidebar {
         position: sticky;
         top: 70px;
         display: flex;
         flex-direction: column;
         gap: 14px;
     }

     .sidebar-card {
         background: var(--white);
         border: 1px solid var(--border);
         padding: 20px;
     }

     .sidebar-card-dark {
         background: var(--dark);
         border: 1px solid var(--border);
         padding: 20px;
     }

     .sidebar-title {
         font-size: 11px;
         font-weight: 700;
         text-transform: uppercase;
         letter-spacing: .9px;
         color: var(--text3);
         margin-bottom: 14px;
     }

     .sidebar-az {
         display: flex;
         flex-wrap: wrap;
         gap: 4px;
     }

     .sidebar-az a {
         width: 28px;
         height: 28px;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 12px;
         font-weight: 700;
         color: var(--text2);
         background: var(--gray-bg);
         border: 1px solid var(--border);
         border-radius: 2px;
         text-decoration: none;
         transition: all .15s;
         border-bottom: none !important;
     }

     .sidebar-az a:hover {
         background: var(--orange);
         color: #fff;
         border-color: var(--orange);
     }

     .sidebar-cta-title {
         font-size: 17px;
         font-weight: 800;
         font-family: var(--cond);
         color: #fff;
         margin-bottom: 6px;
         letter-spacing: -.1px;
     }

     .sidebar-cta-sub {
         font-size: 12px;
         color: rgba(255, 255, 255, .5);
         margin-bottom: 16px;
         line-height: 1.5;
     }

     .sidebar-cta-btn {
         display: block;
         background: var(--orange);
         color: #fff;
         font-size: 13px;
         font-weight: 700;
         font-family: var(--cond);
         padding: 11px 16px;
         border-radius: 3px;
         text-decoration: none;
         text-align: center;
         letter-spacing: .3px;
     }

     .sidebar-cta-btn:hover {
         opacity: .9;
         color: #fff;
     }

     /* ─── RESPONSIVE ─── */
     @media (max-width: 900px) {
         .term-layout {
             grid-template-columns: 1fr;
         }

         .term-sidebar {
             position: relative;
             top: 0;
         }

         .kt-glossary h2 {
             font-size: 22px;
         }

         .kt-glossary h2:last-of-type~ul {
             grid-template-columns: 1fr;
         }
     }
 }

 /* GLOSSARY INDEX STYLES */
 body {
     font-family: var(--font);
     color: var(--text);
     background: var(--white);
     line-height: 1.6;
     font-size: 16px;
 }


 a:hover {
     text-decoration: underline;
 }

 .topbar {
     background: var(--dark);
     height: 50px;
     display: flex;
     align-items: center;
 }

 .topbar-w {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 32px;
     width: 100%;
     display: flex;
     align-items: center;
     gap: 28px;
 }

 .logo {
     font-family: var(--font);
     font-size: 19px;
     font-weight: 800;
     color: #fff;
     letter-spacing: .3px;
     text-decoration: none;
 }

 .logo span {
     color: var(--orange);
 }



 .reg {
     background: var(--orange);
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     padding: 7px 16px;
     border-radius: 3px;
     letter-spacing: .3px;
     margin-left: auto;
     flex-shrink: 0;
 }

 .reg:hover {
     opacity: .9;
     color: #fff;
 }

 .w {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 32px;
 }

 .page-sep {
     background: var(--orange);
     padding: 12px 32px;
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .page-sep-num {
     font-size: 28px;
     font-weight: 800;
     color: #fff;
     line-height: 1;
 }

 .page-sep-label {
     font-size: 16px;
     font-weight: 700;
     color: #fff;
 }

 .page-sep-desc {
     font-size: 12px;
     color: rgba(255, 255, 255, .7);
     margin-left: auto;
     font-style: italic;
 }

 .glos-hero {
     background: var(--dark);
     padding: 52px 0 48px;
 }

 .glos-hero-w {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 32px;
 }

 .glos-eyebrow {
     font-size: 11px;
     font-weight: 700;
     color: var(--orange);
     text-transform: uppercase;
     letter-spacing: 1.2px;
     margin-bottom: 12px;
 }

 .glos-hero h1 {
     font-size: 48px;
     font-weight: 800;
     color: #fff;
     line-height: 1;
     letter-spacing: -.5px;
     margin-bottom: 10px;
 }

 .glos-hero h1 em {
     color: var(--orange);
     font-style: normal;
 }

 .glos-hero p {
     font-size: 16px;
     color: rgba(255, 255, 255, .55);
     max-width: 520px;
     margin-bottom: 28px;
 }

 .glos-search-wrap {
     display: flex;
     gap: 0;
     max-width: 560px;
 }

 .glos-search-input {
     flex: 1;
     background: rgba(255, 255, 255, .08);
     border: 1px solid rgba(255, 255, 255, .15);
     border-right: none;
     border-radius: 3px 0 0 3px;
     padding: 12px 16px;
     font-size: 15px;
     color: #fff;
     font-family: var(--font);
     outline: none;
     transition: border-color .15s;
 }

 .glos-search-input::placeholder {
     color: rgba(255, 255, 255, .3);
 }

 .glos-search-input:focus {
     border-color: var(--orange);
 }

 .glos-search-btn {
     background: var(--orange);
     color: #fff;
     border: none;
     padding: 12px 20px;
     border-radius: 0 3px 3px 0;
     font-size: 14px;
     font-weight: 700;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 7px;
     font-family: var(--font);
 }

 .glos-search-btn:hover {
     opacity: .9;
 }

 .az-nav-wrap {
     background: var(--gray-bg);
     border-bottom: 1px solid var(--border);
     padding: 0;
     position: sticky;
     top: 0;
     z-index: 50;
 }

 .az-nav {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 32px;
     display: flex;
     align-items: center;
     gap: 0;
     overflow-x: auto;
 }

 .az-btn {
     min-width: 38px;
     height: 46px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 13px;
     font-weight: 700;
     color: var(--text2);
     border-right: 1px solid var(--border);
     cursor: pointer;
     transition: background .15s, color .15s;
     text-decoration: none;
     flex-shrink: 0;
 }

 .az-btn:hover {
     background: var(--white);
     color: var(--orange);
     text-decoration: none;
 }

 .az-btn.active {
     background: var(--orange);
     color: #fff;
 }

 .az-btn.empty {
     color: var(--border);
     cursor: default;
     pointer-events: none;
 }

 .glos-body {
     padding: 48px 0;
     background: var(--white);
 }

 .glos-letter-section {
     margin-bottom: 48px;
 }

 .glos-letter-section:last-child {
     margin-bottom: 0;
 }

 .glos-letter-header {
     display: flex;
     align-items: center;
     gap: 0;
     margin-bottom: 16px;
     border-bottom: 2px solid var(--border);
     padding-bottom: 12px;
 }

 .glos-letter-char {
     font-size: 48px;
     font-weight: 800;
     color: var(--orange);
     line-height: 1;
     width: 56px;
     flex-shrink: 0;
 }

 .glos-letter-count {
     font-size: 12px;
     color: var(--text3);
     align-self: flex-end;
     padding-bottom: 4px;
 }

 .glos-terms-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 6px;
     margin-bottom: 12px;
 }

 .glos-term-chip {
     font-size: 13px;
     font-weight: 500;
     color: var(--text);
     background: var(--gray-bg);
     border: 1px solid var(--border);
     padding: 5px 12px;
     border-radius: 2px;
     cursor: pointer;
     transition: background .15s, border-color .15s, color .15s;
     text-decoration: none;
 }

 .glos-term-chip:hover {
     background: var(--white);
     border-color: var(--orange);
     color: var(--orange);
     text-decoration: none;
 }

 .glos-term-chip.featured {
     background: var(--dark);
     color: #fff;
     border-color: var(--dark);
 }

 .glos-term-chip.featured:hover {
     background: var(--orange);
     border-color: var(--orange);
 }

 .glos-see-more {
     font-size: 12px;
     font-weight: 700;
     color: var(--orange);
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     border: none;
     background: none;
     font-family: var(--font);
     padding: 0;
     margin-top: 4px;
 }

 .glos-see-more:hover {
     text-decoration: underline;
 }

 .glos-hidden {
     display: none;
 }

 .glos-hidden.open {
     display: flex;
 }

 .glos-cta-inline {
     background: var(--dark);
     padding: 28px 32px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     margin: 48px 0;
 }

 .glos-cta-inline h3 {
     font-size: 20px;
     font-weight: 800;
     color: #fff;
     margin-bottom: 5px;
 }

 .glos-cta-inline p {
     font-size: 13px;
     color: rgba(255, 255, 255, .5);
 }

 .glos-cta-btn {
     background: var(--orange);
     color: #fff;
     font-size: 14px;
     font-weight: 700;
     padding: 12px 24px;
     border-radius: 3px;
     text-decoration: none;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .glos-cta-btn:hover {
     opacity: .9;
     color: #fff;
 }