
        /* ================================
   FUNCTIONS ROOT — Yellow Tokens Style
   ================================ */

        /* ---------- HERO ---------- */
        .hero-functions {
            background: var(--brand-blue-hero);
            color: #fff;
            padding: 80px 0 60px;
        }

        .hero-functions .wrap {
            display: block;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-functions h1 {
            color: var(--brand-yellow);
            font-family: "Dosis", sans-serif;
            font-size: clamp(32px, 4.6vw, 54px);
            line-height: 1.05;
            margin: 0 0 20px;
            font-weight: 500;
        }

        .hero-functions .lead {
            font-size: clamp(18px, 1.8vw, 24px);
            font-family: "DM Sans", sans-serif;
            opacity: .95;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .hero-functions .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        /* ---------- INTRO SECTION ---------- */
        .intro-section {
            padding: 70px 0 10px;
        }

        .intro-section .section-title {
            font-family: "Dosis", sans-serif;
            color: var(--brand-blue);
            margin-bottom: 20px;
            text-align: center;
        }

        .intro-section .section-lead {
            font-family: "DM Sans", sans-serif;
            color: var(--ink-900);
            font-size: 18px;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: center;
        }

        .intro-section .aeo-explainer {
            max-width: 760px;
            font-size: 17px;
            line-height: 1.5;
            margin: 0 auto;
            color: var(--ink-900);
            font-family: "DM Sans", sans-serif;
            text-align: center;
        }

        /* ---------- ROLES GRID ---------- */
        .roles-section {
            padding: 70px 0;
        }

        .roles-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .roles-header h2 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(26px, 3vw, 36px);
            color: var(--brand-blue);
            margin-bottom: 8px;
        }

        .roles-header p {
            font-family: "DM Sans", sans-serif;
            font-size: 18px;
            color: var(--ink-900);
            max-width: 720px;
            margin: 0 auto;
        }

        .roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .role-card {
            background: #fff;
            border: 1px solid #eef1ff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .role-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
        }

        .role-image {
            height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9ff;
        }

        .role-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .role-content {
            padding: 20px 24px 28px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .role-content h3 {
            font-family: "Dosis", sans-serif;
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--brand-blue);
        }

        .role-content p {
            font-family: "DM Sans", sans-serif;
            font-size: 16px;
            color: var(--ink-900);
            line-height: 1.45;
            opacity: .9;
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .role-link {
            font-weight: 600;
            color: var(--brand-blue);
            text-decoration: none;
            display: inline-block;
            transition: color .2s ease;
            margin-top: auto;
        }

        .role-link:hover {
            text-decoration: underline;
        }

        /* ---------- FAQ SECTION ---------- */
        .faq-section {
            background: #fff;
            padding: 70px 0;
        }

        .faq-wrap {
            max-width: 960px;
            margin: 0 auto;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .faq-item {
            border: 1px solid #EEF0FF;
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .faq-item summary {
            cursor: pointer;
            list-style: none;
            padding: 16px 48px 16px 16px;
            font-family: "Dosis", sans-serif;
            font-weight: 600;
            color: var(--brand-blue);
            font-size: 18px;
            position: relative;
            line-height: 1.4;
            transition: color 0.2s ease;
        }

        .faq-item summary:hover {
            color: var(--brand-blue-hero);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            font-weight: 700;
            color: var(--brand-blue);
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary::after {
            content: "–";
        }

        .faq-body {
            padding: 0 16px 16px 16px;
            color: var(--ink-900);
            font-size: 16px;
            line-height: 1.55;
            border-top: 1px dashed #E6E8FF;
            font-family: "DM Sans", sans-serif;
        }

        .faq-item:focus-within,
        .faq-item summary:focus-visible {
            outline: 2px solid #AEB2FF;
            outline-offset: 2px;
            border-radius: 12px;
        }

        .faq-section .section-title {
            text-align: center;
            margin-bottom: 16px;
            color: var(--brand-blue);
            font-family: "Dosis", sans-serif;
        }

        .faq-section .section-lead {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 40px;
            font-family: "DM Sans", sans-serif;
            color: var(--ink-900);
        }

        /* ---------- CTA SECTION ---------- */
        .cta-section {
            background: var(--brand-blue);
            color: #fff;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-family: "Dosis", sans-serif;
            font-size: clamp(28px, 3.5vw, 42px);
            margin-bottom: 20px;
            color: var(--brand-yellow);
        }

        /* ---------- RESPONSIVO ---------- */
        @media (max-width: 900px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-functions .wrap {
                padding: 0 20px;
            }

            .intro-section {
                padding-top: 50px;
            }

            .roles-grid {
                gap: 28px;
            }

            .role-image {
                height: 180px;
            }

            .hero-functions .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .hero-functions .hero-cta .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .cta-section {
                padding: 60px 0;
            }

            .roles-grid {
                grid-template-columns: 1fr;
            }
        }
