/* ===========================
   SALESFORCE TYPOGRAPHY
   Ref: https://brand.salesforce.com/in/core-brand/typography
   Avant Garde (Demi): H1, H2–H4, CTAs, labels
   Salesforce Sans (Regular/Bold sparingly): body, captions
   =========================== */

@font-face {
    font-family: 'Salesforce Sans';
    src: url('https://www.fuelcdn.com/223974/lightning-design-system/1.0.0/fonts/webfonts/SalesforceSans-Light.woff2') format('woff2'),
         url('https://www.fuelcdn.com/223974/lightning-design-system/1.0.0/fonts/webfonts/SalesforceSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Salesforce Sans';
    src: url('https://www.fuelcdn.com/223974/lightning-design-system/1.0.0/fonts/webfonts/SalesforceSans-Regular.woff2') format('woff2'),
         url('https://www.fuelcdn.com/223974/lightning-design-system/1.0.0/fonts/webfonts/SalesforceSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Salesforce Sans';
    src: url('https://www.fuelcdn.com/223974/lightning-design-system/1.0.0/fonts/webfonts/SalesforceSans-Bold.woff2') format('woff2'),
         url('https://www.fuelcdn.com/223974/lightning-design-system/1.0.0/fonts/webfonts/SalesforceSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Identidade Zumbi inspirada no portal institucional */
    --sf-blue-20: #10245f;
    --sf-blue-30: #213d91;
    --sf-blue-40: #2f55b8;
    --sf-blue-50: #365bb8;
    --sf-blue-95: #edf3ff;
    --sf-cloud-60: #5775d7;
    --zumbi-blue-deep: #14245f;
    --zumbi-blue: #3355b5;
    --zumbi-blue-soft: #eaf1ff;
    --zumbi-yellow: #f7b733;
    --zumbi-orange: #f59b24;
    --sf-white: #ffffff;
    /* Neutros */
    --sf-gray-100: #f3f3f3;
    --sf-gray-200: #e5e5e5;
    --sf-gray-300: #c9c9c9;
    --sf-gray-500: #706e6b;
    --sf-gray-700: #444444;
    --sf-gray-900: #181818;
    /* Semânticas */
    --sf-success: #2f8f58;
    --sf-error: #ea001e;
    --sf-warning: #f59b24;
    /* Tipografia */
    --font-heading: 'Barlow SemiCondensed', 'Salesforce Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Salesforce Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px rgba(20, 36, 95, 0.12);
    --shadow-lg: 0 14px 34px rgba(20, 36, 95, 0.16);
    --shadow-xl: 0 20px 54px rgba(20, 36, 95, 0.22);
    --transition: 0.2s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--sf-gray-900);
    background:
        radial-gradient(circle at top left, rgba(54, 91, 184, 0.08), transparent 34rem),
        linear-gradient(180deg, #f7f9ff 0%, #eef3ff 55%, #f8fafc 100%);
    line-height: 1.5; /* B1: 150% line spacing */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

body p {
    margin-bottom: 0.5em; /* B1: paragraph spacing 50% of size */
}

/* H1, H2–H4, CTAs, labels: Avant Garde Demi (Barlow SemiCondensed 600) */
h1, h2, h3, h4, .hero h1, .form-step-header h2, .step-number, .form-group label, .step-label, .hero-badge, .btn {
    font-family: var(--font-heading);
}

/* ===========================
   HERO HEADER
   =========================== */

.hero {
    position: relative;
    background:
        linear-gradient(90deg, rgba(20, 36, 95, 0.96) 0%, rgba(47, 85, 184, 0.88) 58%, rgba(20, 36, 95, 0.72) 100%),
        linear-gradient(135deg, var(--sf-blue-20) 0%, var(--sf-blue-50) 100%);
    padding: 0 0 92px;
    text-align: left;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 100%),
        radial-gradient(ellipse at 15% 55%, rgba(247, 183, 51, 0.18) 0%, transparent 40%),
        radial-gradient(ellipse at 88% 16%, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.28) 0%, transparent 64%);
    background-size: 100% 44px, auto, auto, auto;
    pointer-events: none;
}

.site-topbar,
.site-nav {
    position: relative;
    z-index: 2;
}

.site-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    min-height: 44px;
    padding: 0 7vw;
    background: var(--sf-white);
    color: var(--sf-blue-20);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.site-topbar a {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    margin-right: -7vw;
    background: var(--zumbi-yellow);
    color: var(--sf-blue-20);
    text-decoration: none;
    transition: background var(--transition);
}

.site-topbar a:hover {
    background: var(--zumbi-orange);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 78px;
    padding: 0 7vw;
    background: rgba(47, 85, 184, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(9, 22, 65, 0.18);
}

.site-logo img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
    flex-wrap: wrap;
}

.site-menu a {
    color: var(--sf-white);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.94;
    transition: color var(--transition), opacity var(--transition);
}

.site-menu a:hover {
    color: var(--zumbi-yellow);
    opacity: 1;
}

.hero-content {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 24px 0;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--sf-white);
    color: var(--sf-blue-30);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-sm);
}

