﻿/* Reset / base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:       #08111f;
    --surface:  rgba(15, 31, 54, .88);
    --surface-2: rgba(22, 43, 72, .92);
    --card:     #10223a;
    --border:   rgba(148, 163, 184, .22);
    --accent:   #18a0a6;
    --accent-2: #e11d48;
    --gold:     #f7c948;
    --green:    #2dd4bf;
    --red:      #e11d48;
    --live:     #fb7185;
    --text:     #f8fafc;
    --muted:    #a8b5c7;
    --shadow:   0 18px 55px rgba(0, 0, 0, .32);
    --radius:   8px;
}

html { font-size: 15px; }
body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(24, 160, 166, .24), transparent 32rem),
        radial-gradient(circle at 88% 4%, rgba(225, 29, 72, .18), transparent 28rem),
        linear-gradient(180deg, #09182a 0%, var(--bg) 48%, #06101d 100%);
    color: var(--text);
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 18px 18px 86px;
}

.page-shell {
    width: min(1360px, 100%);
    margin: 0 auto;
}

/* Topo */
.page-header {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: end;
    padding: 28px;
    min-height: 190px;
    background:
        linear-gradient(135deg, rgba(8, 17, 31, .25), rgba(8, 17, 31, .92)),
        linear-gradient(120deg, #0b5f68 0%, #10223a 48%, #5d1230 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 14px;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: auto -6% -58% 44%;
    height: 180px;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 26px);
    opacity: .35;
    transform: rotate(-8deg);
}
.page-header > * {
    position: relative;
    z-index: 1;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #d8fff9;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(247, 201, 72, .16);
}
.page-header h1 {
    max-width: 720px;
    font-size: clamp(2rem, 5vw, 4.7rem);
    line-height: .95;
    font-weight: 900;
}
.page-header p {
    max-width: 620px;
    color: #d6e3f1;
    font-size: .96rem;
    margin-top: 12px;
}
.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.hero-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    color: #d8fff9;
    font-size: .74rem;
    font-weight: 800;
    text-decoration: none;
}
.hero-links a:hover {
    background: rgba(45, 212, 191, .18);
    color: #fff;
}
.hero-badge {
    align-self: stretch;
    display: grid;
    place-items: center;
    width: 150px;
    min-height: 130px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.09);
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(14px);
}
.hero-badge strong {
    display: block;
    color: var(--gold);
    font-size: 2.4rem;
    line-height: 1;
}
.hero-badge span {
    display: block;
    margin-top: 8px;
    color: #dbeafe;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}
.summary-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.summary-card span {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.summary-card strong {
    display: block;
    margin-top: 7px;
    color: var(--text);
    font-size: 1.25rem;
    line-height: 1.1;
}

.seo-panel,
.content-grid,
.faq-section {
    margin: 14px 0 18px;
}
.seo-panel {
    display: grid;
    grid-template-columns: minmax(260px, .95fr) 2fr;
    gap: 14px;
    align-items: stretch;
}
.seo-panel__intro,
.seo-card,
.content-card,
.faq-section {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 31, 54, .74);
    box-shadow: 0 12px 35px rgba(0,0,0,.16);
}
.seo-panel__intro {
    padding: 18px;
}
.seo-panel h2,
.section-heading h2,
.content-card h2,
.faq-section h2 {
    color: #eef8ff;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 5px 0 8px;
}
.seo-panel p,
.section-heading p,
.content-card p,
.faq-list p {
    color: #c7d6e4;
    font-size: .84rem;
    line-height: 1.55;
}
.seo-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.seo-card {
    padding: 15px;
}
.seo-card h3 {
    color: #ecfdf5;
    font-size: .9rem;
    line-height: 1.25;
    margin-bottom: 7px;
}
.seo-card a,
.content-cta {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-top: 11px;
    padding: 0 11px;
    border-radius: 7px;
    background: rgba(45, 212, 191, .13);
    border: 1px solid rgba(45, 212, 191, .26);
    color: #ccfbf1;
    font-size: .74rem;
    font-weight: 900;
    text-decoration: none;
}
.seo-card a:hover,
.content-cta:hover {
    background: rgba(45, 212, 191, .22);
    color: #fff;
}
.section-heading {
    margin: 20px 0 12px;
}
.section-heading p {
    max-width: 760px;
    margin-top: 4px;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.content-card {
    padding: 18px;
}
.faq-section {
    padding: 18px;
}
.faq-list {
    display: grid;
    gap: 8px;
}
.faq-list details {
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 7px;
    background: rgba(5, 13, 25, .26);
    padding: 12px 13px;
}
.faq-list summary {
    cursor: pointer;
    color: #ecfdf5;
    font-size: .86rem;
    font-weight: 900;
}
.faq-list p {
    margin-top: 8px;
}

/* Abas */
.tabs {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    overflow-x: auto;
    padding: 8px;
    background: rgba(8, 17, 31, .82);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}
.tab-btn {
    flex-shrink: 0;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: transparent;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 800;
    cursor: pointer;
    transition: .15s;
    white-space: nowrap;
}
.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--accent), #0f766e);
    color: #fff;
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 8px 20px rgba(24, 160, 166, .22);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Secao */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 900;
    margin: 22px 0 12px;
    color: #eef8ff;
}
.section-title::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(24,160,166,.14);
}

