:root {
  --fondo: oklch(0.15 0.007 119);
  --fondo-claro: oklch(0.19 0.009 119);
  --superficie: oklch(0.225 0.012 119);
  --superficie-2: oklch(0.285 0.016 119);
  --texto: oklch(0.95 0.005 119);
  --texto-oscuro: oklch(0.16 0.008 119);
  --muted: oklch(0.72 0.011 119);
  --linea: oklch(0.34 0.016 119);
  --acento: oklch(0.8 0.09 119);
  --acento-2: oklch(0.84 0.076 157);
  --amarillo: oklch(0.86 0.15 95);
  --rojo: oklch(0.7 0.19 27);
  --display: "Outfit", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ancho: 1220px;
  --radio: 10px;
}
html[data-theme="light"] {
  --fondo: oklch(0.99 0.004 119);
  --fondo-claro: oklch(0.965 0.006 119);
  --superficie: oklch(0.98 0.006 119);
  --superficie-2: oklch(0.94 0.01 119);
  --texto: oklch(0.26 0.012 119);
  --texto-oscuro: oklch(0.99 0.004 119);
  --muted: oklch(0.52 0.016 119);
  --linea: oklch(0.9 0.01 119);
  --acento: oklch(0.56 0.095 119);
  --acento-2: oklch(0.6 0.085 157);
  --amarillo: oklch(0.66 0.15 80);
  --rojo: oklch(0.56 0.2 27);
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--fondo);
  color: var(--texto);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size-adjust: from-font;
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--acento-2);
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  font-size-adjust: from-font;
}
.site-wrap {
  width: min(100% - 2rem, var(--ancho));
  margin-inline: auto;
}
.deferred-block {
  content-visibility: auto;
  contain-intrinsic-size: auto none auto 600px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--acento);
  color: var(--texto-oscuro);
  padding: 0.6rem 1rem;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--acento-2);
  outline-offset: 2px;
  border-radius: 2px;
}
@property --ng {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes ng-rot {
  to {
    --ng: 360deg;
  }
}
@keyframes cta-flow {
  to {
    background-position: 200% 50%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .btn-primary,
  .nav-cta,
  .table-cta {
    animation: cta-flow 3s linear infinite;
  }
}

.site-header {
  border-bottom: 1px solid var(--linea);
  background: var(--fondo-claro);
  position: sticky;
  top: 0;
  z-index: 50;
  overflow-x: clip;
}
.header-bar {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.5rem);
  padding: 0.9rem 0;
  min-width: 0;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--texto);
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}
.site-brand__logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(11.5rem, 100%);
  object-fit: contain;
}
.brand-icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
}
.brand-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-brand .brand-icon {
  width: 2.3rem;
  height: 2.3rem;
}
.main-nav {
  display: flex;
  gap: 1.1rem;
  margin-left: auto;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--texto);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--acento);
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--texto);
  background: transparent;
  border: 1px solid var(--linea);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle__icon {
  display: block;
}
.menu-toggle__icon--close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__icon--open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: block;
}

.hero-content {
  padding: 2.5rem 0 1rem;
}
#ranking {
  padding-top: 1rem;
}
.hero-content h1 {
  font-size: clamp(1.75rem, 4.2vw, 2.55rem);
  margin: 0 0 0.85rem;
  line-height: 1.15;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  padding: 0;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--acento);
}
.breadcrumb-sep {
  color: var(--muted);
}
.breadcrumb [aria-current="page"] {
  color: var(--texto);
}
.page-inner {
  padding: 1.15rem 0 2rem;
}
.page-inner .breadcrumb {
  margin-bottom: 1rem;
}
.page-inner .article-body > h1 {
  font-size: clamp(1.75rem, 4.2vw, 2.55rem);
  margin: 0 0 0.85rem;
  line-height: 1.15;
}
.page-inner .page-lead {
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.page-inner .author-box {
  margin-top: 2rem;
}
.hero-kicker {
  color: var(--acento);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
}
.hero-lead {
  font-size: 1.02rem;
  line-height: 1.6;
  width: 100%;
  text-align: justify;
  text-align-last: left;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.author-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.6rem 1.1rem;
  margin: 1.2rem 0 0;
  padding: 1rem 1.15rem;
  background: color-mix(in srgb, var(--superficie) 88%, var(--acento) 12%);
  border: 1px solid color-mix(in srgb, var(--linea) 70%, var(--acento) 30%);
  border-radius: var(--radio);
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--acento) 12%, transparent);
  width: 100%;
}
.author-box__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--texto);
}
.author-box__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid color-mix(in srgb, var(--acento) 35%, var(--linea));
}
.author-box__info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.author-box__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
}
.author-box__label {
  color: var(--muted);
  font-weight: 400;
}
.author-box__link:hover .author-box__name {
  color: var(--acento);
}
.author-box__role {
  color: var(--muted);
  font-size: 0.85rem;
}
.author-box__date {
  margin-left: auto;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--acento) 16%, var(--superficie));
  border: 1px solid color-mix(in srgb, var(--acento) 35%, var(--linea));
  color: color-mix(in srgb, var(--acento) 70%, var(--texto));
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.author-box__date time {
  color: var(--acento);
  font-weight: 700;
}
.author-box__bio {
  flex: 1 1 100%;
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .author-box__date {
    margin-left: 0;
    flex-basis: 100%;
    white-space: normal;
  }
}

