/* HERO CIRCLES HOME */

/* HERO CIRCLES HOME - ESTILO CANVA */
.hero-panel {
  background: #f3f6fa;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.04);
}
.hero-circles {
  width: 340px;
  height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  position: relative;
  margin: 0 auto;
}
.circle-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #eee;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.07);
}
.circle-img-1 {
  border-color: #6c63ff;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
}
.circle-img-2 {
  border-color: #2ec4b6;
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
}
.circle-img-3 {
  border-color: #ffcb05;
  grid-column: 1;
  grid-row: 2;
  z-index: 2;
}
.circle-img-4 {
  border-color: #e94560;
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
}
.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .hero-circles {
    width: 220px;
    height: 220px;
    gap: 0.3rem;
  }
  .circle-img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 600px) {
  .hero-circles {
    width: 140px;
    height: 140px;
    gap: 0.2rem;
  }
  .circle-img {
    width: 60px;
    height: 60px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-primary: #ef426f;
  --brand-primary-dark: #c61f4d;
  --brand-primary-soft: #fff1f5;
  --brand-secondary-a: #f6b24a;
  --brand-secondary-b: #f8d7e2;
  --brand-secondary-c: #c8edf4;
  --brand-secondary-d: #111111;
  --brand-support-a: #f7efe8;
  --brand-support-b: #f5f1ee;
  --brand-support-c: #4b5563;
  --brand-support-d: #fff4f7;

  --font-primary: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-secondary: Georgia, serif;
  --font-navigation-family: Montserrat, sans-serif;
  --navigation-transform: none;
  --font-tertiary: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;

  --primary: #111111;
  --secondary: #343434;
  --accent: var(--brand-primary);
  --accent-light: var(--brand-support-d);
  --text-dark: #111111;
  --text-light: #5f6368;
  --bg-light: #fbf7f5;
  --white: #ffffff;
  --border: #ece7e3;
  --brand: var(--brand-primary);
  --ink: var(--text-dark);
  --muted: var(--text-light);
  --shadow-soft: 0 16px 40px rgba(17, 17, 17, 0.07);
  --shadow-hover: 0 24px 55px rgba(17, 17, 17, 0.12);

  --fs-body: clamp(0.9rem, 0.14vw + 0.88rem, 0.98rem);
  --fs-nav: clamp(0.8rem, 0.4vw + 0.66rem, 0.868rem);
  --fs-section-title: clamp(1.6rem, 1.35vw + 1.15rem, 2.25rem);
  --fs-section-subtitle: clamp(0.92rem, 0.28vw + 0.86rem, 1rem);
  --header-offset: 134px;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 12px);
}

body {
  font-family: var(--font-primary);
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f5 100%);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: var(--fs-body);
  padding-top: var(--header-offset);
  overflow-x: hidden;
}

h1,
h2,
h3,
//.section-title,
//.hero-title,
//.leader-title,
//.club-title,
.zt-title {
  font-family: var(--font-navigation-family) !important;
  letter-spacing: 0.2px;
}

.nav-link,
.btn,
.badge,
.small,
.footer-links a {
  font-family: var(--font-navigation-family) !important;
}

.rank-label,
.rank-month,
.month-select,
.payment-badge {
  font-family: var(--font-secondary);
}

/* HEADER / NAVBAR */
.header-wrapper {
  font-family: var(--font-navigation-family) !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.06);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.header-wrapper--scrolled {
  box-shadow: var(--shadow-hover);
}

.header-promo-bar {
  background: #111111;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-promo-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0.5rem 1.5rem;
}

.header-affiliate,
.header-shipping {
  white-space: nowrap;
  font-size: 0.72rem;
}

.header-affiliate {
  font-weight: 600;
}

.header-shipping {
  color: rgba(255, 255, 255, 0.76);
}

.header-top {
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.header-top-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  gap: 14px;
}

.header-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-self: start;
  max-width: 280px;
}

.header-meta-kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111111;
}

.header-meta-copy {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-light);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  color: inherit !important;
  text-decoration: none;
}

.brand-logo {
  width: clamp(148px, 16vw, 210px);
  height: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
}

