html,
body,
button,
input,
select,
textarea {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.portal-usuario-externo,
.portal-usuario-externo a,
.portal-usuario-externo button,
.portal-usuario-externo input,
.portal-usuario-externo select,
.portal-usuario-externo textarea {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined" !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #009fe3, #009fe3);
    min-height: 716px;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.hero-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inner {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 9999px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: fit-content;
    margin-bottom: 0.5rem;
}

.hero-title {
    margin: 0;
    color: #ffffff;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-transform: none;
}

.hero-title span {
    display: block;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.hero-subtitle {
    max-width: 40rem;
    margin: 0;
    color: #ffffff;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.btn-hero-primary {
    background: #ffffff;
    color: #009fe3;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: #eaeef4;
}

.btn-hero-primary .material-symbols-outlined {
    transition: transform 0.2s;
}

.btn-hero-primary:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: rgba(0, 100, 146, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(0, 100, 146, 0.4);
}

.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-main-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 0.75rem;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-actions {
    max-width: 1536px;
    margin: -6rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.action-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.action-card:hover {
    border-color: rgba(0, 159, 227, 0.4);
}

.action-card.highlighted {
    border: 2px solid rgba(0, 100, 146, 0.1);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 0 0 4px rgba(0, 100, 146, 0.05);
}

.action-card.highlighted:hover {
    border-color: rgba(0, 159, 227, 0.5);
}

.action-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #f0f8ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.action-card:hover .action-icon {
    background: #006492;
}

.action-icon .material-symbols-outlined {
    color: #009fe3;
    font-size: 1.75rem;
    transition: color 0.3s ease;
}

.action-card:hover .action-icon .material-symbols-outlined {
    color: #ffffff;
}

.action-card.highlighted .action-icon {
    background: #009fe3;
}

.action-card.highlighted .action-icon .material-symbols-outlined {
    color: #ffffff;
}

.action-card.highlighted:hover .action-icon {
    background: #006492;
}

.action-card h3 {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #171c20;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.action-card p {
    color: #3e4850;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-link {
    color: #009fe3;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: gap 0.2s;
}

.action-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0;
    background: #009fe3;
    transition: width 0.3s ease;
}

.action-card:hover .action-link {
    gap: 0.75rem;
}

.action-card:hover .action-link::after {
    width: 100%;
}

.btn-action-primary {
    background: #009fe3;
    color: #ffffff;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 100, 146, 0.2);
}

.btn-action-primary:hover {
    background: #006492;
}

.about-section {
    padding: 8rem 3rem;
    max-width: 1536px;
    margin: 0 auto;
}

.about-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.about-eyebrow {
    color: #009fe3;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #171c20;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.about-text {
    color: #3e4850;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 1rem;
}

.about-feature {
    border-left: 4px solid #a4c639;
    padding-left: 1.5rem;
}

.about-feature.green {
    border-left-color: #a4c639;
}

.about-feature h4 {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #171c20;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    color: #3e4850;
    margin: 0;
}

.about-verified {
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #171c20;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.about-verified p {
    margin: 0;
}

.about-verified .material-symbols-outlined {
    color: #a4c639;
    font-size: 2.5rem;
}

.steps-section {
    padding: 8rem 3rem;
    background: #f0f4fa;
}

.steps-inner {
    max-width: 1536px;
    margin: 0 auto;
}

.steps-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 5rem;
}

.steps-header h2 {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: #171c20;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.steps-header p {
    color: #3e4850;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.steps-connector {
    display: none;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(190, 200, 210, 0.3);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: #ffffff;
    border: 1px solid rgba(190, 200, 210, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #009fe3;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07);
    transition:
        background 0.2s,
        color 0.2s;
}

.step-item:hover .step-number {
    background: #009fe3;
    color: #ffffff;
}

.step-number.active {
    background: #009fe3;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 100, 146, 0.2);
}

.step-content h4 {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #171c20;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #3e4850;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.step-note {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 0.5rem;
}

.step-doc-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(190, 200, 210, 0.3);
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.step-doc-item .material-symbols-outlined {
    color: #009fe3;
}

.step-doc-item span:last-child {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #171c20;
}

.cta-section {
    padding: 6rem 3rem;
    max-width: 1536px;
    margin: 0 auto;
}

.cta-card {
    background: #009fe3;
    border-radius: 2.5rem;
    padding: 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    overflow: hidden;
    position: relative;
}

.cta-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-text {
    max-width: 36rem;
    position: relative;
    z-index: 10;
}

.cta-text h2 {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: #c9e6ff;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.btn-cta-white {
    background: #ffffff;
    color: #006492;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
}

.btn-cta-white:hover {
    background: #eaeef4;
}

.btn-cta-outline {
    background: #006492;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.875rem;
}

.btn-cta-outline:hover {
    background: rgba(0, 100, 146, 0.8);
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .steps-connector {
        display: block;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        display: none;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        padding: 0 1.5rem;
    }

    .quick-actions {
        padding: 0 1rem;
        margin-top: -3rem;
    }

    .about-section,
    .steps-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

.ue-procedures {
    width: 100%;
    padding: 4.5rem 0 5rem;
    background: #f4f8fb;
}

.ue-procedures-container {
    width: min(1600px, calc(100% - 64px));
    margin: 0 auto;
}

.ue-procedures-heading {
    width: 100%;
    margin-bottom: 2rem;
}

.ue-procedures-eyebrow {
    display: block;
    margin-bottom: 0.65rem;
    color: #009fe3;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ue-procedures-heading h2 {
    margin: 0 0 0.7rem;
    color: #171c20;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.035em;
}

.ue-procedures-heading p {
    max-width: 900px;
    margin: 0;
    color: #58666f;
    font-size: 1rem;
    line-height: 1.65;
}

.ue-procedures-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.ue-procedure-tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: sticky;
    top: 1.25rem;
}

.ue-procedure-tab {
    width: 100%;
    min-height: 92px;
    padding: 1rem 1.1rem;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 0.9rem;
    border: 1px solid #dce8ee;
    border-radius: 1rem;
    background: #ffffff;
    color: #28343b;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(18, 62, 87, 0.045);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ue-procedure-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 159, 227, 0.5);
    box-shadow: 0 12px 26px rgba(18, 62, 87, 0.09);
}

.ue-procedure-tab:focus-visible {
    outline: 3px solid rgba(0, 159, 227, 0.25);
    outline-offset: 2px;
}

.ue-procedure-tab.active {
    border-color: #009fe3;
    background: linear-gradient(135deg, #009fe3 0%, #007eb5 100%);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 127, 181, 0.2);
}

.ue-procedure-tab-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0.8rem;
    background: #eef8fc;
    color: #009fe3;
}

.ue-procedure-tab-icon .material-symbols-outlined {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 28px;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 28;
}

.ue-procedure-tab.active .ue-procedure-tab-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.ue-procedure-tab-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ue-procedure-tab-text strong {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.ue-procedure-tab-text small {
    color: #73808a;
    font-size: 0.8rem;
    line-height: 1.35;
}

.ue-procedure-tab.active .ue-procedure-tab-text small {
    color: rgba(255, 255, 255, 0.85);
}

.ue-procedure-tab-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009fe3;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.ue-procedure-tab:hover .ue-procedure-tab-arrow {
    transform: translateX(3px);
}

.ue-procedure-tab.active .ue-procedure-tab-arrow {
    color: #ffffff;
}

.ue-procedure-content {
    width: 100%;
    min-width: 0;
}

.ue-procedure-panel {
    width: 100%;
    min-height: 500px;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #dce8ee;
    border-radius: 1.25rem;
    box-shadow: 0 14px 38px rgba(18, 62, 87, 0.07);
}

.ue-procedure-panel[hidden] {
    display: none;
}

.ue-procedure-panel.active {
    animation: ueProcedureFade 0.28s ease;
}

@keyframes ueProcedureFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ue-procedure-panel-header {
    width: 100%;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid #e5eef3;
}

.ue-procedure-label {
    display: block;
    margin-bottom: 0.4rem;
    color: #009fe3;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ue-procedure-panel-header h3 {
    margin: 0 0 0.4rem;
    color: #171c20;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.025em;
}

.ue-procedure-panel-header p {
    max-width: 760px;
    margin: 0;
    color: #5f6d75;
    font-size: 0.96rem;
    line-height: 1.6;
}

.ue-procedure-count {
    flex-shrink: 0;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #eef8fc;
    color: #007eae;
    font-size: 0.75rem;
    font-weight: 800;
}

.ue-procedure-flow {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
}

.ue-procedure-flow>li {
    min-width: 0;
    min-height: 150px;
    padding: 1.15rem;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2edf2;
    border-radius: 1rem;
    background: #fbfdfe;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ue-procedure-flow>li:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 159, 227, 0.45);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 62, 87, 0.06);
}

.ue-procedure-flow>li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #009fe3;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ue-procedure-flow>li:hover::after,
.ue-procedure-flow>li.ue-step-featured::after {
    opacity: 1;
}

.ue-step-featured {
    background: #f2faff !important;
    border-color: #bee5f5 !important;
}

.ue-step-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #009fe3;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 900;
    box-shadow: 0 7px 16px rgba(0, 159, 227, 0.2);
}

.ue-procedure-flow h4 {
    margin: 0 0 0.4rem;
    color: #1f2a30;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.ue-procedure-flow p {
    margin: 0;
    color: #5c6870;
    font-size: 0.88rem;
    line-height: 1.6;
}

.ue-step-link {
    width: fit-content;
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #007eae;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}

.ue-step-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ue-step-link .material-symbols-outlined {
    font-size: 1rem;
}

.ue-step-checklist {
    margin: 0.7rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    list-style: none;
}

.ue-step-checklist li {
    padding-left: 1.25rem;
    position: relative;
    color: #52616a;
    font-size: 0.82rem;
    line-height: 1.5;
}

.ue-step-checklist li::before {
    content: "check";
    position: absolute;
    left: 0;
    top: 0.02rem;
    color: #74a900;
    font-family: "Material Symbols Outlined";
    font-size: 1rem;
    font-weight: 700;
}

.action-card-disabled {
    position: relative;
    opacity: .65;
    cursor: not-allowed;
}

.action-card-disabled .action-icon {
    opacity: .7;
}

.action-card-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #e7f4fb;
    color: #008bc7;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.action-link-disabled {
    pointer-events: none;
    cursor: not-allowed;
    color: #6f7f8a;
    background: #eef3f6;
}

@media (max-width: 1400px) {
    .ue-procedures-container {
        width: min(1280px, calc(100% - 48px));
    }

    .ue-procedures-layout {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .ue-procedure-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .ue-procedures-container {
        width: calc(100% - 32px);
    }

    .ue-procedures-layout {
        grid-template-columns: 1fr;
    }

    .ue-procedure-tabs {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ue-procedure-tab {
        min-height: 112px;
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .ue-procedure-tab-arrow {
        display: none;
    }

    .ue-procedure-panel {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .ue-procedures {
        padding: 4rem 0;
    }

    .ue-procedures-container {
        width: calc(100% - 24px);
    }

    .ue-procedures-heading {
        margin-bottom: 1.5rem;
    }

    .ue-procedure-tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 0 0 0.45rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .ue-procedure-tab {
        min-width: 260px;
        min-height: 86px;
        grid-template-columns: 48px minmax(0, 1fr);
        scroll-snap-align: start;
    }

    .ue-procedure-panel {
        padding: 1.25rem;
    }

    .ue-procedure-panel-header {
        flex-direction: column;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .ue-procedure-flow {
        grid-template-columns: 1fr;
    }

    .ue-procedure-flow>li {
        min-height: auto;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .ue-procedures-container {
        width: calc(100% - 20px);
    }

    .ue-procedure-tab {
        min-width: 230px;
    }

    .ue-procedure-panel {
        padding: 1rem;
        border-radius: 1rem;
    }

    .ue-procedure-flow>li {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 0.75rem;
    }

    .ue-step-number {
        width: 38px;
        height: 38px;
    }
}