.page-section {
  padding: 2rem 0;
}
.page-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0.2rem 0 1rem;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(
    110deg,
    var(--acento),
    var(--acento-2),
    var(--acento)
  );
  background-size: 200% 100%;
  color: var(--texto-oscuro);
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 20px -7px color-mix(in srgb, var(--acento) 70%, transparent);
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  filter: brightness(1.07) saturate(1.05);
  box-shadow: 0 9px 26px -7px color-mix(in srgb, var(--acento-2) 75%, transparent);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--texto);
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--linea);
}
.nav-cta {
  position: relative;
  isolation: isolate;
  display: inline-block;
  background: linear-gradient(
    110deg,
    var(--acento),
    var(--acento-2),
    var(--acento)
  );
  background-size: 200% 100%;
  color: var(--texto-oscuro);
  font-weight: 700;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.92rem;
  box-shadow: 0 4px 16px -6px color-mix(in srgb, var(--acento) 65%, transparent);
  transition: filter 0.2s ease;
}
.nav-cta:hover {
  filter: brightness(1.08) saturate(1.05);
}
.header-cta {
  display: none;
  align-items: center;
  background: linear-gradient(
    110deg,
    var(--acento),
    var(--acento-2),
    var(--acento)
  );
  background-size: 200% 100%;
  color: var(--texto-oscuro);
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9rem;
}
.nav-brand {
  display: none;
}
.home-link {
  display: none;
}
.menu-cta {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}
.nav-cta-alt {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--superficie-2);
  border: 1px solid var(--acento);
  color: var(--texto);
  font-weight: 700;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9rem;
  line-height: 1.2;
}
.fine-print {
  color: var(--muted);
  font-size: 0.85rem;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--acento);
}
.breadcrumbs [aria-current] {
  color: var(--texto);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 1.15rem 0;
  list-style: none;
  border-block: 1px solid var(--linea);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}
.trust-icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: var(--acento);
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.trust-text strong {
  display: block;
  color: var(--texto);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--linea);
}
.compare-table thead th {
  font-family: var(--display);
  color: var(--acento);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.compare-table tbody tr {
  transition: background 0.18s ease;
}
.compare-table tbody tr:hover {
  background: var(--superficie);
}
.table-cta {
  display: inline-block;
  background: linear-gradient(
    110deg,
    var(--acento),
    var(--acento-2),
    var(--acento)
  );
  background-size: 200% 100%;
  color: var(--texto-oscuro);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px -6px color-mix(in srgb, var(--acento) 70%, transparent);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.table-cta:hover {
  filter: brightness(1.08) saturate(1.05);
  transform: translateY(-1px);
}
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--linea);
  color: var(--muted);
  white-space: nowrap;
}
.badge-warn {
  color: var(--amarillo);
  border-color: transparent;
  background: color-mix(in srgb, var(--amarillo) 14%, transparent);
}

.faq-block {
  display: grid;
  gap: 0.5rem;
}
.faq-block details {
  background: var(--superficie);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 0.4rem 0.9rem;
}
.faq-block summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.5rem 0;
}
.faq-block summary::-webkit-details-marker {
  display: none;
}
.faq-block .faq-answer {
  padding: 0 0 0.5rem;
}
.faq-block .faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.author-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  background: var(--superficie);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 1.1rem 1.25rem;
}
.author-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid color-mix(in srgb, var(--acento) 35%, var(--linea));
}
.author-card__info h3 {
  margin: 0 0 0.2rem;
}
.author-card__info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.author-card__info p + p {
  margin-top: 0.65rem;
}

.related-block {
  margin: 3rem 0 0;
  background: var(--superficie);
  border: 1px solid var(--linea);
  border-radius: 18px;
  padding: 1.6rem 1.75rem;
}
.related-title {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--acento);
}
.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.55rem 1.75rem;
}
.related-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--texto);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.related-list a::before {
  content: "\2192";
  color: var(--acento);
  font-weight: 700;
  font-size: 0.85em;
}
.related-list a:hover {
  color: var(--acento);
}

