/* ============================================================
   ADV - Associação Desportiva de Valongo
   Folha de estilos principal  |  Verde #00a651  |  Preto #0d0d0d
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:       #00a651;
    --green-dark:  #007d3c;
    --green-light: #4dc97a;
    --black:       #0d0d0d;
    --dark:        #121212;
    --dark2:       #1a1a1a;
    --dark3:       #222222;
    --border:      #2a2a2a;
    --text:        #e8e8e8;
    --text-muted:  #888;
    --white:       #ffffff;
    --radius:      8px;
    --transition:  .25s ease;
    --shadow:      0 4px 20px rgba(0,0,0,.4);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

h1, h2, h3, h4, h5 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

a { color: #00a651; text-decoration: none; transition: color .25s ease; }
a:hover { color: #4dc97a; }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Utilitários ──────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-green  { background: #00a651;    color: #fff; }
.badge-red    { background: #c0392b;          color: #fff; }
.badge-gray   { background: #222222;     color: #888888; }

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.8rem;
    background: #00a651;
    border-radius: 2px;
    flex-shrink: 0;
}

section { padding: 4rem 0; }

/* ── Botões ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.4rem;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background .25s ease, transform .1s;
}
.btn:active { transform: scale(.98); }
.btn-green  { background: #00a651; color: #fff; }
.btn-green:hover { background: #007d3c; color: #fff; }
.btn-outline { background: transparent; color: #00a651; border: 2px solid #00a651; }
.btn-outline:hover { background: #00a651; color: #fff; }
.btn-dark   { background: #222222; color: #e8e8e8; }
.btn-dark:hover { background: #2a2a2a; color: #fff; }
.btn-sm { padding: .4rem .9rem; font-size: .8rem; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #121212;
    border-bottom: 3px solid #00a651;
    box-shadow: 0 2px 16px rgba(0,0,0,.6);
    /* necessário para o menu mobile absoluto */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-emblem {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-emblem img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}
