:root {
    --ink: #080808;
    --ink-soft: #1c1c1c;
    --paper: #f5f3ed;
    --white: #fff;
    --muted: #6b6b67;
    --line: #d9d6ce;
    --gold: #d8a723;
    --green: #22733d;
    --error: #a12622;
    --success: #1d6b3a;
    --radius: 2px;
    --shadow: 0 20px 60px rgba(0,0,0,.12);
    --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px;
    background: var(--white); color: var(--ink); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.utility-bar { background: var(--ink); color: #bbb; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.utility-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; }
.utility-inner nav { display: flex; gap: 24px; }
.utility-inner a { text-decoration: none; }
.utility-inner a:hover { color: var(--white); }
.site-header { position: relative; z-index: 10; background: var(--white); border-bottom: 1px solid #e8e6df; }
.header-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.brand img { display: block; width: min(390px, 38vw); height: auto; }
.primary-navigation { display: flex; align-items: center; gap: 7px; }
.primary-navigation a {
    padding: 12px 15px; color: var(--ink); text-decoration: none; font-size: .85rem;
    font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.primary-navigation a:hover, .primary-navigation a:focus { background: #efede7; }
.primary-navigation .nav-emphasis { background: var(--ink); color: var(--white); }
.primary-navigation .nav-emphasis:hover { background: var(--gold); color: var(--ink); }
.menu-toggle { display: none; width: 45px; height: 45px; border: 0; background: var(--ink); padding: 12px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--white); }

.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--white); }
.hero::before {
    content: ""; position: absolute; z-index: 1; inset: 0;
    background: linear-gradient(90deg, rgba(3,3,3,.93) 0%, rgba(3,3,3,.78) 42%, rgba(3,3,3,.42) 74%, rgba(3,3,3,.58) 100%);
}
.hero::after {
    content: ""; position: absolute; z-index: 1; inset: 0 0 0 56%; opacity: .18;
    background-image: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.16) 40%, rgba(255,255,255,.16) 42%, transparent 42%);
    background-size: 26px 26px;
}
.hero-carousel { position: absolute; z-index: 0; inset: 0; background: var(--ink); }
.hero-slide {
    position: absolute; inset: -3%; opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.07);
    transform: scale(1.015); transition: transform 9s ease-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-active img { transform: scale(1.08); }
