:root {
    color-scheme: only light;
    --surface: #fbf9f7;
    --surface-lowest: #ffffff;
    --surface-low: #f5f3f1;
    --surface-container: #efedec;
    --surface-border: #E8E5E2;
    --primary: #161323;
    --primary-container: #2b2738;
    --primary-fixed-dim: #cac3da;
    --brand-wine: #99261F;
    --on-surface: #1b1c1b;
    --on-surface-variant: #48464c;
    --outline: #79767d;
    --error-container: #ffdad6;
    --on-error-container: #93000a;
    --container-max: 1200px;
    --gutter: 24px;
    --section-gap: 80px;
    --card-padding: 24px;
    --margin-mobile: 16px;
}

html {
    color-scheme: only light;
    background-color: var(--surface);
    scroll-behavior: smooth;
}

body {
    color-scheme: only light;
    margin: 0;
    background-color: var(--surface);
    color: var(--on-surface);
    font-family: Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.mud-typography-h1,
.mud-typography-h2,
.mud-typography-h3,
.mud-typography-h4,
.mud-typography-h5,
.mud-typography-h6 {
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    letter-spacing: 0;
}

h1:focus {
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.btn-outline {
    border: 1px solid var(--primary-container);
    color: var(--primary-container);
    background: transparent;
}

.btn-outline:hover {
    background: var(--surface-low);
}

.btn-wine {
    border: 1px solid var(--brand-wine);
    background: var(--brand-wine);
    color: white;
    box-shadow: 0 2px 6px rgba(43, 39, 56, 0.16);
}

.btn-wine:hover {
    opacity: 0.9;
}

.btn-large {
    min-height: 56px;
    padding: 0 32px;
    font-size: 18px;
}

.app-navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    border-bottom: 1px solid rgba(232, 229, 226, 0.9);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(22, 19, 35, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 0 var(--gutter);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.logo-image {
    display: block;
    width: 330px;
    height: 54px;
    margin-right: -74px;
    background-image: url("/images/unicarreira-rh-logo.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.logo-image.logo-image-white {
    background-image: url("/images/unicarreira-logo-branca.png");
}

.navbar-logo-tenure {
    display: grid;
    gap: 2px;
    padding-left: 12px;
    border-left: 1px solid rgba(43, 39, 56, 0.14);
    color: var(--primary-container);
    white-space: nowrap;
}

.navbar-logo-tenure strong {
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.navbar-logo-tenure span {
    color: var(--on-surface-variant);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-fallback {
    color: var(--primary-container);
    font-weight: 800;
    white-space: nowrap;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    padding: 8px 0;
    color: var(--on-surface-variant);
    font-size: 14px;
    font-weight: 700;
}

.navbar-links a:not(.active) {
    padding-inline: 12px;
    border-radius: 4px;
}

.navbar-links a:not(.active):hover {
    color: var(--primary-container);
    background: rgba(43, 39, 56, 0.06);
}

.navbar-links .active {
    color: var(--brand-wine);
    border-bottom: 2px solid var(--brand-wine);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-menu {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--primary-container);
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}

.navbar-menu span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.navbar-menu span + span {
    margin-top: 4.5px;
}

.navbar-menu:hover {
    background: rgba(43, 39, 56, 0.06);
}

.navbar-menu:focus-visible {
    outline: 2px solid rgba(43, 39, 56, 0.22);
    outline-offset: 2px;
}

.navbar-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(22, 19, 35, 0.36);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.navbar-mobile-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.navbar-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    width: min(344px, 100vw);
    height: 100dvh;
    box-sizing: border-box;
    flex-direction: column;
    overflow-y: auto;
    padding: 16px;
    border-left: 1px solid var(--surface-border);
    background: var(--surface-lowest);
    box-shadow: -16px 0 32px rgba(22, 19, 35, 0.16);
    transform: translateX(100%);
    transition: transform 225ms cubic-bezier(0, 0, 0.2, 1);
    pointer-events: none;
}

.navbar-mobile-panel.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.navbar-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.navbar-mobile-head strong {
    color: var(--primary);
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.navbar-mobile-close {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    background: var(--surface-lowest);
    color: var(--primary-container);
    cursor: pointer;
}

.navbar-mobile-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.navbar-mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.navbar-mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.home-page {
    padding-top: 96px;
    padding-bottom: var(--section-gap);
}

.hero-section {
    position: relative;
    padding: 72px var(--margin-mobile) var(--section-gap);
    background:
        linear-gradient(180deg, rgba(22, 19, 35, 0.58) 0%, rgba(22, 19, 35, 0.42) 100%),
        url("/images/home-hero-handshake.png");
    background-position: center;
    background-size: cover;
}

.hero-shell {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.hero-content {
    display: grid;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 24px 60px rgba(22, 19, 35, 0.22);
    backdrop-filter: blur(14px);
    text-align: center;
}

.hero-copy {
    display: grid;
    gap: 18px;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 0 auto;
    color: var(--primary-container);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-copy p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--on-surface-variant);
    font-size: 18px;
    line-height: 1.6;
}

.search-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(43, 39, 56, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 32px rgba(43, 39, 56, 0.08);
}

.search-card label {
    position: relative;
    flex: 1;
    min-width: 0;
}

.search-card .mud-icon-root {
    position: absolute;
    top: 50%;
    left: 12px;
    color: var(--outline);
    transform: translateY(-50%);
}

.search-card input,
.company-form-card input,
.company-form-card select {
    width: 100%;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--surface-container);
    color: var(--on-surface);
    font: 400 16px/1.6 Inter, Arial, sans-serif;
    outline: none;
}

.search-card input {
    padding: 0 16px 0 42px;
}

.search-card input:focus,
.company-form-card input:focus,
.company-form-card select:focus {
    border-color: var(--primary-container);
    box-shadow: 0 0 0 2px rgba(43, 39, 56, 0.16);
}

.search-card button,
.company-form-card button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--brand-wine);
    color: white;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 0;
}

.hero-company-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid rgba(43, 39, 56, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.52);
    color: var(--primary-container);
    font-size: 14px;
    font-weight: 700;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero-company-link:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(43, 39, 56, 0.26);
}

.jobs-section {
    padding: var(--section-gap) var(--margin-mobile);
    background: var(--surface-low);
}

.section-row-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-row-heading h2,
.center-heading h2,
.company-content h2 {
    margin: 0;
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.section-row-heading p,
.center-heading p {
    margin: 8px 0 0;
    color: var(--on-surface-variant);
    font-size: 16px;
    line-height: 1.6;
}

.section-row-heading a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-wine);
    font-size: 14px;
    font-weight: 700;
}

.section-row-heading a:hover {
    text-decoration: underline;
}

.jobs-carousel-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 180px;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    background: var(--surface-lowest);
    color: var(--on-surface-variant);
    font-size: 14px;
    line-height: 1.4;
}