.hero-badge {
    display: inline-block;
    background: var(--zumbi-yellow);
    color: var(--sf-blue-20);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    margin-left: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Hero title + Astro: alinhamento homogêneo (Brand Central – clear space, placement) */
.hero-title-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem; /* clear space entre mascote e título */
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-astro {
    width: auto;
    height: clamp(64px, 12vw, 100px);
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    font-weight: 700; /* H1: Avant Garde Demi */
    color: var(--sf-white);
    margin-bottom: 0;
    letter-spacing: -0.02em; /* H1: tracking -2% */
    line-height: 1.05; /* H1: 100–110% line spacing (not 110% when large) */
    text-transform: none;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.hero-copy {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.45;
    margin: -6px 0 22px;
}

.hero-partner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    padding: 8px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    color: var(--sf-white);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.hero-partner-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.hero-partner-sep {
    opacity: 0.5;
    font-size: 0.8rem;
}

.hero-details {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-body);
    line-height: 1.5;
}

.hero-detail svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ===========================
   STEPPER
   =========================== */

.container {
    max-width: 760px;
    margin: -54px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.96);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(54, 91, 184, 0.08);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.step:hover .step-circle {
    transform: scale(1.08);
}

.step .step-circle {
    transition: all 0.3s ease, transform 0.2s ease;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--sf-gray-200);
    color: var(--sf-gray-500);
    transition: all 0.4s ease;
    position: relative;
}

.step-check {
    display: none;
    color: var(--sf-white);
}

.step.active .step-circle {
    background: var(--zumbi-yellow);
    color: var(--sf-blue-20);
    box-shadow: 0 0 0 4px rgba(247, 183, 51, 0.24);
}

.step.completed .step-circle {
    background: var(--sf-blue-40);
    color: var(--sf-white);
}

.step.completed .step-number {
    display: none;
}

.step.completed .step-check {
    display: block;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--sf-gray-500);
    transition: color var(--transition);
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--sf-blue-30);
    font-weight: 600;
}

.step.completed .step-label {
    color: var(--sf-success);
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--sf-gray-200);
    margin: 0 12px;
    margin-bottom: 24px;
    border-radius: 2px;
    transition: background 0.4s ease;
    min-width: 40px;
}

.step-line.active {
    background: linear-gradient(90deg, var(--sf-blue-40), var(--zumbi-yellow));
}

/* ===========================
   FORM CARD
   =========================== */

.form-card {
    background: var(--sf-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border-top: 5px solid var(--zumbi-yellow);
    border-left: 1px solid rgba(54, 91, 184, 0.08);
    border-right: 1px solid rgba(54, 91, 184, 0.08);
}

.form-step {
    display: none;
    padding: 40px;
}

.form-step.active {
    display: block;
    animation: slideIn 0.4s ease forwards;
}

.form-step.slide-out-left {
    display: block;
    animation: slideOutLeft 0.3s ease forwards;
}

.form-step.slide-out-right {
    display: block;
    animation: slideOutRight 0.3s ease forwards;
}

.form-step.slide-in-left {
    display: block;
    animation: slideInLeft 0.4s ease forwards;
}

.form-step.slide-in-right {
    display: block;
    animation: slideInRight 0.4s ease forwards;
}

@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(-60px); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(60px); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(0); }
    to   { opacity: 1; transform: translateX(0); }
}

.form-step-header {
    margin-bottom: 32px;
}

.form-step-header h2 {
    font-size: 1.5rem;
    font-weight: 600; /* H2-4: Avant Garde Demi */
    color: var(--sf-blue-20);
    margin-bottom: 6px;
    letter-spacing: 0; /* Subhead: tracking 0% */
    line-height: 1.1; /* H2-4: 100–110% */
}

.form-step-header p {
    color: var(--sf-gray-500);
    font-size: 0.9rem;
    font-family: var(--font-body);
    line-height: 1.5;
}

/* ===========================
   FORM ELEMENTS
   =========================== */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600; /* Demi for labels */
    color: var(--sf-blue-20);
    margin-bottom: 6px;
    letter-spacing: 0;
}

.required {
    color: var(--sf-error);
}

.optional {
    color: var(--sf-gray-500);
    font-weight: 400;
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border: 2px solid var(--sf-gray-200);
    border-radius: var(--radius-sm);
    background: var(--sf-white);
    color: var(--sf-gray-900);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--sf-gray-300);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--sf-gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sf-blue-50);
    box-shadow: 0 0 0 3px rgba(54, 91, 184, 0.16);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23706e6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.field-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--sf-gray-500);
    margin-top: 6px;
    font-family: var(--font-body);
    line-height: 1.3; /* C1 Caption: 130% */
}