.navbar-toggler {
  display: none;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #ffffff;
  color: #111111;
  border-radius: 10px;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

.navbar-toggler .bi {
  font-size: 1.2rem;
}

.header-flags {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
  box-shadow: none;
}

.flag-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.flag-btn.is-active {
  border-color: rgba(239, 66, 111, 0.35);
  background: var(--brand-primary-soft);
  box-shadow:
    0 0 0 1px rgba(239, 66, 111, 0.08),
    0 8px 18px rgba(239, 66, 111, 0.12);
}

.flag-btn:focus-visible {
  outline: 2px solid rgba(239, 66, 111, 0.45);
  outline-offset: 2px;
}

.flag-btn {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #ffffff;
  padding: 5px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
  box-shadow: none;
  font-family: var(--font-navigation-family);
  font-size: 0.68rem;
  font-weight: 700;
}

.flag-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.flag-btn.is-active {
  border-color: rgba(239, 66, 111, 0.35);
  background: var(--brand-primary-soft);
  box-shadow:
    0 0 0 1px rgba(239, 66, 111, 0.08),
    0 8px 18px rgba(239, 66, 111, 0.12);
}

.flag-btn:focus-visible {
  outline: 2px solid rgba(239, 66, 111, 0.45);
  outline-offset: 2px;
}

.flag {
  display: inline-block;
  width: 20px;
  height: auto;
}

.flag-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.header-nav {
  background-color: #ffffff;
  padding: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 999;
}

.nav-scroll {
  width: 100%;
  max-width: 1280px;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

.nav-horizontal {
  display: flex;
  gap: clamp(0.8rem, 1.3vw, 1.35rem);
  justify-content: center;
  align-items: center;
  margin: 2px;
  padding: 0.82rem 1rem;
  list-style: none;
  width: max-content;
  min-width: 100%;
  max-width: none;
  overflow: visible;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-horizontal::-webkit-scrollbar {
  display: none;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: visible !important;
}

.nav-item .nav-link,
.nav-item .nav-link-label {
  font-family: var(--font-navigation-family) !important;
}

.nav-item .nav-link {
  color: var(--primary) !important;
  font-size: var(--fs-nav) !important;
  font-weight: 700 !important;
  padding: 0.15rem 0 !important;
  letter-spacing: 0.06em;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.72rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: var(--accent) !important;
}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
  transform: scaleX(1);
}

.nav-link-chevron {
  font-size: 0.72rem;
  transform: translateY(-1px);
  color: rgba(17, 17, 17, 0.55);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 18px;
  min-width: 250px;
  width: 250px;
  display: flex !important;
  flex-direction: column;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: auto !important;
  box-shadow: 0 22px 40px rgba(17, 17, 17, 0.12);
  z-index: 2000;
  margin-top: 0;
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

@media (min-width: 768px) {
  .nav-item:hover .dropdown-menu,
  .nav-item.is-open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 767.98px) {
  .nav-item.active .dropdown-menu,
  .nav-item.is-open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

.dropdown-item {
  display: block !important;
  width: 100%;
  padding: 0.95rem 1.15rem;
  color: #111111;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  background-color: #ffffff;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
  cursor: pointer;
  pointer-events: auto !important;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--brand-primary-soft);
  color: var(--accent);
  padding-left: 1.35rem;
}

/* HERO SECTION */
.hero {
  padding: 10px 0 82px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f5 100%);
  overflow: hidden;
  --hero-ring-teal: clamp(4px, 1.1vw, 6px);
  --hero-ring-yellow: clamp(5px, 1.3vw, 7px);
}

.hero-container {
  max-width: 1280px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: #ffffff;
  background: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(5.45rem, 5vw, 5.7rem);
  font-weight: 400;
  line-height: 0.93;
  color: #111111;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.05em;
}

//.hero-title strong,
//.hero-title b,
.hero-title-line:last-child {
  font-weight: 400;
}

.hero-accent {
  color: var(--brand-primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 0.6vw + 0.88rem, 1.06rem);
  line-height: 1.48;
  color: #5f6368;
  margin: 0;
  font-weight: 400;
  max-width: 37ch;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 20px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: var(--shadow-soft);
}

.hero-cta:hover {
  color: #ffffff;
  background: var(--brand-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-media {
  isolation: isolate;
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 13 / 16;
  margin-left: auto;
  --hero-gap: clamp(4px, 0.55vw, 8px);
  --hero-pull-x: clamp(8px, 1.1vw, 18px);
  --hero-overlap-c: clamp(90px, 8vw, 140px);
  --hero-overlap-d: clamp(150px, 11vw, 230px);
  --hero-nudge-a-up: clamp(10px, 1.1vw, 20px);
  --hero-nudge-b-down: clamp(6px, 0.9vw, 14px);
}

.hero-blob {
  position: absolute;
  left: 28%;
  top: 22%;
  width: 70%;
  height: 74%;
  background: linear-gradient(135deg, #fff1f5 0%, #f8d7e2 42%, #ffffff 100%);
  border-radius: clamp(48px, 8vw, 86px);
  transform: none;
  opacity: 0.95;
  z-index: 0;
  box-shadow: 0 32px 70px rgba(239, 66, 111, 0.12);
}

.hero-media-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: max-content max-content;
  column-gap: var(--hero-gap);
  row-gap: var(--hero-gap);
  align-items: start;
  justify-content: center;
  padding-top: clamp(4px, 0.8vw, 10px);
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hero-photo--oval {
  border-radius: 999px;
}
.hero-photo--circle {
  border-radius: 50%;
}

.hero-photo--ring-teal {
  border: var(--hero-ring-teal) solid #06c0bf;
}
.hero-photo--ring-yellow {
  border: var(--hero-ring-yellow) solid #ffd24a;
}

/* Posiciones para igualar el layout del ejemplo */
.hero-photo--a {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: clamp(180px, 19vw, 230px);
  height: clamp(300px, 30vw, 360px);
  z-index: 2;
  margin-top: calc(-1 * var(--hero-nudge-a-up));
}

.hero-photo--b {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  align-self: start;
  width: clamp(155px, 17vw, 210px);
  height: clamp(155px, 17vw, 210px);
  z-index: 3;
  margin-top: var(--hero-nudge-b-down);
}

.hero-photo--c {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  width: clamp(205px, 23vw, 290px);
  height: clamp(205px, 23vw, 290px);
  z-index: 3;
  margin-top: calc(-1 * var(--hero-overlap-c));
  margin-right: calc(-1 * var(--hero-pull-x));
}

.hero-photo--d {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  align-self: end;
  width: clamp(190px, 20vw, 240px);
  height: clamp(315px, 32vw, 390px);
  z-index: 1;
  margin-top: calc(-1 * var(--hero-overlap-d));
  margin-left: calc(-1 * var(--hero-pull-x));
}

@media (max-width: 1199.98px) {
  .hero-media {
    max-width: 480px;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding: 70px 0 82px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .hero-media {
    margin: 0 auto;
  }
  .hero-title {
    text-align: left;
  }
  .header-meta-copy {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 48px 0 62px;
  }
  .hero-layout {
    gap: 1.75rem;
  }
  .hero-media {
    max-width: 420px;
  }
  .hero-title-line {
    white-space: normal;
  }
  .hero-media {
    --hero-gap: 6px;
    --hero-pull-x: 10px;
    --hero-overlap-c: 76px;
    --hero-overlap-d: 130px;
    --hero-nudge-a-up: 8px;
    --hero-nudge-b-down: 8px;
  }
}

/* SECTIONS */
.section-space {
  padding: 58px 0;
  border-bottom: 1px solid var(--border);
}

.section-space:last-of-type {
  border-bottom: none;
}

/* GETTING STARTED */
.getting-started {
  background: #e9eef2;
}

.getting-started .gs-heading {
  text-align: center;
  font-weight: 400;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 clamp(1rem, 2vw, 1.6rem) 0;
  color: #0b0b0b;
}

.getting-started .gs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  align-items: stretch;
}

.getting-started .gs-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: clamp(1.1rem, 1.8vw, 1.55rem);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
}

.getting-started .gs-card-title {
  //font-weight: 700;
  font-size: clamp(1.2rem, 1.2vw + 0.95rem, 1.55rem);
  margin: 0 0 0.5rem 0;
}

.getting-started .gs-card-text {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.48;
}

.getting-started .gs-big-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2vw, 2rem);
  justify-items: center;
  align-items: center;
  margin-bottom: clamp(1.4rem, 2.2vw, 2rem);
}

.getting-started .gs-round {
  width: clamp(180px, 19vw, 240px);
  height: clamp(180px, 19vw, 240px);
  border-radius: 50%; /* 🔥 FIX */
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
}

.getting-started .gs-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.getting-started .gs-round--ring {
  border: 4px solid var(--gs-ring);
  border-radius: 50%;
  overflow: hidden;
}

.getting-started .gs-stack {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.getting-started .gs-card--row {
  display: flex; /* 🔥 FIX */
  align-items: center;
  gap: clamp(1.1rem, 2vw, 1.7rem);
}

.getting-started .gs-round--sm {
  width: clamp(160px, 15vw, 210px);
  height: clamp(160px, 15vw, 210px);
  min-width: clamp(160px, 15vw, 210px); /* 🔥 FIX */
  flex-shrink: 0; /* 🔥 FIX */
}

.getting-started .gs-row-copy {
  max-width: 44ch;
}

@media (max-width: 991.98px) {
  .getting-started .gs-layout {
    grid-template-columns: 1fr;
  }
  .getting-started .gs-row-copy {
    max-width: none;
  }
}

/* LIDERAZGOS */
.liderazgos {
  background: #e9eef2;
}

.liderazgos .leader-head {
  text-align: center;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.liderazgos .leader-title {
  margin: 0 0 0.75rem 0;
}

.liderazgos .leader-subtitle {
  margin: 0 auto;
  max-width: 70ch;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.48;
}

.liderazgos .leader-block-label {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0.9rem;
}

.liderazgos .rank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

.liderazgos .rank-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: clamp(1rem, 1.4vw, 1.35rem);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  min-height: 150px;
}

.liderazgos .rank-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
  border-color: rgba(233, 69, 96, 0.35);
}

.liderazgos .rank-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}

.liderazgos .rank-svg {
  width: 52px;
  height: 52px;
  display: block;
}

.liderazgos .rank-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ff3b30;
  font-size: 1rem;
}