.jobs-carousel-state .mud-icon-root {
    color: var(--outline);
}

.jobs-carousel-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.carousel-nav-button {
    width: 44px;
    height: 44px;
    border-color: var(--surface-border) !important;
    color: var(--primary-container) !important;
    background: var(--surface-lowest) !important;
}

.carousel-nav-button:hover {
    background: var(--surface-low) !important;
}

.jobs-carousel-viewport {
    overflow: hidden;
    margin-inline: -12px;
}

.jobs-carousel-track {
    display: flex;
    transition: transform 220ms ease;
}

.jobs-carousel-slide {
    box-sizing: border-box;
    flex: 0 0 33.3333%;
    min-width: 33.3333%;
    padding-inline: 12px;
}

.jobs-carousel-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: var(--surface-container);
}

.carousel-indicator.is-active {
    background: var(--brand-wine);
}

.jobs-carousel-mobile-slide {
    height: 100%;
    padding: 0 4px;
}

.jobs-carousel-mobile .mud-carousel-item {
    height: 100%;
    padding: 8px 0 12px;
}

.jobs-carousel-mobile .job-card {
    min-height: 100%;
}

.job-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 244px;
    height: 100%;
    padding: var(--card-padding);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    background: var(--surface-lowest);
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.job-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(43, 39, 56, 0.04);
}

.job-card-content {
    display: grid;
    gap: 16px;
}

.job-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.job-card-head h3 {
    margin: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.job-card:hover h3 {
    color: var(--brand-wine);
}

.job-card-head .mud-icon-root,
.job-location .mud-icon-root {
    color: var(--outline);
}

.job-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--on-surface-variant);
    font-size: 12px;
    line-height: 1.4;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tags span {
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--surface-container);
    color: var(--on-surface-variant);
    font-size: 12px;
    line-height: 1.4;
}

.job-tags .urgent {
    color: var(--on-error-container);
    background: var(--error-container);
}

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--surface-border);
}

.job-card-footer strong {
    color: var(--on-surface-variant);
    font-size: 14px;
    line-height: 1;
}

