:root {
  --bg: #0f172a;
  --card: #111827cc;
  --text: #e5e7eb;
  --muted: #cbd5e1;
  --accent: #22d3ee;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(
      1200px 600px at 10% -10%,
      rgba(34, 211, 238, 0.15),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at 120% 20%,
      rgba(99, 102, 241, 0.12),
      transparent 60%
    ),
    var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.wrap {
  max-width: 1100px;
  width: 100%;
}
.hero {
  text-align: center;
  padding: 60px 24px; /* was 120px top/bottom → reduced */
  border-radius: 14px;
  margin-bottom: 30px; /* tighter spacing */
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)),
    url("/images/es/webp/LA.webp") center/cover no-repeat;
  color: #f1f5f9;
  margin-top: 40px; /* was 100px → reduced */
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
}
h1 {
  margin: 8px 0 6px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  letter-spacing: 0.2px;
}
.sub {
  color: var(--muted);
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(17, 24, 39, 0.7);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.thumb {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: contain;
  display: block;
}
.content {
  padding: 18px 18px 20px;
}
.title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1.05rem;
}
.desc {
  margin: 0;
  color: var(--muted);
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: #99f6e4;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 0.8rem;
  margin-top: 10px;
}

.footer-note {
  text-align: center;
  color: var(--muted);
  margin-top: 18px;
  font-size: 0.95rem;
}
.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;
}