.hero-slide-shop img { object-position: center center; }
.hero-slide-campeonato img { object-position: center 63%; }
.hero-slide-sarau img { object-position: center 52%; }
.hero-checkers {
    position: absolute; z-index: 2; top: 0; left: 0; width: 22px; height: 100%;
    background: conic-gradient(var(--white) 25%, #3a3a3a 0 50%, var(--white) 0 75%, #3a3a3a 0) 0 0 / 22px 22px;
}
.hero-grid { position: relative; z-index: 3; min-height: 590px; display: grid; grid-template-columns: 1.6fr .75fr; align-items: center; gap: 80px; padding-block: 80px; }
.eyebrow { margin: 0 0 16px; color: #555; font-size: .74rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
    margin: 0; max-width: 790px; font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 7vw, 6.8rem); font-weight: 400; line-height: .92; letter-spacing: -.05em;
}
.hero h1 em { color: var(--gold); font-weight: 400; }
.hero-lead { max-width: 650px; margin: 32px 0; color: #c9c9c9; font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
    display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 22px;
    border: 1px solid var(--ink); border-radius: var(--radius); background: var(--ink); color: var(--white);
    font-weight: 800; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; cursor: pointer;
}
.button:hover, .button:focus { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.button-primary { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--white); border-color: var(--white); }
.button-ghost { border-color: #676767; background: transparent; }
.button-secondary { background: var(--white); color: var(--ink); }
.button-small { min-height: 38px; padding: 8px 14px; font-size: .75rem; }
.hero-card {
    position: relative; min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 34px; border: 1px solid rgba(255,255,255,.28); background: rgba(8,8,8,.78); box-shadow: var(--shadow);
}
.hero-number { color: var(--white); font-family: Georgia, serif; font-size: clamp(4rem, 8vw, 7.5rem); line-height: .85; }
.hero-card p { margin: 20px 0 34px; color: #aaa; }
.mini-checkers { height: 22px; background: conic-gradient(var(--white) 25%, var(--ink) 0 50%, var(--white) 0 75%, var(--ink) 0) 0 0 / 22px 22px; }

.section { padding-block: 88px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.section-heading h2, .content-hero h1, .form-header h1, .legal-page h1 {
    margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 4.7rem);
    font-weight: 400; line-height: 1; letter-spacing: -.04em;
}
.section-heading > p { max-width: 420px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-card {
    position: relative; min-height: 350px; display: flex; flex-direction: column; padding: 30px;
    border-right: 1px solid var(--line); background: var(--white); text-decoration: none; transition: transform .2s, background .2s;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { z-index: 1; transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--gold); }
.card-index { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.service-icon { margin: auto 0 20px; font-family: Georgia, serif; font-size: 3.7rem; font-weight: 300; }
.service-card h3 { margin: 0; font-size: 1.5rem; }
.service-card p { margin: 8px 0 28px; color: var(--muted); }
.card-link { margin-top: auto; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.manifesto { overflow: hidden; background: var(--ink); color: var(--white); }
.manifesto-grid { min-height: 370px; display: grid; grid-template-columns: .55fr 2fr; align-items: center; gap: 70px; }
.manifesto-mark { display: block; width: min(100%, 290px); height: auto; margin: 0 auto; }
.manifesto h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 400; line-height: 1.05; }
.eyebrow.light { color: #aaa; }
.public-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.public-steps li { display: flex; gap: 20px; padding: 30px 24px; border-right: 1px solid var(--line); }
.public-steps li:last-child { border-right: 0; }
.public-steps span { color: var(--gold); font-family: Georgia, serif; font-size: 2rem; }
.public-steps h3 { margin: 2px 0 5px; }
.public-steps p { margin: 0; color: var(--muted); font-size: .92rem; }
.home-campaign-highlight {
    display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); min-height: 430px; overflow: hidden;
    background: var(--ink); color: var(--white); box-shadow: var(--shadow); text-decoration: none;
}
.home-campaign-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 54px; }
.home-campaign-copy .eyebrow { color: var(--gold); }
.home-campaign-copy h2 {
    max-width: 600px; margin: 0; font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 400; line-height: .98; letter-spacing: -.04em;
}
.home-campaign-copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 32px; color: #c9c9c9; font-size: 1.02rem; }
.home-campaign-copy > span { color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-campaign-copy > span b { display: inline-block; margin-left: 8px; transition: transform .2s; }
.home-campaign-visual { position: relative; min-height: 430px; overflow: hidden; }
.home-campaign-visual::after {
    content: ""; position: absolute; inset: 0; border-left: 1px solid rgba(255,255,255,.2);
    background: linear-gradient(90deg, rgba(9,9,9,.35), transparent 35%);
}
.home-campaign-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s ease; }
.home-campaign-highlight:hover .home-campaign-visual img,
.home-campaign-highlight:focus .home-campaign-visual img { transform: scale(1.035); }
.home-campaign-highlight:hover .home-campaign-copy > span b,
.home-campaign-highlight:focus .home-campaign-copy > span b { transform: translateX(5px); }

.content-hero { padding: 70px 0 50px; border-bottom: 1px solid var(--line); background: var(--white); }
.content-hero p:last-child { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 1.1rem; }
.form-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 50px; padding-block: 58px 90px; }
.form-aside { align-self: start; position: sticky; top: 30px; }
.form-progress { margin: 0; padding: 0; list-style: none; }
.form-progress li { position: relative; display: flex; gap: 14px; align-items: center; padding: 12px 0; color: #8a8984; font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.form-progress li::before {
    content: attr(data-progress-step); display: grid; width: 34px; height: 34px; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; background: var(--paper);
}
.form-progress li.is-active { color: var(--ink); }
.form-progress li.is-active::before { border-color: var(--ink); background: var(--ink); color: var(--white); }
.form-progress li.is-complete::before { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.security-note { margin-top: 28px; padding: 18px; border-left: 3px solid var(--gold); background: #ebe8e0; font-size: .82rem; color: #555; }
.application-form { min-width: 0; }
.form-panel { display: none; scroll-margin-top: 20px; }
.form-panel.is-active { display: block; }
.form-header { margin-bottom: 34px; }
.form-header h1 { font-size: clamp(2rem, 4vw, 3.7rem); }
.form-header p { color: var(--muted); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .fieldset-label { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
    width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bdbab2;
    border-radius: 0; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(216,167,35,.35); border-color: var(--ink); }
.field-hint { color: var(--muted); font-size: .78rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.choice-card { position: relative; display: block; min-height: 180px; padding: 22px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card:has(input:checked) { outline: 3px solid var(--gold); border-color: var(--ink); }
.choice-card strong { display: block; margin: 25px 0 8px; font-size: 1.12rem; }
.choice-card small { display: block; color: var(--muted); }
.choice-card .choice-tag { color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.membership-submit-state { position: relative; display: inline-flex; align-items: center; }
.membership-submit-state.is-submitting .button {
    pointer-events: none;
    cursor: wait;
    opacity: .72;
    padding-right: 48px;
}
.membership-submit-spinner {
    position: absolute;
    right: 18px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(5, 5, 5, .28);
    border-top-color: var(--ink);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}
.membership-submit-state.is-submitting .membership-submit-spinner {
    opacity: 1;
    animation: membership-submit-spin .75s linear infinite;
}
@keyframes membership-submit-spin { to { transform: rotate(360deg); } }
.checkbox-line { display: flex; gap: 12px; align-items: flex-start; margin: 12px 0; }
.checkbox-line input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; }
.validation-summary { margin-bottom: 22px; padding: 16px 18px; border-left: 4px solid var(--error); background: #f8e6e4; color: #741d1a; }
.validation-summary:empty { display: none; }
.status-card { max-width: 780px; margin: 60px auto 90px; padding: 40px; background: var(--white); box-shadow: var(--shadow); }
.status-code { display: inline-block; padding: 8px 12px; background: var(--ink); color: var(--white); font-family: Consolas, monospace; letter-spacing: .1em; }
.status-pill { display: inline-block; padding: 5px 9px; background: #e6f1e8; color: var(--success); font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.status-instructions { margin-top: 24px; padding: 20px; border-left: 4px solid var(--gold); background: #f4efdf; }
.status-actions { margin-top: 28px; }
.status-result { margin-top: 32px; }
.status-result hr { margin: 30px 0; border: 0; border-top: 1px solid var(--line); }
.reference-input { text-transform: uppercase; letter-spacing: .12em; }
.confirmation-box { padding: 24px; border: 1px solid var(--line); background: var(--white); }

.notice { margin-bottom: 24px; padding: 16px 18px; border-left: 4px solid var(--gold); background: #fff8df; }
.notice-error { border-color: var(--error); background: #f8e6e4; color: #741d1a; }
.notice-success { border-color: var(--success); background: #e6f1e8; color: #1f6835; }
.field-error { color: var(--error); font-size: .78rem; font-weight: 700; }
.button-full { width: 100%; }
.back-link { color: var(--ink); font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }

.member-auth-section { padding: 70px 0 95px; background: var(--paper); }
.member-auth-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(380px, 1fr); gap: 80px; align-items: start; }
.member-auth-copy h2, .member-panel h2, .member-form-heading h2 {
    margin: 12px 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1;
}
.member-auth-copy > p { max-width: 480px; color: var(--muted); font-size: 1.05rem; }
.member-security-note { display: block; max-width: 480px; }
.member-auth-card { padding: 38px; border-top: 7px solid var(--gold); background: var(--white); box-shadow: var(--shadow); }
.member-auth-card .field { margin-bottom: 22px; }
.member-auth-card input[type="text"], .member-auth-card input[type="number"] {
    width: 100%; min-height: 54px; padding: 12px 14px; border: 1px solid #bdbab2; background: var(--white); color: var(--ink);
}
.member-auth-help { margin: 20px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }

.member-hero { background: var(--ink); color: var(--white); }
.member-hero-inner { min-height: 300px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.member-hero h1 { margin: 8px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; line-height: 1; }
.member-hero p:last-child { margin: 0; color: #aaa; }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.member-dashboard-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, .8fr); gap: 28px; align-items: start; }
.member-panel { padding: 32px; border: 1px solid var(--line); background: var(--white); }
.member-panel-heading { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-bottom: 26px; }
.member-panel-heading h2 { margin-bottom: 0; }
.member-panel-heading > a { color: var(--ink); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.member-data-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; border-top: 1px solid var(--line); }
.member-data-list > div { min-width: 0; padding: 18px 12px 18px 0; border-bottom: 1px solid var(--line); }
.member-data-list > div.full { grid-column: 1 / -1; }
.member-data-list dt { margin-bottom: 6px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.member-data-list dd { margin: 0; overflow-wrap: anywhere; font-size: 1rem; }
.member-actions-panel { background: var(--gold); }
.member-actions-panel h2 { font-size: 2.3rem; }
.member-action-link { display: block; padding: 19px 0; border-top: 1px solid rgba(0,0,0,.25); color: var(--ink); text-decoration: none; }
.member-action-link strong, .member-action-link span { display: block; }
.member-action-link strong { margin-bottom: 5px; }
.member-action-link span { font-size: .8rem; }
.member-history-panel { margin-top: 28px; }
.member-empty { padding: 24px; background: var(--paper); color: var(--muted); }
.table-scroll { overflow-x: auto; }
.member-table { width: 100%; border-collapse: collapse; }
.member-table th, .member-table td { padding: 15px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.member-table th { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.member-edit-shell { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 55px; align-items: start; }
.member-edit-intro { position: sticky; top: 30px; }
.member-edit-form { padding: 38px; border: 1px solid var(--line); background: var(--white); }
.member-form-heading { margin-bottom: 30px; }
.member-form-heading p { margin-bottom: 0; color: var(--muted); }

.legal-page { width: min(calc(100% - 40px), 850px); margin: 0 auto; padding: 70px 0 100px; }
.legal-page .legal-meta { color: var(--muted); }
.legal-page h2 { margin-top: 42px; font-family: Georgia, serif; font-size: 1.8rem; }
.legal-page h3 { margin-top: 28px; }
.legal-page p, .legal-page li { color: #3e3e3b; }
.legal-notice { margin: 28px 0; padding: 18px; border: 1px solid var(--gold); background: #fff8df; }
.error-page { min-height: 55vh; display: grid; place-items: center; text-align: center; padding: 70px 20px; }
.error-page strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }

.save-page { padding: 56px 0 90px; background: var(--paper); }
.save-page-shell { width: min(calc(100% - 40px), 1180px); }
.save-campaign-image {
    display: block; width: min(100%, 1100px); height: auto; margin: 0 auto 32px;
    border-radius: 18px; box-shadow: var(--shadow);
}
.save-widget {
    max-width: 1100px; margin: 0 auto; overflow: hidden; border: 1px solid #d8d8d8; border-radius: 18px;
    background: var(--white); color: #171717; font-family: Arial, Helvetica, sans-serif; line-height: 1.5;
}
.save-widget h1, .save-widget h2, .save-widget h3, .save-widget p { margin-top: 0; }
.save-widget-header { padding: 52px 32px 46px; background: #101010; color: var(--white); text-align: center; }
.save-widget-kicker {
    margin-bottom: 12px; color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.save-widget-header h1 { margin-bottom: 18px; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; }
.save-widget-header > p:last-child { max-width: 720px; margin: 0 auto; color: #d5d5d5; font-size: 1.05rem; }
.save-contribution { padding: 44px 38px; background: #f4f4f4; }
.save-section-heading { margin-bottom: 26px; text-align: center; }
.save-section-heading h2, .save-important h2, .save-share h2 { margin-bottom: 5px; font-size: 1.55rem; }
.save-section-heading p, .save-share p { margin-bottom: 0; color: #666; }
.save-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.save-method-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid #d8d8d8; border-radius: 14px; background: var(--white); }
.save-method-label { margin-bottom: 7px; color: #777; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.save-method-card h3 { margin-bottom: 9px; font-size: 1.35rem; }
.save-method-card > p:not(.save-method-label) { color: #555; }
.save-bank-details, .save-card-details { margin-top: auto; padding: 18px; border-radius: 10px; background: #f1f1f1; }
.save-bank-details span, .save-card-details span { display: block; color: #666; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.save-bank-details strong, .save-card-details strong { display: block; margin: 5px 0; font-size: clamp(1.05rem, 2.7vw, 1.4rem); overflow-wrap: anywhere; }
.save-bank-details small, .save-card-details small { color: #666; }
.save-action {
    display: flex; min-height: 46px; align-items: center; justify-content: center; padding: 11px 16px;
    border-radius: 8px; font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-align: center;
    text-decoration: none; text-transform: uppercase; transition: filter .2s, transform .2s;
}
.save-action-card { margin-top: 14px; background: var(--gold); color: var(--ink); }
.save-action:hover, .save-action:focus { filter: brightness(.92); transform: translateY(-2px); }
.save-proof {
    display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 22px; padding: 25px 28px;
    border-radius: 14px; background: #101010; color: var(--white);
}
.save-proof h3 { margin-bottom: 5px; font-size: 1.25rem; }
.save-proof p { margin-bottom: 0; color: #c9c9c9; }
.save-action-light { flex: 0 0 auto; background: var(--white); color: var(--ink); }
.save-information { display: grid; grid-template-columns: minmax(210px, .55fr) minmax(0, 1.45fr); gap: 38px; padding: 46px 38px 0; }
.save-shirt-value {
    display: flex; min-height: 190px; flex-direction: column; align-items: center; justify-content: center; padding: 25px;
    border: 2px solid var(--gold); border-radius: 14px; text-align: center;
}
.save-shirt-value strong { font-size: 4rem; line-height: 1; }
.save-shirt-value span { max-width: 180px; margin-top: 12px; color: #555; font-weight: 700; }
.save-important h2 { margin-bottom: 14px; }
.save-important ul { margin: 0; padding-left: 20px; }
.save-important li { margin-bottom: 9px; color: #3f3f3f; }
.save-audit {
    grid-column: 1 / -1; margin: 0; padding: 24px 0 38px; border-top: 1px solid #ddd;
    color: #555; font-size: .88rem; text-align: center;
}
.save-share {
    display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 38px;
    border-top: 1px solid #ddd; background: #f4f4f4;
}
.save-share-options { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.save-share-options a {
    min-width: 92px; padding: 10px 13px; border-radius: 7px; font-size: .76rem; font-weight: 700;
    text-align: center; text-decoration: none; transition: filter .2s, transform .2s;
}
.save-share-options a:hover, .save-share-options a:focus { filter: brightness(.9); transform: translateY(-2px); }
.save-share-facebook { background: #1877f2; color: var(--white); }
.save-share-whatsapp { background: #25d366; color: #111; }
.save-share-x { background: #111; color: var(--white); }
.save-share-linkedin { background: #0a66c2; color: var(--white); }
.save-signature {
    margin: 34px 0 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.4rem); font-style: italic; text-align: center;
}

.site-footer { background: var(--ink); color: var(--white); }
.checker-line { height: 18px; background: conic-gradient(var(--white) 25%, var(--ink) 0 50%, var(--white) 0 75%, var(--ink) 0) 0 0 / 18px 18px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; padding-block: 65px; }
.footer-grid h2 { max-width: 430px; margin: 0; font-family: Georgia, serif; font-size: 2.4rem; font-weight: 400; }
.footer-grid h3 { color: #888; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 9px 0; color: #d0d0d0; text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-kicker { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .2em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 18px; border-top: 1px solid #333; color: #777; font-size: .73rem; text-transform: uppercase; }
.cookie-notice {
    position: fixed; z-index: 50; right: 22px; bottom: 22px; width: min(560px, calc(100% - 44px));
    display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 20px;
    border: 1px solid #444; background: var(--ink); color: var(--white); box-shadow: var(--shadow);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 4px 0 0; color: #aaa; font-size: .82rem; }
.cookie-actions { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.cookie-actions a { color: #ddd; font-size: .75rem; }

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .primary-navigation {
        position: absolute; top: 100%; right: 20px; left: 20px; display: none; align-items: stretch;
        flex-direction: column; padding: 12px; background: var(--white); box-shadow: var(--shadow);
    }
    .primary-navigation.is-open { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 45px; }
    .hero-card { min-height: 220px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
    .manifesto-grid { grid-template-columns: 1fr 3fr; gap: 30px; }
    .manifesto-mark { width: min(100%, 190px); }
    .home-campaign-highlight { grid-template-columns: 1fr; }
    .home-campaign-visual { min-height: 330px; grid-row: 1; }
    .form-layout { grid-template-columns: 1fr; }
    .form-aside { position: static; }
    .form-progress { display: flex; justify-content: space-between; gap: 8px; }
    .form-progress li { flex-direction: column; flex: 1; text-align: center; font-size: .65rem; }
    .security-note { display: none; }
    .choice-grid { grid-template-columns: 1fr; }
    .member-auth-grid, .member-dashboard-grid, .member-edit-shell { grid-template-columns: 1fr; }
    .member-auth-grid { gap: 35px; }
    .member-edit-intro { position: static; }
    .member-hero-inner { min-height: 260px; }
    .save-methods, .save-information { grid-template-columns: 1fr; }
    .save-proof, .save-share { align-items: stretch; flex-direction: column; }
    .save-action-light { flex: auto; }
    .save-share-options { justify-content: flex-start; }
}

@media (max-width: 650px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .utility-inner > span { display: none; }
    .utility-inner { justify-content: center; }
    .brand img { width: min(245px, 68vw); }
    .header-inner { min-height: 84px; }
    .hero-checkers { width: 12px; background-size: 12px 12px; }
    .hero-grid { min-height: auto; padding: 65px 10px 65px 22px; }
    .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
    .hero::before { background: rgba(3,3,3,.8); }
    .hero-slide-campeonato img { object-position: center 68%; }
    .button-row .button { width: 100%; }
    .section { padding-block: 62px; }
    .section-heading { display: block; }
    .manifesto-grid { grid-template-columns: 1fr; padding-block: 55px; }
    .manifesto-mark { width: 180px; margin-bottom: 8px; }
    .home-campaign-copy { padding: 38px 24px; }
    .home-campaign-visual { min-height: 240px; }
    .public-steps { grid-template-columns: 1fr; }
    .public-steps li { border-right: 0; border-bottom: 1px solid var(--line); }
    .field-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .form-actions { flex-direction: column-reverse; }
    .form-actions .membership-submit-state { width: 100%; }
    .form-actions .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-bottom { flex-direction: column; }
    .cookie-notice { align-items: stretch; flex-direction: column; }
    .cookie-actions { justify-content: space-between; }
    .member-auth-card, .member-panel, .member-edit-form { padding: 25px 20px; }
    .member-hero-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 50px; }
    .member-data-list { grid-template-columns: 1fr; }
    .member-data-list > div.full { grid-column: auto; }
    .save-page { padding: 28px 0 60px; }
    .save-page-shell { width: min(calc(100% - 20px), 1180px); }
    .save-campaign-image, .save-widget { border-radius: 12px; }
    .save-widget-header { padding: 38px 20px 34px; }
    .save-contribution, .save-information { padding-right: 16px; padding-left: 16px; }
    .save-method-card { padding: 22px 18px; }
    .save-proof { padding: 22px 18px; }
    .save-information { gap: 26px; padding-top: 30px; }
    .save-audit { padding-bottom: 28px; }
    .save-share { padding: 26px 16px; }
    .save-share-options { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide, .hero-slide img { transition: none; }
    .hero-slide.is-active img { transform: scale(1.015); }
}