.job-card-footer a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    background: transparent;
    color: var(--primary-container);
    font-size: 14px;
    font-weight: 700;
    cursor: default;
}

.candidate-section,
.proof-section {
    padding: var(--section-gap) var(--margin-mobile);
    text-align: center;
}

.center-heading {
    max-width: 672px;
    margin: 0 auto 48px;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.process-line {
    position: absolute;
    top: 48px;
    right: 16.666%;
    left: 16.666%;
    z-index: 0;
    height: 2px;
    background: var(--surface-container);
}

.process-step {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 16px;
}

.process-icon {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border: 4px solid var(--surface);
    border-radius: 999px;
    background: var(--surface-low);
    color: var(--brand-wine);
    box-shadow: 0 2px 8px rgba(43, 39, 56, 0.06);
}

.process-icon .mud-icon-root {
    font-size: 40px;
}

.process-step h3 {
    margin: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.process-step p {
    max-width: 320px;
    margin: 0;
    color: var(--on-surface-variant);
    font-size: 12px;
    line-height: 1.4;
}

.candidate-action {
    padding-top: 40px;
}

.company-section {
    padding: var(--section-gap) var(--margin-mobile);
    background: var(--primary-container);
    color: white;
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    align-items: center;
    gap: 48px;
}

.company-content {
    display: grid;
    gap: 32px;
}

.company-content h2 {
    color: white;
}

.company-content p {
    max-width: 600px;
    margin: 16px 0 0;
    color: var(--primary-fixed-dim);
    font-size: 18px;
    line-height: 1.6;
}

.company-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.company-benefits div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.company-benefits .mud-icon-root {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--brand-wine);
}

.company-benefits span {
    display: grid;
    gap: 4px;
}

.company-benefits strong {
    color: white;
    font-size: 14px;
    line-height: 1;
}

.company-benefits small {
    color: var(--primary-fixed-dim);
    font-size: 12px;
    line-height: 1.4;
}

.company-form-card {
    padding: 32px;
    border-radius: 24px;
    background: var(--surface-lowest);
    color: var(--on-surface);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.company-form-card h3 {
    margin: 0 0 24px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.company-form-card form,
.company-form-card label {
    display: grid;
    gap: 16px;
}

.company-form-card label {
    gap: 4px;
}

.company-form-card span {
    color: var(--on-surface-variant);
    font-size: 12px;
    line-height: 1.4;
}

.company-form-card input,
.company-form-card select {
    padding: 0 14px;
    border-color: var(--surface-border);
}

.company-form-card .company-masked-field {
    width: 100%;
    margin: 0;
}

.company-form-card .company-masked-field .mud-input-control-input-container {
    margin: 0;
}

.company-form-card .company-masked-field .mud-input {
    min-height: 48px;
    border-radius: 8px;
    background: var(--surface-container);
}

.company-form-card .company-masked-field .mud-input-slot.mud-input-root-outlined {
    min-height: 48px;
    padding: 0 14px;
    font: 400 16px/1.6 Inter, Arial, sans-serif;
    color: var(--on-surface);
}

.company-form-card .company-masked-field .mud-input-slot.mud-input-root-outlined::placeholder {
    color: var(--on-surface-variant);
    opacity: 1;
}

.company-form-card .company-masked-field .mud-input-outlined-border {
    border-color: transparent;
}

.company-form-card .company-masked-field .mud-input:focus-within .mud-input-outlined-border {
    border-color: var(--primary-container);
}

.company-form-card .company-masked-field .mud-input:focus-within {
    box-shadow: 0 0 0 2px rgba(43, 39, 56, 0.16);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.company-form-card button {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
}

.company-form-card button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.company-form-card .validation-message {
    font-size: 12px;
    line-height: 1.4;
}

.company-form-feedback {
    margin-top: 8px;
}

.proof-seal {
    display: grid;
    width: 220px;
    height: 80px;
    place-items: center;
    margin: 0 auto 32px;
    background-image: url("https://unicarreirarh.com.br/wp-content/uploads/2024/11/Imagem_do_WhatsApp_de_2024-11-07_a_s__09.43.25_a37c1329-removebg-preview-e1731423400245.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: var(--on-surface-variant);
    font-weight: 800;
    opacity: 0.84;
}

.proof-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 64px;
    padding: 32px 0;
    border-block: 1px solid var(--surface-border);
}

.proof-grid div {
    min-width: 210px;
}

.proof-grid strong {
    display: block;
    color: var(--brand-wine);
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.proof-grid span {
    color: var(--on-surface-variant);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.app-footer {
    background: var(--primary-container);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 24px;
    padding: var(--section-gap) var(--gutter) 8px;
}

.footer-brand,
.footer-column {
    display: grid;
    align-content: start;
    gap: 16px;
}

.footer-logo {
    display: block;
    width: 257px;
    height: 48px;
    overflow: hidden;
    background-image: url("/images/unicarreira-logo-branca.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    color: white;
    font-size: 0;
}

.footer-brand p,
.footer-column a,
.footer-contact span,
.footer-bottom,
.footer-bottom a {
    color: var(--primary-fixed-dim);
    font-size: 12px;
    line-height: 1.4;
}

.footer-social {
    display: inline-flex;
    width: 28px;
    color: var(--primary-fixed-dim);
}

.footer-column h4 {
    margin: 0;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
    text-decoration-color: var(--brand-wine);
    text-underline-offset: 4px;
}

.footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(97, 92, 111, 0.7);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 16px;
}

.site-feedback-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(153, 38, 31, 0.10), transparent 34%),
        radial-gradient(circle at top right, rgba(43, 39, 56, 0.12), transparent 30%),
        linear-gradient(180deg, #fdfbf9 0%, #f6f2ef 100%);
}

.site-feedback-navbar {
    background: rgba(255, 255, 255, 0.88);
}

.site-feedback-navbar-container {
    gap: 16px;
}

.site-feedback-navbar-actions {
    display: flex;
    align-items: center;
}

.site-feedback-hero {
    padding: 128px var(--margin-mobile) 56px;
}

.site-feedback-shell {
    position: relative;
}

.site-feedback-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.site-feedback-card,
.site-feedback-side-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 229, 226, 0.92);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 40px rgba(22, 19, 35, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-feedback-card {
    display: grid;
    gap: 24px;
    padding: 40px;
}

.site-feedback-card::after {
    content: "";
    position: absolute;
    inset: auto -48px -48px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(153, 38, 31, 0.16), transparent 68%);
}

.site-feedback-kicker,
.site-feedback-side-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(43, 39, 56, 0.08);
    color: var(--primary-container);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-feedback-card h1 {
    max-width: 12ch;
    margin: 0;
    color: var(--primary);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.site-feedback-card > p,
.site-feedback-protocol p {
    max-width: 56ch;
    margin: 0;
    color: var(--on-surface-variant);
    font-size: 17px;
    line-height: 1.65;
}

.site-feedback-context {
    padding: 16px 18px;
    border: 1px solid rgba(43, 39, 56, 0.08);
    border-radius: 16px;
    background: rgba(43, 39, 56, 0.04);
}

.site-feedback-context strong {
    color: var(--primary-container);
    word-break: break-word;
}

.site-feedback-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-feedback-actions .btn {
    position: relative;
    z-index: 1;
}

.site-feedback-protocol {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 20px 22px;
    border: 1px solid rgba(153, 38, 31, 0.16);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(153, 38, 31, 0.06) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.site-feedback-protocol span {
    color: var(--on-surface-variant);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-feedback-protocol strong {
    color: var(--brand-wine);
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.3;
    word-break: break-word;
}

.site-feedback-side-card {
    display: grid;
    gap: 20px;
    align-content: start;
    padding: 32px 28px;
}

.site-feedback-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-feedback-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--on-surface-variant);
    font-size: 15px;
    line-height: 1.6;
}

.site-feedback-list .mud-icon-root {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--brand-wine);
}

.site-feedback-footer {
    padding: 0 var(--margin-mobile) 32px;
}

.site-feedback-footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 32px;
    border: 1px solid rgba(43, 39, 56, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
}

.site-feedback-footer-brand {
    display: grid;
    gap: 6px;
}

.site-feedback-footer-brand strong {
    color: var(--primary);
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.site-feedback-footer-brand span,
.site-feedback-footer-links a {
    color: var(--on-surface-variant);
    font-size: 14px;
    line-height: 1.5;
}

.site-feedback-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-feedback-footer-links a:hover {
    color: var(--brand-wine);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    color: white;
    padding: 1rem;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

#blazor-error-ui {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(153, 38, 31, 0.18);
    border-radius: 18px;
    background: rgba(255, 250, 249, 0.96);
    box-shadow: 0 16px 38px rgba(22, 19, 35, 0.18);
    color: var(--primary);
}

#blazor-error-ui[style*="display: block"] {
    display: flex !important;
}

.blazor-error-copy {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.blazor-error-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

#blazor-error-ui a,
#blazor-error-ui .dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(43, 39, 56, 0.12);
    border-radius: 10px;
    background: white;
    color: var(--primary-container);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

#blazor-error-ui .reload {
    border-color: var(--brand-wine);
    background: var(--brand-wine);
    color: white;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
}

.mud-overlay-dialog {
    z-index: 4000 !important;
}

.mud-dialog-container {
    z-index: 4100 !important;
}

.mud-dialog {
    z-index: 4200 !important;
}

@media (max-width: 1200px) {
    .navbar-logo-tenure {
        display: none;
    }
}

@media (max-width: 960px) {
    .navbar-logo {
        gap: 0;
    }

    .logo-image {
        width: 300px;
        height: 50px;
        margin-right: -20px;
    }

    .navbar-logo-tenure {
        display: grid;
        padding-left: 10px;
    }

    .navbar-logo-tenure strong {
        font-size: 17px;
    }

    .navbar-logo-tenure span {
        font-size: 10px;
    }

    .navbar-links,
    .navbar-actions {
        display: none;
    }

    .navbar-menu {
        display: grid;
    }

    .navbar-mobile-links,
    .navbar-mobile-actions {
        display: grid;
        gap: 8px;
    }

    .navbar-mobile-actions {
        margin-top: 16px;
    }

    .navbar-mobile-links a {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
        color: var(--on-surface-variant);
        font-size: 14px;
        font-weight: 700;
    }

    .navbar-mobile-links a.active {
        color: var(--brand-wine);
        background: rgba(153, 38, 31, 0.08);
    }

    .navbar-mobile-links a:not(.active):hover {
        color: var(--primary);
        background: var(--surface-low);
    }

    .navbar-mobile-actions .btn {
        width: 100%;
    }

    .hero-section {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .hero-grid,
    .company-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 40px 28px;
    }

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

    .process-grid,
    .company-benefits,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .jobs-carousel-slide {
        flex-basis: 50%;
        min-width: 50%;
    }

    .site-feedback-layout {
        grid-template-columns: 1fr;
    }

    .site-feedback-card h1 {
        max-width: none;
        font-size: 44px;
    }

    .site-feedback-footer-shell,
    #blazor-error-ui {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-line {
        display: none;
    }

    .section-row-heading,
    .job-card-footer,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .navbar-container {
        gap: 12px;
        min-height: 64px;
        padding-inline: var(--margin-mobile);
    }

    .navbar-logo {
        gap: 0;
    }

    .logo-image {
        width: 248px;
        max-width: calc(100vw - 144px);
        height: 42px;
        margin-right: -16px;
    }

    .navbar-logo-tenure {
        gap: 1px;
        padding-left: 8px;
    }

    .navbar-logo-tenure strong {
        font-size: 14px;
    }

    .navbar-logo-tenure span {
        font-size: 9px;
        letter-spacing: 0.05em;
    }

    .home-page {
        padding-top: 80px;
    }

    .site-feedback-hero {
        padding-top: 104px;
    }

    .site-feedback-card,
    .site-feedback-side-card,
    .site-feedback-footer-shell {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .site-feedback-card h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .site-feedback-card > p,
    .site-feedback-protocol p,
    .site-feedback-list li,
    .site-feedback-footer-brand span,
    .site-feedback-footer-links a {
        font-size: 15px;
    }

    .hero-copy h1 {
        font-size: 36px;
        line-height: 1.14;
    }

    .hero-copy p,
    .company-content p {
        font-size: 16px;
    }

    .section-row-heading h2,
    .center-heading h2,
    .company-content h2 {
        font-size: 26px;
    }

    .hero-actions,
    .form-grid,
    .footer-bottom div {
        flex-direction: column;
        display: flex;
    }

    .hero-actions .btn,
    .hero-company-link,
    .candidate-action .btn,
    .search-card button,
    .site-feedback-actions .btn {
        width: 100%;
    }

    .hero-section {
        background-position: 62% center;
    }

    .hero-content {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .search-card {
        padding: 20px;
        border-radius: 16px;
    }

    .company-form-card {
        padding: 24px;
        border-radius: 16px;
    }

    .jobs-carousel-shell {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jobs-carousel-shell .carousel-nav-button {
        display: none;
    }

    .jobs-carousel-slide {
        flex-basis: 100%;
        min-width: 100%;
    }

    .jobs-carousel-mobile .mud-carousel-control {
        color: var(--primary-container);
    }
}