.liderazgos .rank-text {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .liderazgos .rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .liderazgos .rank-grid {
    grid-template-columns: 1fr;
  }
}

/* CLUBES */
.clubes {
  background: #e9eef2;
}

.clubes .club-head {
  text-align: center;
  margin-bottom: clamp(1.6rem, 3.4vw, 2.6rem);
}

.clubes .club-title {
  margin: 0 0 0.65rem 0;
}

.clubes .club-subtitle {
  margin: 0 auto;
  max-width: 70ch;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.55;
}

.clubes .club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, max-content));
  gap: 24px;

  justify-content: center; /* 🔥 centra siempre */
}

.clubes .club-card {
  background: #ffffff;
  border-radius: 1.35rem;
  padding: clamp(1.2rem, 1.9vw, 1.7rem);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.clubes .club-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 59, 48, 0.18);
}

.clubes .club-icon {
  display: grid;
  place-items: center;
}

.clubes .club-svg {
  width: 62px;
  height: 62px;
}

.clubes .club-icon--spacer {
  opacity: 0;
}

.clubes .club-label {
  font-weight: 700;
  color: #ff2f4b;
  font-size: 18px;
  margin-bottom: 10px !important;
}

.clubes .club-text {
  color: #5c667a;
  font-size: 15px;
}