.logo-emblem.small { width: 36px; height: 36px; }
.logo-emblem.small img { width: 36px; height: 36px; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-nome  { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; }
.logo-cidade{ font-size: .75rem; color: #00a651; font-weight: 600; }

.main-nav {
    display: flex;
    gap: .25rem;
}
.main-nav a {
    color: #e8e8e8;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .5rem .9rem;
    border-radius: 5px;
    transition: background .25s ease, color .25s ease;
}
.main-nav a:hover, .main-nav a.active {
    background: #00a651;
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8e8e8;
    border-radius: 2px;
    transition: .25s ease;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #121212 0%, #0a1f0a 60%, #121212 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: 'ADV';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Oswald', sans-serif;
    font-size: 20rem;
    font-weight: 700;
    color: rgba(0, 166, 81, .04);
    pointer-events: none;
    line-height: 1;
}

.hero-content { max-width: 640px; }
.hero-badge {
    display: inline-block;
    background: #00a651;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: 2.2rem;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.hero h1 span { color: #00a651; }
.hero p { color: #888888; font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Widgets homepage ─────────────────────────────────────── */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

/* Widget jogos */
.widget {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}
.widget-header {
    background: #222222;
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2a2a2a;
}
.widget-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #00a651;
}
.widget-body { padding: 0; }

.jogo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid #2a2a2a;
    transition: background .25s ease;
}
.jogo-item:last-child { border-bottom: none; }
.jogo-item:hover { background: #222222; }

.jogo-data {
    text-align: center;
    min-width: 48px;
}
.jogo-data .dia  { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: #00a651; line-height: 1; }
.jogo-data .mes  { font-size: .65rem; text-transform: uppercase; color: #888888; }
.jogo-data .hora { font-size: .7rem; color: #888888; }

.jogo-info { flex: 1; min-width: 0; }
.jogo-adversario { font-weight: 600; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jogo-meta { font-size: .75rem; color: #888888; }

.jogo-local-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: .15rem .45rem;
    border-radius: 3px;
    flex-shrink: 0;
}
.tag-casa { background: rgba(0,166,81,.15); color: #00a651; }
.tag-fora { background: rgba(200,200,200,.1); color: #888888; }

/* Resultado */
.resultado-placar {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    min-width: 60px;
}
.placar-win  { color: #00a651; }
.placar-loss { color: #e74c3c; }
.placar-draw { color: #f39c12; }

/* Sem dados */
.empty-state {
    padding: 2rem;
    text-align: center;
    color: #888888;
    font-size: .9rem;
}

/* ── Cards de notícias ────────────────────────────────────── */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.noticia-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.noticia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.noticia-img {
    height: 180px;
    background: #222222;
    overflow: hidden;
    position: relative;
}
.noticia-img img { width: 100%; height: 100%; object-fit: cover; }
.noticia-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #222222, #0f2f0f);
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: rgba(0,166,81,.3);
}

.noticia-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.noticia-date { font-size: .75rem; color: #888888; margin-bottom: .5rem; }
.noticia-body h3 { font-size: 1.1rem; margin-bottom: .5rem; line-height: 1.3; }
.noticia-body h3 a { color: #ffffff; }
.noticia-body h3 a:hover { color: #00a651; }
.noticia-resumo { color: #888888; font-size: .875rem; flex: 1; margin-bottom: 1rem; }
.noticia-footer { margin-top: auto; }

/* Notícia destaque */
.noticia-destaque {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}
.noticia-destaque .noticia-img {
    height: 100%;
    min-height: 240px;
}
.noticia-destaque .noticia-body {
    padding: 2rem;
    justify-content: center;
}
.noticia-destaque .noticia-body h3 { font-size: 1.5rem; }

/* ── Equipa ───────────────────────────────────────────────── */
.plantel-grupo { margin-bottom: 3rem; }
.plantel-grupo h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #00a651;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: .5rem;
    margin-bottom: 1.5rem;
}

.jogadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}

.jogador-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease;
}
.jogador-card:hover { transform: translateY(-3px); border-color: #00a651; }

.jogador-foto {
    height: 160px;
    background: linear-gradient(135deg, #222222, #0a280a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(0,166,81,.25);
    overflow: hidden;
    position: relative;
}
.jogador-foto img { width: 100%; height: 100%; object-fit: cover; }

.jogador-numero {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #00a651;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jogador-info { padding: .85rem .75rem; }
.jogador-info h4 { font-size: .9rem; color: #fff; }
.jogador-posicao { font-size: .75rem; color: #888888; }

/* ── Jogos página ─────────────────────────────────────────── */
.jogos-lista { display: flex; flex-direction: column; gap: 1rem; }

.jogo-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: border-color .25s ease;
}
.jogo-card:hover { border-color: #00a651; }

.jogo-card-data {
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}
.jogo-card-data .dia  { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: #00a651; line-height: 1; }
.jogo-card-data .mes  { font-size: .7rem; text-transform: uppercase; color: #888888; }
.jogo-card-data .ano  { font-size: .65rem; color: #888888; }

.jogo-card-info { flex: 1; }
.jogo-card-adversario { font-family: 'Oswald', sans-serif; font-size: 1.25rem; margin-bottom: .25rem; }
.jogo-card-meta { font-size: .8rem; color: #888888; }
.jogo-card-meta span { margin-right: 1rem; }

.jogo-card-resultado {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    min-width: 90px;
    text-align: center;
}
.jogo-card-tags { display: flex; flex-direction: column; gap: .4rem; align-items: flex-end; min-width: 80px; }

/* ── Notícia individual ───────────────────────────────────── */
.noticia-single { max-width: 800px; margin: 0 auto; }
.noticia-single .noticia-capa {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.noticia-single h1 { font-size: 2.2rem; margin-bottom: 1rem; }
.noticia-single .meta { color: #888888; font-size: .875rem; margin-bottom: 2rem; }
.noticia-conteudo { color: #e8e8e8; line-height: 1.85; font-size: 1rem; }
.noticia-conteudo p  { margin-bottom: 1.2rem; }
.noticia-conteudo h2 { margin: 2rem 0 .75rem; }
.noticia-conteudo img{ border-radius: 8px; margin: 1rem 0; }

/* ── Paginação ────────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
}
.pagination a, .pagination span {
    padding: .5rem .9rem;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: .9rem;
    font-weight: 600;
}
.pagination a { background: #222222; color: #e8e8e8; }
.pagination a:hover { background: #00a651; color: #fff; }
.pagination span { background: #00a651; color: #fff; }

/* ── Page header ──────────────────────────────────────────── */
.page-header {
    background: linear-gradient(to right, #121212, #0a1f0a);
    padding: 3rem 0 2.5rem;
    border-bottom: 3px solid #00a651;
}
.page-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.page-header p { color: #888888; margin-top: .5rem; }

/* ── Flash messages ───────────────────────────────────────── */
.flash {
    padding: .9rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.flash-success { background: rgba(0,166,81,.15); border: 1px solid #00a651; color: #4dc97a; }
.flash-error   { background: rgba(192,57,43,.15); border: 1px solid #c0392b; color: #e74c3c; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: #121212;
    border-top: 3px solid #00a651;
    margin-top: 4rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem 2rem;
}
.footer-brand p { color: #888888; font-size: .875rem; margin-top: .75rem; line-height: 1.5; }
.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #00a651;
    margin-bottom: .75rem;
}
.footer-links a {
    display: block;
    color: #888888;
    font-size: .875rem;
    margin-bottom: .4rem;
}
.footer-links a:hover { color: #4dc97a; }
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 1rem 1.25rem;
}
.footer-bottom p { color: #888888; font-size: .8rem; text-align: center; }

/* ── Admin ────────────────────────────────────────────────── */
.admin-body {
    background: #0f0f0f;
    font-family: 'Open Sans', sans-serif;
    color: #e8e8e8;
    min-height: 100vh;
}

.admin-topbar {
    background: #121212;
    border-bottom: 3px solid #00a651;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}
.admin-topbar .brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.admin-topbar .brand span { color: #00a651; }
.admin-topbar-right { display: flex; align-items: center; gap: 1rem; }
.admin-topbar-right a { color: #888888; font-size: .85rem; }
.admin-topbar-right a:hover { color: #4dc97a; }

.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: calc(100vh - 60px);
}

.admin-sidebar {
    background: #1a1a1a;
    border-right: 1px solid #2a2a2a;
    padding: 1.5rem 0;
}
.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #888888;
    font-size: .875rem;
    font-weight: 600;
    padding: .75rem 1.5rem;
    transition: background .25s ease, color .25s ease;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
    background: #222222;
    color: #4dc97a;
}
.admin-sidebar nav a.active { border-right: 3px solid #00a651; }
.admin-sidebar .nav-section {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #2a2a2a;
    padding: 1.25rem 1.5rem .35rem;
}

.admin-main { padding: 2rem; }
.admin-page-title { font-size: 1.6rem; text-transform: uppercase; margin-bottom: 1.75rem; }

/* Stats cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.stat-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.25rem;
    border-top: 3px solid #00a651;
}
.stat-card .stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00a651;
    line-height: 1;
}
.stat-card .stat-label { font-size: .8rem; color: #888888; margin-top: .3rem; }

/* Admin table */
.admin-table-wrap {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}
.admin-table-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2a2a2a;
}
.admin-table-header h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }

table { width: 100%; border-collapse: collapse; }
th {
    background: #222222;
    color: #888888;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 600;
}
td {
    padding: .85rem 1rem;
    font-size: .875rem;
    border-bottom: 1px solid #2a2a2a;
    vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #222222; }

.table-actions { display: flex; gap: .5rem; }

/* Admin form */
.admin-form-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 2rem;
    max-width: 860px;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888888;
    margin-bottom: .5rem;
}
.form-control {
    width: 100%;
    background: #222222;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: #e8e8e8;
    padding: .65rem .9rem;
    font-size: .9rem;
    font-family: inherit;
    transition: border-color .25s ease;
}
.form-control:focus {
    outline: none;
    border-color: #00a651;
}
select.form-control option { background: #222222; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-check { display: flex; align-items: center; gap: .6rem; }
.form-check input[type=checkbox] { width: 16px; height: 16px; accent-color: #00a651; cursor: pointer; }
.form-check label { font-size: .875rem; color: #e8e8e8; text-transform: none; letter-spacing: 0; cursor: pointer; }

/* Editor Quill */
#editor-container {
    background: #222222;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    min-height: 320px;
}
#editor-container .ql-toolbar {
    background: #121212;
    border-color: #2a2a2a !important;
    border-radius: 5px 5px 0 0;
}
#editor-container .ql-container {
    border-color: #2a2a2a !important;
    border-radius: 0 0 5px 5px;
    font-size: .95rem;
    color: #e8e8e8;
    min-height: 260px;
}
.ql-toolbar .ql-stroke { stroke: #888888 !important; }
.ql-toolbar .ql-fill   { fill:   #888888 !important; }
.ql-toolbar button:hover .ql-stroke { stroke: #00a651 !important; }
.ql-toolbar button.ql-active .ql-stroke { stroke: #00a651 !important; }

/* Login */
.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
}
.login-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #00a651;
    border-radius: 8px;
    padding: 2.5rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.login-card .logo { justify-content: center; margin-bottom: 2rem; }
.login-card h2 { font-size: 1.2rem; text-align: center; margin-bottom: 2rem; color: #888888; text-transform: uppercase; letter-spacing: .08em; }

/* ── Responsivo ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .home-grid { grid-template-columns: 1fr; }
    .noticia-destaque { grid-template-columns: 1fr; }
    .noticia-destaque .noticia-img { min-height: 200px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}

@media (max-width: 640px) {
    .main-nav {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: #121212;
        padding: 1rem;
        border-bottom: 2px solid #00a651;
        gap: .25rem;
        z-index: 99;
        -webkit-box-shadow: 0 4px 12px rgba(0,0,0,.5);
        box-shadow: 0 4px 12px rgba(0,0,0,.5);
    }
    .main-nav.open { display: -webkit-box; display: -ms-flexbox; display: flex; }
    .nav-toggle { display: -webkit-box; display: -ms-flexbox; display: flex; }
    .main-nav a { padding: .75rem 1rem; font-size: 1rem; }
    .hero { padding: 3rem 0 2.5rem; }
    .hero::before { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .jogo-card { -ms-flex-wrap: wrap; flex-wrap: wrap; }
    .jogo-card-resultado { min-width: auto; }
    .login-card { padding: 1.5rem 1.25rem; margin: 1rem; }
    .section-title { font-size: 1.5rem; }
    .noticias-grid { grid-template-columns: 1fr; }
    .jogadores-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