.article-body h2 {
  margin-top: 2rem;
}
.article-body h3 {
  margin: 1.6rem 0 0.5rem;
  font-size: 1.1rem;
}
.article-body p {
  line-height: 1.6;
}
.article-body img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 1.25rem auto;
  border-radius: 10px;
  height: auto;
}
.article-body img.content-img--flush {
  margin-block: 0;
}
.article-body img.content-img--tight {
  margin-block: 0.75rem;
}
.article-body img.content-img--loose {
  margin-block: 2rem;
}
.article-body ul,
.article-body ol {
  margin: 1.15rem 0;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  line-height: 1.6;
}
.article-body li {
  padding-left: 0.3rem;
}
.article-body ul li::marker {
  color: var(--acento);
  font-weight: 700;
}
.article-body .table-card {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
}
.article-body .table-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 480px;
}
.article-body .table-card th,
.article-body .table-card td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--linea);
}
.article-body .table-card thead th {
  background: var(--superficie-2);
  color: var(--acento);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid color-mix(in srgb, var(--acento) 45%, var(--linea));
}
.article-body .table-card tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--superficie) 55%, transparent);
}
.source-links {
  margin: 0.5rem 0;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.disclaimer-box {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  background: color-mix(in srgb, var(--amarillo) 8%, var(--superficie));
}
.disclaimer-box p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.toc-block {
  margin: 1.75rem 0 2rem;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  background: var(--superficie);
  overflow: hidden;
}
.toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: none;
  background: transparent;
  color: var(--texto);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.toc-toggle:hover {
  background: var(--superficie-2);
}
.toc-icon {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.toc-toggle[aria-expanded="true"] .toc-icon {
  transform: rotate(180deg);
}
.toc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.1rem;
}
.toc-content[aria-hidden="false"] {
  max-height: 2400px;
  padding: 0.75rem 1.1rem 1.1rem;
  border-top: 1px solid var(--linea);
}
.article-body .toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem 0.65rem;
}
.article-body .toc-list li {
  padding-left: 0;
  display: flex;
}
.toc-list li::marker {
  content: none;
}
.toc-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 4.25rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--linea);
  border-radius: 8px;
  background: var(--fondo);
  color: var(--texto);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.toc-list a:hover {
  border-color: color-mix(in srgb, var(--acento) 45%, var(--linea));
  color: var(--acento);
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.pros-cons .pros,
.pros-cons .cons {
  background: var(--superficie);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 1rem 1.1rem;
}
.pros-cons .pros-title,
.pros-cons .cons-title {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
}
.pros-cons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pros-cons .pros li,
.pros-cons .cons li {
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.55;
}
.pros-cons .pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--acento);
  font-weight: 700;
}
.pros-cons .cons li::before {
  content: "\2212";
  position: absolute;
  left: 0.1rem;
  color: var(--rojo);
  font-weight: 700;
}

.article-body blockquote.expert-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--acento) 35%, var(--linea));
  border-radius: var(--radio);
  background: color-mix(in srgb, var(--acento) 10%, var(--superficie));
}
.expert-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--acento) 35%, var(--linea));
}
.article-body .expert-avatar img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  display: block;
}
.expert-content {
  flex: 1;
  min-width: 0;
}
.expert-content p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}
.expert-content cite {
  display: block;
  font-size: 0.88rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 640px) {
  .article-body blockquote.expert-note {
    padding: 1rem;
    gap: 0;
  }
  .article-body blockquote.expert-note .expert-avatar {
    display: none;
  }
}

.article-body .bronnen-list {
  margin: 0.75rem 0;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--linea);
  background: linear-gradient(180deg, var(--fondo-claro), var(--fondo));
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 3rem 0 2.25rem;
  align-items: start;
}
.footer-brand {
  max-width: 34ch;
}
.footer-brand .site-brand {
  font-size: 1.15rem;
}
.footer-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0.9rem 0;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.92rem;
}
.footer-heading {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--acento);
  margin: 0 0 1.1rem;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--linea);
  color: var(--muted);
  font-size: 0.82rem;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--acento);
}
.age-notice {
  color: var(--amarillo);
  font-weight: 700;
  font-size: 0.82rem;
  display: block;
  line-height: 1.5;
}
html.menu-open {
  overflow: hidden;
}

.offers-grid {
  display: flex;
  flex-direction: column;
  counter-reset: casino-counter 0;
  gap: 10px;
  min-width: 0;
}
.casino-card {
  position: relative;
  display: grid;
  align-items: center;
  padding-left: 46px;
  counter-increment: casino-counter 1;
  border-radius: var(--radio);
  background: var(--superficie);
  border: 1px solid var(--linea);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  gap: 16px;
  grid-template-areas: "logo rating main";
  grid-template-columns: minmax(120px, 187px) minmax(120px, 162px) minmax(0, 1fr);
  grid-template-rows: 1fr;
  min-width: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}