@media (max-width: 767.98px) {
  .clubes .club-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .clubes .club-grid {
    grid-template-columns: 1fr;
  }
}

/* ZERMAT'S TOP */
.zermats-top {
  background: #e9eef2;
}

.zermats-top .zt-head {
  text-align: center;
  margin-bottom: clamp(1.6rem, 3.4vw, 2.6rem);
}

.zermats-top .zt-heading {
  margin: 0 0 0.65rem 0;
}

.zermats-top .zt-subtitle {
  margin: 0 auto;
  max-width: 70ch;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.55;
}

.zermats-top .zt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.zermats-top .zt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 24px;
  text-align: center;
  text-decoration: none;
}

.zermats-top .zt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 59, 48, 0.18);
}

.zermats-top .zt-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
}

.zermats-top .zt-svg {
  width: 62px;
  height: 62px;
}

.zermats-top .zt-icon--spacer {
  opacity: 0;
}

.zermats-top .zt-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ff3b30;
  font-size: 1.02rem;
}

.zermats-top .zt-text {
  color: #6b7280;
  font-size: 0.93rem;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .zermats-top .zt-grid {
    grid-template-columns: 1fr;
  }
}

.zt-card__media {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.zt-card__img {
  max-width: 160px;
  max-height: 120px;
  object-fit: contain;
}

/* TOP SELLERS / TIKTOK HEAD */
.top-sellers,
.tiktok {
  background: #e9eef2;
}

.section-title,
.getting-started .gs-heading,
.ts-heading,
.testi-title,
.blog-section-title,
.liderazgos .leader-title,
.clubes .club-title,
.zermats-top .zt-heading,
.rank-heading,
.tiktok-title,
.events-title,
.video-title {
  font-family: var(--font-navigation-family);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 16px;
}

.zt-heading--accent {
  color: #ff2f4b;
  font-style: italic;
  font-weight: 500;
  margin-right: 8px;
}

.zt-heading--main {
  color: #000;
  font-weight: 700;
}

.ts-head {
  text-align: center;
  margin-bottom: clamp(1.6rem, 3.4vw, 2.6rem);
}

.ts-heading {
  margin: 0 0 0.65rem 0;
}

.ts-subtitle {
  margin: 0 auto;
  max-width: 70ch;
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.55;
}

.section-title {
  margin-bottom: 0.8rem;
  text-align: center;
}

.section-subtitle {
  font-size: var(--fs-section-subtitle);
  color: var(--text-light);
  line-height: 1.8;
}

/* CARDS */
.soft-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.soft-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.soft-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-light {
  background-color: var(--bg-light) !important;
  color: var(--primary) !important;
}

.text-dark {
  color: var(--primary) !important;
}

.text-muted {
  color: var(--text-light) !important;
}

/* IMAGES */
.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* LAYOUT GRIDS */
.row {
  gap: 2rem;
}

.row.g-4 {
  gap: 2rem;
}

.row.align-items-center {
  align-items: center;
}

/* FEATURE CARDS */
.feature-card {
  text-align: center;
}

.feature-card h4 {
  margin-bottom: 1rem;
}

.feature-card .small {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FOOTER */
.footer-shell {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0;
  margin-top: 60px;
}

.footer-shell .container {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-shell a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-shell a:hover {
  color: var(--white);
}

.footer-shell .small {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* UTILITIES */
.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.me-3 {
  margin-right: 1rem;
}

.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 2.5rem;
}

.gap-4 {
  gap: 2rem;
}

.fw-bold {
  font-weight: 700;
}
.recognition-kpi {
  font-size: 2.4rem;
  font-weight: 900;
}

.speaker-photo,
.gallery-photo {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}
.speaker-photo {
  aspect-ratio: 4/5;
}
.gallery-photo {
  aspect-ratio: 4/3;
}

.ticket-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(111, 66, 255, 0.95) 0%,
    rgba(0, 194, 255, 0.85) 100%
  );
  color: white;
}
.ticket-card.highlight p,
.ticket-card.highlight li,
.ticket-card.highlight .small {
  color: rgba(255, 255, 255, 0.92);
}
.ticket-price {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}
.ticket-list {
  padding-left: 1.15rem;
}
.ticket-list li {
  margin-bottom: 0.65rem;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.community-card .value {
  font-size: 2rem;
  font-weight: 900;
}

.sponsor-pill {
  border-radius: 999px;
  padding: 0.9rem 1rem;
  text-align: center;
  font-weight: 800;
  background: white;
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 0 !important;
}
.accordion-button {
  font-weight: 800;
  color: var(--ink);
  background: transparent !important;
}
.accordion-button:not(.collapsed) {
  color: var(--brand);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  color: var(--muted);
}

.footer-shell {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 34px;
}
.footer-shell h5,
.footer-shell h6 {
  color: white;
  font-weight: 800;
}
.footer-link {
  color: rgba(255, 255, 255, 0.72);
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-link:hover {
  color: white;
}

@media (max-width: 991.98px) {
  .hero-panel {
    min-height: auto;
  }
  .hero-stats,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Navigation responsive */
  .nav-horizontal {
    gap: 2rem;
    padding: 1.5rem 0;
    justify-content: flex-start;
  }

  .nav-item .nav-link {
    font-size: 0.95rem;
    padding: 0.75rem 0 !important;
  }

  .dropdown-menu {
    min-width: 200px;
    width: 200px;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 54px 0;
  }
  .hero {
    padding-top: 30px;
  }
  .hero-grid,
  .hero-stats,
  .community-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    padding: 1.4rem;
    border-radius: 28px;
  }
  .btn-pill {
    width: 100%;
    justify-content: center;
  }

  /* Mobile Navigation */
  .header-promo-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-top-content {
    //grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0.55rem;
  }

  .header-meta {
    display: none;
  }

  .navbar-brand {
    font-size: 1.4rem;
    justify-self: center;
  }

  .header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-flags {
    gap: 0.5rem;
    justify-self: end;
    justify-content: flex-end;
  }

  .flag {
    font-size: 1.4rem;
  }

  .nav-horizontal {
    gap: 0.2rem;
    padding: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
  }

  .header-nav {
    display: none;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    width: 100%;
    max-width: 100%;
    padding: 0.35rem 1rem 0.75rem;
    overflow-x: hidden;
  }

  .header-nav.show {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
  }

  .nav-item {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-item .nav-link {
    font-size: 0.92rem;
    padding: 0.82rem 0.85rem !important;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    border: none !important;
    border-top: 1px dashed rgba(17, 17, 17, 0.16) !important;
    background: #fafafa !important;
  }

  .dropdown-item {
    padding: 0.68rem 1.1rem;
    font-size: 0.82rem;
  }

  .dropdown-item:hover {
    padding-left: 1.5rem;
  }

  .nav-scroll {
    width: 100%;
    max-width: none;
    overflow-x: visible;
    overflow-y: visible;
  }

  .nav-horizontal {
    gap: 0;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
  }
}

@media (max-width: 576px) {
  .header-top {
    padding: 1rem 1.5rem;
  }

  :root {
    --header-offset: 118px;
  }

  .header-nav {
    min-height: 60px;
  }

  .nav-horizontal {
    gap: 0;
    padding: 0;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100%;
    justify-content: flex-start;
  }

  .nav-item .nav-link {
    font-size: 0.86rem;
    padding: 0.6rem 0.15rem !important;
  }

  .nav-link::after {
    bottom: -0.45rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .brand-logo {
    width: clamp(150px, 56vw, 210px);
  }

  .hero-title {
    font-size: clamp(0.78rem, 3w, 0.78rem);
    line-height: 1.01;
  }

  .hero-subtitle {
    font-size: clamp(0.92rem, 3.8vw, 1.02rem);
    line-height: 1.32;
  }

  .flag {
    font-size: 1.2rem;
  }

  .dropdown-menu {
    min-width: 150px;
    width: 150px;
  }

  .dropdown-item {
    padding: 0.55rem 0.8rem;
    font-size: 0.86rem;
  }
}

/* Image Styles */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-xl) - 8px);
  box-shadow: var(--shadow);
}

.soft-card .img-fluid {
  margin: -1.4rem -1.4rem 1.4rem -1.4rem;
  width: calc(100% + 2.8rem);
  height: auto;
  border-radius: calc(var(--radius-xl) - 8px) calc(var(--radius-xl) - 8px) 0 0;
}

.brand-logo {
  max-height: 80px; /* 🔥 controla la altura real del header */
  width: auto; /* mantiene proporción */
  height: auto;
  display: block;
}
@media (max-width: 576px) {
  .brand-logo {
    max-height: 40px;
  }
}

.rank-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rank-list-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border: 1px solid #e1e1e1;
}
~ .rank-list-title {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.rank-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rank-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.rank-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 5px;
  border-radius: 8px;
  border: 0px solid transparent;
  transition: all 0.2s ease;
}