/* Grid de grupos */
.grupos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 14px;
    margin-bottom: 10px;
}

.grupo-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
}

.grupo-card__header {
    background: linear-gradient(135deg, rgba(24,160,166,.94), rgba(15,118,110,.94));
    padding: 11px 14px;
    font-weight: 900;
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.promo-palpite {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 106px;
    padding: 20px 22px;
    border: 1px solid rgba(45, 212, 191, .3);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 6% 50%, rgba(45, 212, 191, .18), transparent 18rem),
        linear-gradient(135deg, rgba(20, 83, 45, .74), rgba(6, 78, 59, .58)),
        linear-gradient(90deg, rgba(5, 46, 22, .88), rgba(8, 47, 73, .82)),
        rgba(15, 31, 54, .94);
    box-shadow: 0 16px 36px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
    position: relative;
    overflow: hidden;
}
.promo-palpite::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #2dd4bf, #15803d);
}
.promo-palpite > * {
    position: relative;
    z-index: 1;
}
.promo-palpite__mark {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(5, 46, 22, .48);
    border: 1px solid rgba(45, 212, 191, .52);
    color: #ccfbf1;
    font-size: .78rem;
    font-weight: 900;
    box-shadow: inset 0 0 18px rgba(45, 212, 191, .12);
    overflow: hidden;
}
.promo-palpite__mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}
.promo-palpite__body {
    min-width: 0;
}
.promo-palpite__body strong {
    display: block;
    color: #ecfdf5;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.15;
}
.promo-palpite__body span {
    display: block;
    margin-top: 6px;
    color: #b7d8cf;
    font-size: .86rem;
    line-height: 1.4;
}
.promo-palpite__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 7px;
    background: #2dd4bf;
    color: #052e16;
    font-size: .8rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
.promo-palpite__btn:hover {
    background: #5eead4;
}
.all-games-day__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.all-games-day__header small {
    flex: 0 0 auto;
    color: rgba(255,255,255,.78);
    font-size: .68rem;
    letter-spacing: 0;
    text-transform: none;
}
.all-games-day.is-scroll-target {
    border-color: rgba(45, 212, 191, .5);
    box-shadow: 0 12px 35px rgba(0,0,0,.2), 0 0 0 1px rgba(45, 212, 191, .22);
}
.all-games-day.is-today {
    background: rgba(45, 212, 191, .08);
    border-color: rgba(45, 212, 191, .38);
}
.card-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, .14);
    background: rgba(5, 13, 25, .28);
    color: #d8fff9;
    padding: 10px 12px;
    font-size: .78rem;
    font-weight: 900;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.card-toggle:hover {
    background: rgba(24,160,166,.14);
    color: #fff;
}
.card-toggle__icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    line-height: 1;
    transition: transform .15s;
}
.card-toggle.is-open .card-toggle__icon {
    transform: rotate(180deg);
}
.grupo-matches.is-collapsed .match:nth-child(n+5) {
    display: none;
}