.error-msg {
    display: none;
    font-size: 0.78rem;
    color: var(--sf-error);
    margin-top: 4px;
    font-weight: 500;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--sf-error);
    box-shadow: 0 0 0 3px rgba(234, 0, 30, 0.1);
}

.form-group.has-error .error-msg {
    display: block;
}

.hidden {
    display: none !important;
}

/* ===========================
   ELIGIBILITY CARD
   =========================== */

.eligibility-card {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, var(--zumbi-blue-soft) 0%, #ffffff 100%);
    border: 1px solid rgba(54, 91, 184, 0.16);
    border-left: 5px solid var(--zumbi-yellow);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 28px;
}

.eligibility-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sf-blue-50);
    color: var(--sf-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eligibility-text strong {
    color: var(--sf-blue-30);
    font-size: 0.9rem;
}

.eligibility-text ul {
    margin-top: 8px;
    padding-left: 18px;
    color: var(--sf-gray-700);
    font-size: 0.88rem;
}

.eligibility-text ul li {
    margin-bottom: 4px;
}

/* ===========================
   PRE-WORK CARD
   =========================== */

.prework-card {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, #fff8e8 0%, var(--zumbi-blue-soft) 100%);
    border: 1px solid rgba(54, 91, 184, 0.16);
    border-left: 5px solid var(--zumbi-yellow);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
}

.prework-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--zumbi-yellow);
    color: var(--sf-blue-20);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prework-text strong {
    color: var(--sf-gray-900);
    font-size: 0.95rem;
    line-height: 1.4;
}

.prework-text p {
    color: var(--sf-gray-500);
    font-size: 0.85rem;
    margin-top: 4px;
}

.prework-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sf-blue-30);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 10px;
    transition: color var(--transition);
}

.prework-link:hover {
    color: var(--zumbi-orange);
    text-decoration: underline;
}

/* ===========================
   RECAPTCHA
   =========================== */

.recaptcha-container {
    margin-bottom: 24px;
}

/* ===========================
   BUTTONS
   =========================== */

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(54, 91, 184, 0.14);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600; /* CTA: Avant Garde Demi */
    font-family: var(--font-heading);
    line-height: 1.3; /* CTA: 130% line spacing */
    letter-spacing: 0; /* CTA: tracking 0% */
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--zumbi-yellow), var(--zumbi-orange));
    color: var(--sf-blue-20);
    box-shadow: 0 8px 18px rgba(245, 155, 36, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffc84d, var(--zumbi-orange));
    box-shadow: 0 12px 24px rgba(245, 155, 36, 0.34);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(245, 155, 36, 0.26);
}

.btn-secondary {
    background: var(--sf-white);
    color: var(--sf-blue-30);
    border: 2px solid rgba(54, 91, 184, 0.18);
}

.btn-secondary:hover {
    border-color: var(--sf-blue-40);
    background: var(--zumbi-blue-soft);
}

.btn-submit {
    padding: 14px 36px;
    font-size: 1rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ===========================
   FOOTER
   =========================== */

footer {
    text-align: center;
    padding: 24px;
    color: var(--sf-blue-20);
    font-size: 0.82rem;
    font-family: var(--font-body);
    line-height: 1.3; /* C1 Caption: 130% */
}

/* Footer fixo na página de inscrição: não ocupa espaço no fluxo e não atrapalha a visualização */
footer.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-top: 3px solid var(--zumbi-yellow);
    padding: 12px 24px;
}

body:has(footer.footer-fixed) .container {
    padding-bottom: 80px;
}

/* Logo no footer: Brand Central recomenda mínimo 40px para uso digital */
.footer-logo {
    display: block;
    margin: 0 auto 8px;
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 640px) {
    .hero {
        padding: 0 0 76px;
    }

    .site-topbar {
        justify-content: flex-end;
        gap: 12px;
        min-height: 38px;
        padding: 0 16px;
        font-size: 0.66rem;
    }

    .site-topbar a {
        display: inline-flex;
        margin-right: -16px;
    }

    .site-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px;
    }

    .site-menu {
        justify-content: center;
        gap: 14px;
    }

    .site-menu a {
        font-size: 0.72rem;
    }

    .hero-content {
        padding: 44px 20px 0;
        text-align: center;
    }

    .hero-title-row {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-copy {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-detail {
        font-size: 0.85rem;
        align-items: flex-start;
    }

    .hero-detail svg {
        margin-top: 2px;
    }

    .stepper {
        padding: 16px 16px;
        gap: 0;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-circle {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .step-line {
        min-width: 20px;
        margin: 0 6px;
        margin-bottom: 22px;
    }

    .form-step {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .eligibility-card,
    .prework-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-partner {
        padding: 6px 16px;
        font-size: 0.78rem;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-partner-logo {
        height: 22px;
    }

    .eligibility-text ul {
        text-align: left;
    }

    .prework-text {
        text-align: center;
    }
}