/* 🔹 filas intercaladas */
.rank-item.even {
  background-color: #f8f9fa;
}

.rank-item.odd {
  background-color: #ffffff;
}

/* 🔹 hover bonito */
.rank-item:hover {
  border-color: #c0c0c0;
  background-color: #eef3ff;
}

/* 🔹 botón */
.rank-download {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #555;
  font-size: 16px;
}

.rank-download:hover {
  color: #007bff;
}
/* =========================
   FIX GETTING STARTED (FORZADO)
========================= */

.getting-started .gs-round,
.getting-started .gs-round--sm {
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

/* 🔥 tamaños correctos */
.getting-started .gs-round {
  width: clamp(180px, 19vw, 240px) !important;
  height: clamp(180px, 19vw, 240px) !important;
}

.getting-started .gs-round--sm {
  width: clamp(160px, 25vw, 210px) !important;
  height: clamp(160px, 15vw, 210px) !important;
  min-width: clamp(160px, 15vw, 210px) !important;
  flex-shrink: 0 !important;
}

/* 🔥 borde correcto */
.getting-started .gs-round--ring {
  border: 4px solid var(--gs-ring) !important;
}

/* 🔥 imagen */
.getting-started .gs-round img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* 🔥 layout horizontal correcto */
.getting-started .gs-card--row {
  display: flex !important;
  align-items: center !important;
  gap: clamp(1.1rem, 2vw, 1.7rem) !important;
}

.highlight {
  font-weight: 700 !important;
  font-style: italic !important;
}

/* 🔥 CENTRADO REAL */
.club-content {
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}
.testi-social-share {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.testi-social-share a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}

#share-facebook {
  background: #fff;
}
#share-twitter {
  background: #fff;
}
#share-whatsapp {
  background: #fff;
}
#share-linkedin {
  background: #fff;
}
#share-copy {
  background: #fff;
}
#share-copy {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 0;
}