.standings-wrap {
    padding: 10px;
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    background: rgba(5, 13, 25, .16);
}
.standings-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: .74rem;
}
.standings-table th,
.standings-table td {
    padding: 7px 5px;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 184, .12);
}
.standings-table th {
    color: var(--muted);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.standings-table tbody tr:last-child td { border-bottom: none; }
.standings-table th:nth-child(2),
.standings-table td:nth-child(2) {
    width: 38%;
    text-align: left;
}
.standings-table th:first-child,
.standings-table td:first-child {
    width: 24px;
}
.standings-table th:nth-child(n+3),
.standings-table td:nth-child(n+3) {
    width: 24px;
}
.standings-team {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 6px;
    min-width: 0;
    font-weight: 800;
    color: #eef8ff;
}
.standings-team span {
    flex: 1 1 auto;
    min-width: 0;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.standings-team .standings-flag {
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
}
.standings-pos {
    color: var(--muted);
    font-weight: 900;
}
.standings-points {
    color: #fff;
    font-weight: 900;
}
.standings-table tr.is-direct {
    background: rgba(45, 212, 191, .09);
}
.standings-table tr.is-third {
    background: rgba(247, 201, 72, .08);
}
.standings-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding-top: 8px;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.3;
}
.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: -5px;
}
.legend-dot--direct { background: var(--green); }
.legend-dot--third { background: var(--gold); }
.standings-empty {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    background: rgba(5, 13, 25, .16);
    color: var(--muted);
    font-size: .82rem;
}

/* Jogo (fase de grupos) */
.match {
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    padding: 12px;
    transition: background .15s, transform .15s;
}
.match:last-child { border-bottom: none; }
.match:hover { background: rgba(255,255,255,.045); transform: translateX(2px); }
.match.is-placeholder { opacity: .68; }
.match.is-placeholder:hover { transform: none; }

