:root {
  --pitch-950: #1a0507; --pitch-900: #33090c; --brand-700: #7d131a; --brand-600: #9c171d;
  --brand-500: #c22128; --gold-500: #e0a52c; --gold-600: #8a5f10; --live-500: #e6533c;
  --chalk-50: #faf7f5; --chalk-100: #f3ece9; --paper: #ffffff; --ink-900: #17120f;
  --ink-600: #5c4f49; --ink-400: #756860; --line: #e8ded9;
  --shadow: 0 1px 2px rgba(26,5,7,.06), 0 18px 40px -20px rgba(26,5,7,.28);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --pitch-950: #0d0203; --pitch-900: #1a0507; --brand-700: #c2444b; --brand-600: #cf565c;
    --brand-500: #db6f74; --gold-500: #f0b93e; --gold-600: #e0a52c; --live-500: #ef7a63;
    --chalk-50: #140807; --chalk-100: #1c0d0b; --paper: #1f0f0d; --ink-900: #f2e9e6;
    --ink-600: #cdb9b3; --ink-400: #a08880; --line: #3a1e1a;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 18px 40px -20px rgba(0,0,0,.6);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--chalk-50); color: var(--ink-900); font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, Roboto, Arial, sans-serif; line-height: 1.55; }
h1, h2, h3, h4 { margin: 0; font-weight: 900; letter-spacing: -0.015em; color: var(--ink-900); }
p { margin: 0; color: var(--ink-600); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
table { font-variant-numeric: tabular-nums; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 3px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; text-transform: uppercase; font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em; color: var(--gold-600); }
.eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--gold-500); }
section.block { padding: 70px 0; }
@media (max-width: 720px) { section.block { padding: 48px 0; } }
.section-head { max-width: 640px; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(22px, 3.2vw, 32px); margin-top: 8px; }
.section-head p { margin-top: 10px; font-size: 14.5px; }
.preview-tag { display: inline-block; margin-top: 10px; font-size: 11.5px; font-weight: 700; color: var(--ink-400); background: var(--chalk-100); border: 1px solid var(--line); padding: 3px 10px; border-radius: 999px; }
.empty-state { padding: 24px; text-align: center; color: var(--ink-400); font-size: 13.5px; border: 1.5px dashed var(--line); border-radius: 12px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 8px; font-weight: 800; font-size: 14px; cursor: pointer; border: 1.5px solid transparent; }
.btn.gold { background: var(--gold-500); color: var(--pitch-950); }
.btn.gold:hover { background: var(--gold-600); }
.btn.outline { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn.outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn.solid { background: var(--brand-600); color: #fff; }
.btn.solid:hover { background: var(--brand-700); }

/* ---------- Nav ---------- */
header.site { position: sticky; top: 0; z-index: 50; background: rgba(125,19,26,0.96); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 42px; height: 42px; flex: none; object-fit: contain; }
.brand-word { color: #fff; font-weight: 900; font-size: 15px; line-height: 1.1; }
.brand-word span { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; color: #d9a8a0; text-transform: uppercase; margin-top: 2px; }
nav.links { display: flex; align-items: center; gap: 4px; }
nav.links a { color: #e6d3cd; font-size: 13.3px; font-weight: 700; padding: 8px 12px; border-radius: 7px; }
nav.links a:hover, nav.links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }
.mobile-menu { display: none; flex-direction: column; background: rgba(125,19,26,0.98); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 24px; font-size: 14px; font-weight: 700; color: #e6d3cd; border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:first-child { border-top: none; }
@media (max-width: 880px) { nav.links { display: none; } .burger { display: block; } }
@media (min-width: 881px) { .mobile-menu { display: none !important; } }

/* ---------- Page header (interior) ---------- */
.page-header { background: radial-gradient(120% 160% at 10% 0%, var(--pitch-900), var(--pitch-950) 65%); color: #fff; padding: 52px 0 40px; }
.page-header .eyebrow { color: var(--gold-500); }
.page-header h1 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-top: 10px; }
.page-header p { color: #d9b8b3; margin-top: 10px; max-width: 130ch; font-size: 14.5px; }

/* ---------- Hero (Inicio) ---------- */
.hero { position: relative; background: var(--pitch-950); color: #fff; padding: 60px 0 110px; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(26,5,7,.6) 0%, rgba(26,5,7,.46) 38%, rgba(26,5,7,.26) 72%, rgba(26,5,7,.12) 100%), linear-gradient(0deg, rgba(13,2,3,.4) 0%, transparent 42%); }
.hero::after { content: ""; position: absolute; right: -120px; top: -80px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(224,165,44,0.22), transparent 62%); z-index: 1; pointer-events: none; }
.hero-dots { position: absolute; left: 24px; bottom: 18px; z-index: 2; display: flex; gap: 7px; }
.hero-dot { width: 22px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.3); border: none; cursor: pointer; padding: 0; }
.hero-dot.active { background: var(--gold-500); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(32px, 5.2vw, 54px); line-height: 1.02; margin-top: 14px; color: #fff; }
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero p.lead { color: #e0c9c4; font-size: 15.5px; margin-top: 16px; max-width: 46ch; }
.hero-ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero-text { display: none; }
.hero-text.active { display: block; }
.hero-panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 20px; }
.hero-panel .live { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #f2a6a6; margin-bottom: 14px; }
.hero-panel .live .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--live-500); }
.hero-match { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hero-team { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; text-align: center; }
.crest { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: #fff; flex: none; }
.hero-team span { font-size: 12px; font-weight: 700; color: #f0e2de; }
.hero-vs { font-size: 11px; font-weight: 800; color: #a68f89; padding-top: 18px; }
.hero-meta { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12px; color: #cbaea8; display: flex; justify-content: space-between; }

/* ---------- Crests / tournament cards ---------- */
.tourn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .tourn-grid, .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tourn-grid, .team-grid { grid-template-columns: 1fr; } }
.tourn-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 16px; box-shadow: var(--shadow); display: flex; gap: 14px; align-items: center; }
.cat-badge { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-700); background: color-mix(in srgb, var(--brand-500) 14%, transparent); padding: 3px 9px; border-radius: 999px; }
.tourn-card h3 { font-size: 14.5px; margin-top: 6px; line-height: 1.25; }
.tourn-card .dates { margin-top: 8px; font-size: 11.5px; color: var(--ink-400); font-weight: 600; }
.tourn-card a { margin-top: 10px; display: inline-flex; font-size: 12.5px; font-weight: 800; color: var(--brand-600); }
.tourn-crest { width: 74px; aspect-ratio: 1; border-radius: 12px; position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: center; justify-content: center; padding: 10px; text-align: center; flex: none; }
.tourn-crest::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 90% at 50% 10%, var(--crest-bright), var(--crest-dark) 78%); }
.tourn-crest.skin-gold { --crest-bright: #d9a53a; --crest-dark: #4a3208; }
.tourn-crest.skin-red { --crest-bright: #c23a41; --crest-dark: #430c10; }
.tourn-crest.skin-black { --crest-bright: #3a3a3a; --crest-dark: #0a0a0a; }
.tourn-crest.has-photo::before { content: none; }
.tourn-crest .crest-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.crest-icon { width: 62%; }
.tourn-crest.lg { width: 100%; border-radius: 16px; padding: 16px; }
.tourn-select-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
@media (max-width: 900px) { .tourn-select-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .tourn-select-grid { grid-template-columns: repeat(2, 1fr); } }
.tourn-select-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.tourn-select-item .tourn-crest { width: 100%; opacity: .55; }
.tourn-select-item:hover .tourn-crest { opacity: .8; }
.tourn-select-item.active .tourn-crest { opacity: 1; box-shadow: 0 0 0 2.5px var(--paper), 0 0 0 4.5px var(--crest-bright, var(--gold-500)); }
.tourn-select-item .sel-name { font-size: 11px; font-weight: 700; color: var(--ink-600); }
.tourn-select-item.active .sel-name { color: var(--ink-900); }

.tourn-info { position: relative; background: linear-gradient(150deg, var(--pitch-900), var(--pitch-950) 75%); border-radius: 20px; padding: 36px 40px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: center; overflow: hidden; margin-top: 24px; }
.tourn-info::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 100% 0%, color-mix(in srgb, var(--gold-500) 10%, transparent), transparent 70%); pointer-events: none; }
@media (max-width: 780px) { .tourn-info { grid-template-columns: 1fr; padding: 26px; } }
.tourn-info-body { position: relative; z-index: 1; }
.tourn-info h2 { color: #fff; font-size: clamp(20px, 3vw, 27px); line-height: 1.15; }
.tourn-info .sub { color: var(--gold-500); font-size: 13.5px; font-weight: 800; margin-top: 6px; }
.tourn-info p.desc { color: #d9b8b3; font-size: 13.5px; margin-top: 14px; max-width: 46ch; white-space: pre-line; }
.tourn-info-art { position: relative; aspect-ratio: 5/4; border-radius: 16px; overflow: hidden; clip-path: polygon(10% 0, 100% 0, 100% 88%, 90% 100%, 0 100%, 0 12%); box-shadow: var(--shadow); }
.tourn-info-art img { width: 100%; height: 100%; object-fit: cover; }
.tourn-info-art-fallback { width: 100%; height: 100%; }
.tourn-info-art-fallback.skin-gold { background: radial-gradient(120% 90% at 50% 10%, #d9a53a, #4a3208 78%); }
.tourn-info-art-fallback.skin-red { background: radial-gradient(120% 90% at 50% 10%, #c23a41, #430c10 78%); }
.tourn-info-art-fallback.skin-black { background: radial-gradient(120% 90% at 50% 10%, #3a3a3a, #0a0a0a 78%); }

.equipos-participantes { margin-top: 30px; margin-bottom: 40px; }
.part-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 980px) { .part-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .part-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .part-grid { grid-template-columns: repeat(2, 1fr); } }
.part-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 12px 10px 14px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; box-shadow: var(--shadow); transition: transform .16s ease, border-color .16s ease; }
.part-card:hover { transform: translateY(-3px); border-color: var(--gold-500); }
.part-photo { width: 100%; aspect-ratio: 1; border-radius: 9px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.part-photo img { width: 100%; height: 100%; object-fit: cover; }
.part-photo.no-photo { font-weight: 900; font-size: 15px; color: #fff; }
.part-name { font-size: 12px; font-weight: 800; color: var(--ink-900); line-height: 1.25; }
.part-card:hover .part-name { color: var(--brand-600); }

.team-torneos { display: flex; flex-wrap: wrap; gap: 5px; }
.torneo-chip { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; padding: 3px 8px; border-radius: 999px; color: #fff; }

/* ---------- Scoreboard ---------- */
.scoreboard { background: var(--pitch-950); color: #fff; }
.scoreboard .section-head h2, .scoreboard .section-head p { color: #fff; }
.scoreboard .section-head p { color: #cbaea8; }
.score-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; }
@media (max-width: 900px) { .score-grid { grid-template-columns: 1fr; } }
.panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px; }
.panel h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #f0e2de; margin-bottom: 14px; }
.panel.light { background: var(--paper); border-color: var(--line); }
.panel.light h3 { color: var(--ink-400); }
.table-wrap { overflow-x: auto; }
table.standings { width: 100%; border-collapse: collapse; min-width: 460px; }
table.standings th { text-align: left; font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: #a68f89; padding: 8px 10px; font-weight: 700; }
.panel.light table.standings th { color: var(--ink-400); }
table.standings th.num, table.standings td.num { text-align: center; }
table.standings td { padding: 10px 10px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13.5px; font-weight: 600; }
.panel.light table.standings td { border-color: var(--line); color: var(--ink-900); }
table.standings tr.top3 td:first-child { color: var(--gold-600); }
.pos-team { display: flex; align-items: center; gap: 9px; }
.scorer-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.panel.light .scorer-row { border-color: var(--line); }
.scorer-row:first-child { border-top: none; }
.scorer-who { display: flex; align-items: center; gap: 10px; }
.scorer-who .rank { width: 20px; font-weight: 900; color: var(--gold-500); font-size: 13px; }
.scorer-who .name { font-size: 13.5px; font-weight: 700; }
.scorer-who .team { font-size: 11px; color: #a2857f; }
.scorer-goals { font-weight: 900; font-size: 15px; color: var(--gold-500); }

/* ---------- Tabs / matches ---------- */
.tabs-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.tab-chip { border: 1.5px solid var(--line); background: var(--paper); color: var(--ink-600); font-weight: 700; font-size: 12.5px; padding: 9px 16px; border-radius: 999px; }
.tab-chip.active { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.matches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 860px) { .matches-grid { grid-template-columns: 1fr; } }
.matches-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-400); margin-bottom: 14px; }
.match-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.match-row:first-of-type { border-top: none; }
.match-teams { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 13.5px; }
.match-teams .vs { color: var(--ink-400); font-weight: 500; font-size: 12px; }
.match-when { font-size: 11.5px; color: var(--ink-400); font-weight: 600; text-align: right; }
.match-score { font-weight: 900; font-size: 15px; background: var(--chalk-100); border-radius: 6px; padding: 4px 10px; }

/* ---------- Equipos ---------- */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.team-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.team-photo { aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-initials { position: relative; color: #fff; font-weight: 900; font-size: 22px; opacity: .92; }
.team-photo-tag { position: absolute; top: 8px; right: 8px; font-size: 9px; font-weight: 800; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.35); padding: 3px 7px; border-radius: 999px; }
.team-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.team-card h3 { font-size: 14.5px; line-height: 1.25; }
.team-meta { font-size: 12px; color: var(--ink-400); font-weight: 600; display: flex; flex-direction: column; gap: 3px; }
.btn.ghost { background: var(--paper); color: var(--ink-900); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--brand-500); color: var(--brand-600); }
.roster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 860px) { .roster-grid { grid-template-columns: repeat(2, 1fr); } }
.roster-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px; display: flex; align-items: center; gap: 11px; }
.roster-avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 22px; color: #fff; flex: none; overflow: hidden; }
.roster-avatar img { width: 100%; height: 100%; object-fit: cover; }
.roster-card .name { font-size: 13.3px; font-weight: 700; }
.roster-card .sub { font-size: 11px; color: var(--ink-400); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 800; color: var(--ink-400); margin-bottom: 18px; }
.back-link:hover { color: var(--brand-600); }
.team-detail-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.team-detail-head .crest { width: 58px; height: 58px; font-size: 17px; }

/* ---------- Perfil (liderazgo / equipo) ---------- */
.perfil-card { background: linear-gradient(155deg, var(--pitch-950), var(--brand-700) 130%); border: 1px solid var(--gold-500); border-radius: 16px; padding: 32px; display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; }
@media (max-width: 700px) { .perfil-card { grid-template-columns: 1fr; padding: 26px; } }

.equipo-card { background: linear-gradient(155deg, var(--pitch-950), var(--brand-700) 130%); border: 1px solid var(--gold-500); border-radius: 16px; padding: 32px; }
.equipo-personas { display: flex; flex-direction: column; gap: 26px; margin-top: 20px; }
.equipo-persona { display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: start; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.equipo-persona:first-child { padding-top: 0; border-top: none; }
@media (max-width: 700px) { .equipo-card { padding: 26px; } .equipo-persona { grid-template-columns: 1fr; } }
.perfil-photo-sm { width: 116px; height: 116px; }

.trabajadores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .trabajadores-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trabajadores-grid { grid-template-columns: 1fr; } }
.trabajador-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 20px 16px; text-align: center; transition: transform .18s ease, box-shadow .18s ease; }
.trabajador-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(26,5,7,.10); }
.trabajador-photo { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 12px; overflow: hidden; background: var(--brand-700); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 22px; }
.trabajador-photo img { width: 100%; height: 100%; object-fit: cover; }
.trabajador-card b { display: block; font-size: 14px; }
.trabajador-card .cargo { display: block; font-size: 11.5px; color: var(--gold-600); font-weight: 700; margin-top: 2px; }
.trabajador-card p { font-size: 12px; margin-top: 8px; color: var(--ink-600); }
.perfil-photo-col { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.perfil-photo { width: 168px; height: 168px; border-radius: 50%; padding: 4px; background: var(--gold-500); }
.perfil-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; border: 3px solid var(--pitch-950); }
.perfil-badge { background: var(--gold-500); color: #4a2f06; font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; text-align: center; }
.perfil-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.perfil-eyebrow span:not(:nth-child(2)) { height: 1px; width: 20px; background: var(--gold-500); }
.perfil-eyebrow span:nth-child(2) { color: var(--gold-500); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.perfil-nombre { color: #fff; font-size: 26px; font-weight: 900; margin: 0 0 4px; }
.perfil-cargo { color: var(--gold-500); font-size: 13.5px; font-weight: 700; margin: 0 0 16px; }
.perfil-bio { display: flex; flex-direction: column; gap: 11px; }
.perfil-bio p { color: #e8d2ce; font-size: 13px; line-height: 1.6; margin: 0; }

/* ---------- Nosotros ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-art { aspect-ratio: 4/3; border-radius: 16px; background: linear-gradient(155deg, var(--pitch-950), var(--brand-700) 130%); position: relative; overflow: hidden; }
.about-art .ring { position: absolute; width: 62%; aspect-ratio: 1; border: 2px solid rgba(255,255,255,.28); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.about-art .ring::after { content: ""; position: absolute; inset: 30%; border-radius: 50%; background: var(--gold-500); opacity: .9; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }

.cifras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .cifras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .cifras-grid { grid-template-columns: 1fr; } }
.cifra-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 18px 16px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.cifra-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(26,5,7,.10); border-color: var(--cifra-color, var(--gold-500)); }
.cifra-icon { width: 38px; height: 38px; border-radius: 10px; background: color-mix(in srgb, var(--cifra-color, var(--gold-500)) 18%, transparent); color: var(--cifra-color, var(--gold-600)); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transition: background .18s ease, color .18s ease; }
.cifra-card:hover .cifra-icon { background: var(--cifra-color, var(--gold-500)); color: #fff; }
.cifra-icon svg { width: 20px; height: 20px; }
.cifra-card b { display: block; font-size: 26px; font-weight: 900; color: var(--brand-700); line-height: 1; }
.cifra-card span { display: block; font-size: 12.5px; color: var(--ink-600); font-weight: 600; margin-top: 6px; }
.cifra-card[data-icono="trofeo"] { --cifra-color: #c9932c; }
.cifra-card[data-icono="balon"] { --cifra-color: #2f9e57; }
.cifra-card[data-icono="jugadores"] { --cifra-color: #3576c9; }
.cifra-card[data-icono="avion"] { --cifra-color: #1f9aa3; }
.cifra-card[data-icono="mundo"] { --cifra-color: #7c5cbf; }
.cifra-card[data-icono="estrella"] { --cifra-color: #d9822b; }
.cifra-card[data-icono="medalla"] { --cifra-color: #a8712f; }
.cifra-card[data-icono="calendario"] { --cifra-color: #4d5fd1; }
.cifra-card[data-icono="escudo"] { --cifra-color: #9c171d; }
.cifra-card[data-icono="bandera"] { --cifra-color: #c23f6e; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.value-card b { display: block; font-size: 14.5px; margin-bottom: 6px; }
.value-card p { font-size: 13px; }

/* ---------- Prensa / Estadios ---------- */
.indicadores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
@media (max-width: 760px) { .indicadores-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .indicadores-grid { grid-template-columns: 1fr; } }
.indicador-item { display: flex; align-items: center; gap: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--ink-600); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.indicador-item:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(26,5,7,.10); border-color: var(--indicador-color, var(--gold-500)); }
.indicador-icon { width: 40px; height: 40px; border-radius: 10px; background: color-mix(in srgb, var(--indicador-color, var(--gold-500)) 18%, transparent); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; line-height: 1; transition: background .18s ease; }
.indicador-item:hover .indicador-icon { background: color-mix(in srgb, var(--indicador-color, var(--gold-500)) 32%, transparent); }
.indicador-item[data-tipo="prensa"] { --indicador-color: #3576c9; }
.indicador-item[data-tipo="foto"] { --indicador-color: #7c5cbf; }
.indicador-item[data-tipo="video"] { --indicador-color: #c23f6e; }
.indicador-item[data-tipo="mic"] { --indicador-color: #d9822b; }
.indicador-item[data-tipo="redes"] { --indicador-color: #1f9aa3; }
.indicador-item[data-tipo="estrella"] { --indicador-color: #c9932c; }
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .press-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .press-grid { grid-template-columns: 1fr; } }
.press-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.press-thumb { aspect-ratio: 16/10; background: linear-gradient(150deg, var(--brand-700), var(--pitch-950)); display: flex; align-items: center; justify-content: center; }
.press-thumb .play { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; }
.press-thumb .play svg { width: 15px; height: 15px; fill: var(--pitch-950); margin-left: 2px; }
.press-body { padding: 13px 14px 16px; }
.press-body .tag { font-size: 10px; font-weight: 800; text-transform: uppercase; color: var(--gold-600); }
.press-body h4 { font-size: 13px; margin-top: 6px; line-height: 1.3; font-weight: 800; }
.stadium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .stadium-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stadium-grid { grid-template-columns: 1fr; } }
.stadium-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 5/3; background: linear-gradient(160deg, var(--brand-600), var(--pitch-950)); display: flex; align-items: flex-end; padding: 16px; }
.stadium-card span { position: relative; color: #fff; font-weight: 800; font-size: 14px; }

.estadio-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 760px) { .estadio-features { grid-template-columns: 1fr; } }
.estadio-feature { display: flex; align-items: flex-start; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 18px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.estadio-feature:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(26,5,7,.10); border-color: var(--indicador-color, var(--gold-500)); }
.estadio-feature-icon { width: 42px; height: 42px; border-radius: 10px; background: color-mix(in srgb, var(--indicador-color, var(--gold-500)) 18%, transparent); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; line-height: 1; transition: background .18s ease; }
.estadio-feature:hover .estadio-feature-icon { background: color-mix(in srgb, var(--indicador-color, var(--gold-500)) 32%, transparent); }
.estadio-feature b { display: block; font-size: 14.5px; margin-bottom: 4px; }
.estadio-feature p { font-size: 13px; }
.estadio-feature[data-tipo="medidas"] { --indicador-color: #3576c9; }
.estadio-feature[data-tipo="juego"] { --indicador-color: #2f9e57; }
.estadio-feature[data-tipo="seguridad"] { --indicador-color: #c23f6e; }
.estadio-feature[data-tipo="preparacion"] { --indicador-color: #d9822b; }
.estadio-feature[data-tipo="visibilidad"] { --indicador-color: #7c5cbf; }
.estadio-feature[data-tipo="contenido"] { --indicador-color: #1f9aa3; }
.estadio-feature[data-tipo="organizacion"] { --indicador-color: #c9932c; }
.estadio-feature[data-tipo="estrella"] { --indicador-color: #9c171d; }

/* ---------- CTA / contact ---------- */
.cta-band { background: linear-gradient(120deg, var(--brand-700), var(--pitch-950)); color: #fff; border-radius: 18px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h3 { color: #fff; font-size: clamp(19px, 2.4vw, 25px); max-width: 30ch; }
.cta-band p { color: #ecd6d2; margin-top: 8px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12px; font-weight: 700; color: var(--ink-600); }
.field input, .field textarea { border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: 13.5px; font-family: inherit; background: var(--chalk-50); color: var(--ink-900); }
.contact-info .row { display: flex; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.contact-info .row:first-child { border-top: none; }
.contact-info .ic { width: 34px; height: 34px; border-radius: 8px; background: var(--chalk-100); display: flex; align-items: center; justify-content: center; flex: none; color: var(--brand-700); }
.contact-info .t { font-size: 11.5px; font-weight: 700; color: var(--ink-400); text-transform: uppercase; }
.contact-info .v { font-size: 14px; font-weight: 700; margin-top: 2px; }

/* ---------- Testimonios ---------- */
.testi-carousel { overflow: hidden; }
.testi-track { display: flex; gap: 16px; transition: transform .6s ease; }
.testi-card { flex: 0 0 calc(25% - 12px); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 980px) { .testi-card { flex-basis: calc(50% - 8px); } }
@media (max-width: 600px) { .testi-card { flex-basis: 100%; } }
.testi-photo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--brand-600); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex: none; }
.testi-photo img { width: 100%; height: 100%; object-fit: cover; }
.testi-msg { font-size: 13.5px; color: var(--ink-600); line-height: 1.5; flex: 1; }
.testi-who b { display: block; font-size: 13px; }
.testi-who span { font-size: 11.5px; color: var(--ink-400); font-weight: 600; }

/* ---------- Galería ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { aspect-ratio: 1; border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

footer.site { background: var(--pitch-950); color: #cbaea8; padding: 34px 0 26px; }
.foot-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-cols { grid-template-columns: 1fr; } }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-brand { display: flex; gap: 9px; align-items: center; }
.foot-brand-name { color: #fff; font-weight: 900; font-size: 12.5px; line-height: 1.25; }
.foot-contact { display: flex; flex-direction: column; gap: 5px; }
.foot-contact a { color: #cbaea8; font-size: 12px; }
.foot-contact a:hover { color: #fff; }
.foot-label { font-size: 10.5px; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.foot-social { display: flex; gap: 10px; align-items: center; }
.social-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.social-icon svg { width: 23px; height: 23px; }
.social-icon:hover { background: rgba(255,255,255,0.16); }
.foot-pay-text { color: #e8d2ce; font-size: 13px; font-weight: 600; }
.sponsor-logo { width: 92px; height: 92px; border-radius: 50%; }
.foot-bottom { margin-top: 26px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