.testi-social-share a:hover {
  opacity: 0.8;
}
/* ===== DESKTOP ===== */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 10px;
  border: 1px solid #eee;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .header-nav {
    display: none;
  }

  .header-nav.active {
    display: block;
  }

  .nav-horizontal {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* ocultar dropdown normal */
  .dropdown-menu {
    display: none !important;
  }

  /* submenu horizontal */
  .submenu-mobile {
    display: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
  }

  .submenu-mobile a {
    white-space: nowrap;
    padding: 6px 12px;
    background: #f1f1f1;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    color: #000;
  }

  /* scrollbar bonito */
  .submenu-mobile::-webkit-scrollbar {
    height: 4px;
  }

  .submenu-mobile::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
}

/* ===== FIX MOBILE HEADER LAYOUT ===== */
@media (max-width: 767.98px) {
  .header-top-content {
    grid-template-columns: auto 1fr auto !important;
    align-items: center;
  }

  .header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .navbar-brand {
    justify-self: center;
  }

  .header-actions {
    justify-self: end;
  }
}

.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.img-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.img-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.testi-detail {
  position: relative;
}

/* Zona donde van los botones */
.testi-share-zone {
  position: absolute;
  left: 0;
  top: 220px; /* 🔥 AJUSTA este valor según tu diseño */
  width: 40%;
  display: flex;
  justify-content: center;
}