.match--live { border-left: 4px solid var(--live); }
.match--done { border-left: 4px solid var(--green); }
.match--soon { border-left: 4px solid rgba(148,163,184,.18); }

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.match-date   { font-size: .75rem; color: var(--muted); }
.match-status { font-size: .68rem; padding: 3px 8px; border-radius: 999px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.status--live {
    background: rgba(220, 38, 38, .24);
    color: #fff;
    border: 1px solid rgba(248, 113, 113, .58);
    box-shadow: 0 0 0 1px rgba(220, 38, 38, .18), 0 0 14px rgba(220, 38, 38, .22);
}
.status--done { background: rgba(45,212,191,.15);  color: #99f6e4; }
.status--soon { background: rgba(148,163,184,.15); color: var(--muted); }

.match-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}
.match-team {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .88rem;
    font-weight: 700;
    min-width: 0;
}
.match-team span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match-team--away { justify-content: flex-end; text-align: right; }
.match-score {
    font-size: 1.02rem;
    font-weight: 900;
    text-align: center;
    min-width: 44px;
    background: rgba(5, 13, 25, .58);
    border: 1px solid rgba(255,255,255,.08);
    padding: 5px 9px;
    border-radius: 7px;
    letter-spacing: 2px;
}
.flag {
    width: 26px;
    height: 19px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}

/* Bracket */
.bracket-outer {
    overflow-x: auto;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
    background: rgba(15, 31, 54, .5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.bracket-wrap {
    display: flex;
    gap: 0;
    min-width: 940px;
    align-items: stretch;
    padding: 10px 0;
}

.b-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 4px;
}
.b-col__title {
    font-size: .68rem;
    font-weight: 700;
    text-align: center;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 4px 0 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
}

.b-col--final { flex: .7; }

.b-col__games {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 1;
    gap: 6px;
}

/* card pequeno do bracket */
.bm-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 6px 8px;
    font-size: .75rem;
    position: relative;
    box-shadow: 0 8px 22px rgba(0,0,0,.16);
}
.bm-card--live {
    border-color: #dc2626;
    box-shadow: 0 8px 22px rgba(0,0,0,.16), 0 0 0 1px rgba(220, 38, 38, .24);
}
.bm-card--done { border-color: var(--green); }
.bm-card.is-placeholder { opacity: .68; }

.bm-date   { display: block; font-size: .65rem; color: var(--muted); margin-bottom: 3px; }
.bm-team   { display: flex; align-items: center; gap: 5px; padding: 2px 0; font-weight: 500; overflow: hidden; }
.bm-team span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bm-team--away { justify-content: flex-end; text-align: right; }
.bm-team .flag { width: 18px; height: 14px; }
.bm-score  { text-align: center; font-weight: 700; font-size: .8rem;
             background: rgba(5,13,25,.58); padding: 3px 0; border-radius: 4px; margin: 3px 0; letter-spacing: 2px; }

/* card especial para final */
.bm-final {
    background: linear-gradient(135deg, rgba(111, 75, 9, .95) 0%, rgba(69, 26, 3, .95) 100%);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    flex: none;
    margin: auto 0;
}
.bm-final .trophy { font-size: 1.6rem; }
.bm-final .title  { font-weight: 700; color: var(--gold); font-size: .8rem; margin-top: 3px; }
.bm-final .sub    { font-size: .65rem; color: #fbbf24; margin-top: 2px; }

/* Erro/vazio */
.alert { padding: 14px; border-radius: var(--radius); margin-bottom: 16px; font-size: .88rem; }
.alert--error { background: rgba(220,38,38,.15); border: 1px solid #dc2626; color: #fca5a5; }
.alert--info  { background: rgba(245,158,11,.12); border: 1px solid #f59e0b; color: #fde68a; }

/* Rodape */
.site-footer {
    width: min(1360px, calc(100% - 36px));
    margin: 26px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(45, 212, 191, .18);
    border-radius: var(--radius);
    background: rgba(8, 17, 31, .72);
    color: var(--muted);
}
.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.site-footer__brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(45, 212, 191, .28);
}
.site-footer__brand strong {
    display: block;
    color: #ecfdf5;
    font-size: .95rem;
}
.site-footer__brand span {
    display: block;
    margin-top: 3px;
    font-size: .78rem;
    line-height: 1.35;
}
.site-footer__links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.site-footer__links a,
.fixed-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 7px;
    background: rgba(45, 212, 191, .14);
    border: 1px solid rgba(45, 212, 191, .28);
    color: #ccfbf1;
    font-size: .76rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
.site-footer__links a:hover,
.fixed-footer a:hover {
    background: rgba(45, 212, 191, .24);
    color: #fff;
}
.fixed-footer {
    position: fixed;
    left: 50%;
    bottom: 12px;
    z-index: 20;
    width: min(620px, calc(100% - 24px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(45, 212, 191, .25);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(5, 46, 22, .94), rgba(8, 47, 73, .92)),
        rgba(8, 17, 31, .96);
    box-shadow: 0 16px 44px rgba(0,0,0,.36);
    backdrop-filter: blur(12px);
}
.fixed-footer__text {
    min-width: 0;
}
.fixed-footer__text strong {
    display: block;
    color: #ecfdf5;
    font-size: .84rem;
}
.fixed-footer__text span {
    display: block;
    margin-top: 2px;
    color: #b7d8cf;
    font-size: .72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile */
@media (max-width: 760px) {
    body { padding: 10px 10px 92px; }
    .page-header {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        min-height: 0;
        margin-bottom: 10px;
    }
    .hero-kicker {
        gap: 7px;
        margin-bottom: 7px;
        font-size: .68rem;
        line-height: 1.2;
    }
    .page-header p {
        margin-top: 8px;
        font-size: .9rem;
        line-height: 1.45;
    }
    .hero-links {
        gap: 6px;
        margin-top: 11px;
    }
    .hero-links a {
        min-height: 28px;
        padding: 0 8px;
        font-size: .64rem;
    }
    .scores-section .section-heading { display: none; }
    .hero-badge {
        width: 100%;
        min-height: 64px;
        padding: 10px 12px;
        place-items: center;
    }
    .hero-badge strong {
        font-size: 2rem;
    }
    .hero-badge span {
        margin-top: 5px;
        font-size: .66rem;
    }
    .summary-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }
    .summary-card {
        padding: 8px 6px;
        text-align: center;
    }
    .summary-card span {
        font-size: .56rem;
        letter-spacing: .03em;
    }
    .summary-card strong {
        margin-top: 3px;
        font-size: .9rem;
    }
    .seo-panel,
    .content-grid {
        grid-template-columns: 1fr;
    }
    .seo-cards {
        grid-template-columns: 1fr;
    }
    .grupos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 500px) {
    .match-team { font-size: .8rem; }
    .flag { width: 22px; height: 16px; }
    .section-title { font-size: .95rem; }
    .grupos-grid { grid-template-columns: 1fr; }
    .promo-palpite { grid-template-columns: auto 1fr; min-height: 82px; padding: 12px; gap: 10px; }
    .promo-palpite__mark { width: 44px; height: 44px; font-size: .68rem; }
    .promo-palpite__body strong { font-size: .88rem; }
    .promo-palpite__body span { font-size: .72rem; }
    .promo-palpite__btn {
        grid-column: 1 / -1;
        min-height: 32px;
        padding: 0 10px;
        width: 100%;
    }
    .summary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .page-header h1 { font-size: 2.15rem; }
    .site-footer {
        width: calc(100% - 20px);
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .fixed-footer {
        bottom: 8px;
        align-items: center;
    }
    .fixed-footer__text span {
        display: none;
    }
}