.casino-card::before {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  content: counter(casino-counter);
  color: var(--texto-oscuro);
  border-radius: var(--radio) 2px 2px var(--radio);
  background: linear-gradient(180deg, var(--acento), var(--acento-2));
}
.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 187px;
  height: 90px;
  grid-area: logo;
  min-width: 0;
}
.casino-logo img {
  width: 127px;
  height: 52px;
  object-fit: contain;
}
.casino-score {
  display: flex;
  align-items: center;
  gap: 16px;
  grid-area: rating;
  min-width: 0;
}
.score-badge {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  text-align: center;
  color: var(--texto);
  border: 2px solid var(--linea);
  border-radius: 4px;
  background: var(--superficie-2);
}
.score-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.score-meta img {
  height: 18px;
}
.casino-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: var(--muted);
}
.casino-main {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(140px, 240px);
  align-items: center;
  margin: 8px;
  padding: 16px 20px;
  background: var(--superficie-2);
  gap: 20px;
  grid-area: main;
  border-radius: calc(var(--radio) * 0.7);
  border: 1px solid var(--linea);
  min-width: 0;
}
.bonus-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--texto);
  min-width: 0;
}
.casino-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  min-width: 0;
}
.casino-features li {
  padding: 2px 0 2px 16px;
  position: relative;
}
.casino-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--acento);
  font-weight: 700;
}
.claim-btn {
  font-size: 15px;
  font-weight: 800;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  min-width: 0;
  height: 42px;
  justify-self: end;
  text-align: center;
  color: var(--texto-oscuro) !important;
  border-radius: 999px;
  background: linear-gradient(
    110deg,
    var(--acento),
    var(--acento-2),
    var(--acento)
  );
  text-decoration: none !important;
  transition: filter 0.2s;
}
.claim-btn:hover {
  filter: brightness(1.08);
}

@media (max-width: 1240px) and (min-width: 1101px) {
  .casino-main {
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-areas:
      "bonus btn"
      "features features";
    align-items: start;
  }
  .bonus-text {
    grid-area: bonus;
  }
  .casino-features {
    grid-area: features;
  }
  .claim-btn {
    grid-area: btn;
    justify-self: end;
    align-self: center;
  }
}

@media (max-width: 1100px) {
  .casino-card {
    padding-top: 8px;
    padding-left: 0;
    gap: 8px 16px;
    grid-template-areas: "logo rating" "main main";
    grid-template-columns: minmax(0, 176px) minmax(0, 1fr);
  }
  .casino-card::before {
    top: 0;
    width: 30px;
    height: 22px;
    border-radius: 4px 2px 2px;
  }
  .casino-logo {
    width: auto;
    max-width: 176px;
    height: 70px;
    padding-left: 31px;
  }
  .casino-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 8px 8px;
    padding: 16px;
    gap: 12px;
  }
  .bonus-text {
    width: 100%;
    text-align: center;
  }
  .claim-btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--fondo-claro);
    box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.7);
    padding: 0;
    display: none;
    z-index: 40;
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-links {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
    padding: 0.3rem 1.1rem 0.5rem;
  }
  .nav-links > a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--linea);
  }
  .nav-cta {
    align-self: center;
    margin: 0.9rem 0 1.3rem;
    font-size: 1rem;
    padding: 0.7rem 1.6rem;
  }
  .header-bar > .site-brand {
    display: inline-flex;
    max-width: min(9.5rem, 42vw);
  }
  .site-brand__logo {
    height: 2rem;
    max-width: 100%;
  }
  .header-cta {
    display: inline-flex;
    margin-inline: auto;
    min-width: 0;
    flex-shrink: 1;
  }
  .home-link {
    display: none;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.3rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--texto);
    text-decoration: none;
    border-bottom: 1px solid var(--linea);
  }
  .menu-cta {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    padding: 0.7rem 1.1rem 1.2rem;
  }
  .menu-cta .nav-cta,
  .menu-cta .nav-cta-alt {
    flex: 1;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.7rem 0.5rem;
    line-height: 1.2;
  }
}

@media (max-width: 720px) {
  .hero-content {
    padding: 1.25rem 0 1.5rem;
  }
  .hero-content h1 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }
  .page-inner .article-body > h1 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }
  .page-inner .page-lead {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-body .toc-list {
    grid-template-columns: 1fr;
  }
  .toc-list a {
    min-height: 0;
  }
  .author-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 0.85rem;
  }
  .author-card__photo {
    width: 64px;
    height: 64px;
  }
  .author-card__info {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 980px) and (min-width: 721px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .article-body .toc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