/* Contenedor principal de Tabs */
.gold-tabs-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

/* Navegación tipo "Pill" */
.gold-tabs-nav {
  display: inline-flex;
  background: #f1f5f9; /* Gris muy claro */
  padding: 6px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.gold-tab-btn {
  border: none;
  background: transparent;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado Activo con efecto de elevación */
.gold-tab-btn.active {
  background: #ffffff;
  color: #b59410; /* Dorado elegante */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.gold-tab-btn:hover:not(.active) {
  color: #334155;
}

/* Paneles de contenido */
.gold-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.gold-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Contenedor del Grid */
.rank-two-column-grid {
  display: grid;
  /* Crea 2 columnas de igual tamaño */
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 0;
}

/* Estilo de la tarjeta */
.rank-list-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
}

.rank-list-title {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 2px solid #silver; /* Puedes cambiar por el color plateado */
  padding-bottom: 5px;
}

/* Ajuste para móviles: que pase a 1 columna en pantallas pequeñas */
@media (max-width: 992px) {
  .rank-two-column-grid {
    grid-template-columns: 1fr;
  }
}

.rank-grid {
  display: grid !important;
  grid-template-columns: repeat(
    2,
    1fr
  ); /* Crea 2 columnas iguales (50% cada una) */
  gap: 20px; /* Espacio entre las tarjetas */
  align-items: start; /* Asegura que las tarjetas no se estiren verticalmente si tienen diferente contenido */
}
#gold-rank-logo-container img {
    max-height: 10rem; /* Ajusta según tu header */
    display: block;
    margin: 0 auto;
}