:root {
  --primary: #7a1f2b;
  /* bordó premium */
  --primary-dark: #3b0d14;
  /* bordó oscuro */
  --accent: #c9a227;
  /* dorado suave elegante */
  --black: #0d0d0f;
  /* negro profundo */
  --black-soft: #17181c;
  /* gris oscuro premium */
  --white: #f7f7f4;
  /* blanco perla */
  --gray: #d8d8d2;
  /* gris claro */
  --muted: #9b9b95;
  /* texto secundario */
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #151015;
  color: var(--black);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216, 184, 106, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.logo-circle {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  padding: 4px;
  box-shadow: 0 0 30px rgba(122, 31, 43, 0.35);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-logo h1 {
  font-size: 18px;
  line-height: 1;
}

.nav-logo span {
  font-size: 12px;
  color: #cde8d6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #f4efe6;
  font-size: 14px;
  font-weight: 800;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #d8b86a;
  box-shadow: 0 0 14px rgba(216, 184, 106, 0.5);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  padding: 150px 7% 90px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 42px;
  color: white;
  overflow: hidden;

  background:
    radial-gradient(circle at 18% 40%, rgba(123, 30, 43, 0.38), transparent 30%),
    radial-gradient(circle at 86% 36%, rgba(216, 184, 106, 0.12), transparent 28%),
    linear-gradient(135deg, #09090b 0%, #151015 48%, #2a0b12 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}

.hero::after {
  content: "JU";
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 420px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -12px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  justify-self: end;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 900;
  color: #d8b86a;
  margin-bottom: 18px;
  text-shadow:
    0 0 10px rgba(216, 184, 106, 0.35),
    0 0 26px rgba(216, 184, 106, 0.16);
}

.hero h2 {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.86;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fffaf0;
  text-shadow:
    0 0 14px rgba(255, 250, 240, 0.13),
    0 10px 34px rgba(0, 0, 0, 0.72);
}

.hero h2 span {
  display: block;
  color: #d8b86a;
  text-shadow:
    0 0 12px rgba(216, 184, 106, 0.36),
    0 0 28px rgba(216, 184, 106, 0.18),
    0 8px 30px rgba(0, 0, 0, 0.62);
}

.hero-text {
  margin-top: 28px;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.7;
  color: #e3f4e8;
}

.hero-buttons {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(135deg, #7a1f2b, #b43a4d);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(122, 31, 43, 0.35);
}

.btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(122, 31, 43, 0.45);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 420px;
  padding: 38px;
  border-radius: 38px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(123, 30, 43, 0.18)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    inset 0 0 60px rgba(216, 184, 106, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(216, 184, 106, 0.12);
  filter: blur(8px);
}

.hero-card::after {
  content: "1927";
  position: absolute;
  top: 30px;
  left: 34px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 92px;
  color: rgba(255, 255, 255, 0.06);
}

.hero-card span {
  color: #f4efe6;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-card strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 86px;
  line-height: 0.86;
  color: #ffffff;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
}

.hero-card p {
  color: #d8d0c4;
  font-weight: 600;
}

/* SECTIONS */

.section {
  padding: 110px 7%;
}

.section-header {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-header p {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  color: var(--black);
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  color: var(--green-dark);
}

.section-header.light h2,
.section-header.light p {
  color: white;
}

/* IDENTITY */

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.identity-card {
  padding: 36px;
  min-height: 250px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(122, 31, 43, 0.08);
  transition: 0.3s;
}

.identity-card:hover {
  transform: translateY(-8px);
}

.identity-card h3 {
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.identity-card p {
  color: #52625a;
  line-height: 1.7;
}

/* SPORTS */

.sports {
  background:
    linear-gradient(135deg, rgba(13, 13, 15, 0.97), rgba(59, 13, 20, 0.96)),
    url("assets/sports-bg.jpg");
  background-size: cover;
  background-position: center;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sport-card {
  min-height: 390px;
  border-radius: 34px;
  padding: 28px;
  color: white;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1b20, #3b0d14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.sport-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.24), transparent 38%),
    linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.sport-card div {
  position: relative;
  z-index: 2;
}

.sport-card span {
  font-size: 14px;
  font-weight: 900;
  color: #e1c277;
}

.sport-card h3 {
  font-size: 38px;
  margin: 8px 0 10px;
}

.sport-card p {
  color: #e3f4e8;
  line-height: 1.6;
}

/* NEWS */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border-left: 6px solid var(--primary);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.news-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.news-card h3 {
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 12px;
}

.news-card p {
  color: #52625a;
  line-height: 1.7;
}

/* HISTORY */

.history {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: #ece9e4;
}

.eyebrow.dark {
  color: var(--primary);
}

.history-content h2 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  color: var(--black);
  margin-bottom: 24px;
}

.history-content p {
  color: #4d5c54;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 17px;
}

.history-box {
  min-height: 380px;
  border-radius: 40px;
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(122, 31, 43, 0.96), rgba(13, 13, 15, 0.98));
  color: white;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.history-box strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 76px;
  line-height: 0.9;
}

.history-box span {
  margin-top: 16px;
  color: #d9ffe6;
  font-size: 18px;
  line-height: 1.5;
}

/* CONTACT */

.contact {
  background: #0d0d0f;
}

.contact-card {
  max-width: 1000px;
  margin: auto;
  padding: 70px;
  text-align: center;
  border-radius: 42px;
  background:
    radial-gradient(circle at top, rgba(201, 162, 39, 0.18), transparent 35%),
    linear-gradient(135deg, #7a1f2b, #0d0d0f);
  color: white;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1;
  margin-bottom: 18px;
}

.contact-card p {
  max-width: 650px;
  margin: 0 auto 32px;
  color: #e3f4e8;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dark-btn {
  color: white;
}

/* FOOTER */

.footer {
  padding: 26px 7%;
  background: #09090b;
  color: #c9c7c0;
  text-align: center;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 88px;
    right: 7%;
    width: 240px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(4, 63, 34, 0.96);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 46px;
  }

  .hero-card {
    width: 100%;
  }

  .identity-grid,
  .sports-grid,
  .news-grid,
  .history {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 42px 24px;
  }
}

.hidden {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* TOPBAR PREMIUM ESTILO CLUB */
/* ============================= */

.club-topbar {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 7%;
  transition: 0.35s ease;
}

.topbar-glass {
  min-height: 86px;
  padding: 0 28px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 22px;

  background:
    linear-gradient(135deg, rgba(12, 12, 15, 0.78), rgba(25, 12, 16, 0.62));
  border: 1px solid rgba(216, 184, 106, 0.18);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 0 40px rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transition: 0.35s ease;
}

/* Estado al hacer scroll */

.club-topbar.scrolled {
  top: 12px;
}

.club-topbar.scrolled .topbar-glass {
  min-height: 68px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 8, 10, 0.86), rgba(23, 10, 14, 0.74));
}

.club-topbar.scrolled .club-logo-glow {
  width: 54px;
  height: 54px;
  box-shadow:
    0 0 22px rgba(216, 184, 106, 0.34),
    0 0 42px rgba(123, 30, 43, 0.18);
}

.club-topbar.scrolled .club-brand-text strong {
  font-size: 17px;
}

.club-topbar.scrolled .club-brand-text small {
  font-size: 11px;
}

/* Botón hamburguesa */

.burger-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 13px;
  cursor: pointer;
  transition: 0.25s ease;
}

.burger-btn:hover {
  background: rgba(216, 184, 106, 0.14);
  transform: translateY(-2px);
}

.burger-btn span {
  display: block;
  height: 2px;
  border-radius: 10px;
  background: #f4efe6;
  box-shadow: 0 0 10px rgba(216, 184, 106, 0.35);
}

.burger-btn span:nth-child(2) {
  width: 70%;
}

.burger-btn span:nth-child(3) {
  width: 45%;
}

/* Marca del club */

.club-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.club-logo-glow {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  padding: 5px;

  background:
    radial-gradient(circle, rgba(216, 184, 106, 0.22), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(216, 184, 106, 0.28);

  box-shadow:
    0 0 28px rgba(216, 184, 106, 0.45),
    0 0 70px rgba(123, 30, 43, 0.28);

  transition: 0.35s ease;
}

.club-logo-glow::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(216, 184, 106, 0.18), transparent 65%);
  z-index: -1;
  animation: logoAura 3.8s ease-in-out infinite;
}

.club-logo-glow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes logoAura {

  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.club-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.club-brand-text strong {
  color: #fffaf0;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 250, 240, 0.16);
  transition: 0.35s ease;
}

.club-brand-text small {
  margin-top: 4px;
  color: #d8d0c4;
  font-size: 12px;
  font-weight: 700;
  transition: 0.35s ease;
}

/* Links visibles */

.topbar-main-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-link {
  position: relative;
  padding: 12px 18px;
  color: #f4efe6;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.topbar-link::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 10px;
  background: #d8b86a;
  box-shadow: 0 0 14px rgba(216, 184, 106, 0.52);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
}

.topbar-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.topbar-link:hover::before,
.topbar-link.active-link::before {
  transform: scaleX(1);
}

.contact-link::before {
  background: #f4efe6;
  box-shadow: 0 0 14px rgba(244, 239, 230, 0.38);
}

/* ============================= */
/* MENÚ DESPLEGABLE LATERAL */
/* ============================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 24px;
  left: 7%;
  z-index: 1000;
  width: min(390px, 86vw);
  min-height: 520px;
  padding: 28px;
  border-radius: 32px;

  background:
    linear-gradient(145deg, rgba(13, 13, 15, 0.88), rgba(45, 14, 21, 0.76));
  border: 1px solid rgba(216, 184, 106, 0.2);

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.48),
    inset 0 0 50px rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  transform: translateX(-120%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: 0.36s cubic-bezier(.2, .9, .2, 1);
}

.side-menu.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  color: #d8b86a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 900;
}

.side-menu-header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fffaf0;
  font-size: 28px;
  cursor: pointer;
  transition: 0.25s ease;
}

.side-menu-header button:hover {
  background: rgba(216, 184, 106, 0.16);
  transform: rotate(90deg);
}

.side-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-menu-links a {
  position: relative;
  min-height: 72px;
  padding: 0 20px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  gap: 16px;

  color: #fffaf0;
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
  transition: 0.25s ease;
}

.side-menu-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 184, 106, 0.18), transparent);
  transform: translateX(-100%);
  transition: 0.28s ease;
}

.side-menu-links a:hover::before {
  transform: translateX(0);
}

.side-menu-links a:hover {
  transform: translateX(8px);
  border-color: rgba(216, 184, 106, 0.22);
}

.side-menu-links a span {
  position: relative;
  z-index: 2;
  color: #d8b86a;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.side-menu-links a {
  position: relative;
  z-index: 2;
}

/* Responsive */

@media (max-width: 800px) {
  .club-topbar {
    top: 12px;
    padding: 0 18px;
  }

  .topbar-glass {
    grid-template-columns: 52px 1fr;
    min-height: 74px;
    padding: 0 16px;
  }

  .topbar-main-links {
    display: none;
  }

  .club-brand-text strong {
    font-size: 17px;
  }

  .club-brand-text small {
    font-size: 11px;
  }

  .club-logo-glow {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .side-menu {
    top: 12px;
    left: 18px;
  }
}

/*tarjetas nuevas :D*/

.activities {
  position: relative;
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 184, 106, 0.10), transparent 26%),
    radial-gradient(circle at 88% 85%, rgba(123, 30, 43, 0.12), transparent 30%),
    linear-gradient(180deg, #24181b 0%, #302226 48%, #21171a 100%);
  color: #f4efe6;
  overflow: hidden;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.activity-card {
  position: relative;
  min-height: 390px;
  padding: 104px 24px 24px;
  border-radius: 32px;
  overflow: visible;

  background:
    radial-gradient(circle at 18% 0%, rgba(216, 184, 106, 0.14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(123, 30, 43, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(20, 16, 18, 0.96), rgba(54, 18, 25, 0.92));

  border: 1px solid rgba(216, 184, 106, 0.16);

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.36),
    0 0 50px rgba(123, 30, 43, 0.12),
    inset 0 0 50px rgba(255, 255, 255, 0.035);

  transition: 0.35s ease;
}

.activity-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(216, 184, 106, 0.32), transparent 28%, rgba(123, 30, 43, 0.28));
  opacity: 0;
  filter: blur(12px);
  z-index: -1;
  transition: 0.35s ease;
}

.activity-card:hover {
  transform: translateY(-12px);
  border-color: rgba(216, 184, 106, 0.32);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.46),
    0 0 75px rgba(216, 184, 106, 0.10),
    0 0 120px rgba(123, 30, 43, 0.12);
}

.activity-card:hover::after {
  opacity: 1;
}

/* Ícono flotante */

.activity-icon-box {
  position: absolute;
  top: -34px;
  left: 24px;
  width: 96px;
  height: 96px;
  border-radius: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 35% 25%, rgba(216, 184, 106, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(214, 202, 188, 0.92));

  border: 1px solid rgba(216, 184, 106, 0.35);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 34px rgba(216, 184, 106, 0.20);

  overflow: hidden;
  z-index: 5;
  transition: 0.35s ease;
}

.activity-icon-box::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(216, 184, 106, 0.20), transparent 70%);
  opacity: 0.85;
}

.activity-icon-box img {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(12%) sepia(32%) saturate(2036%) hue-rotate(324deg) brightness(91%) contrast(98%);
}

.activity-card:hover .activity-icon-box {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.46),
    0 0 44px rgba(216, 184, 106, 0.32);
}

/* Número gigante de fondo */

.activity-number-bg {
  position: absolute;
  right: 18px;
  top: 72px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 118px;
  line-height: 1;
  color: rgba(255, 250, 240, 0.045);
  z-index: 1;
  pointer-events: none;
}

.activity-number {
  position: relative;
  z-index: 3;
  display: block;
  margin-bottom: 12px;
  color: #d8b86a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

/* Etiqueta */

.activity-label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 12px;

  border-radius: 999px;
  background: rgba(216, 184, 106, 0.16);
  border: 1px solid rgba(216, 184, 106, 0.22);

  color: #ffe8a3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  box-shadow:
    0 0 18px rgba(216, 184, 106, 0.08),
    inset 0 0 12px rgba(255, 255, 255, 0.04);
}

/* Texto */

.activity-card h3,
.modern-card h3 {
  position: relative;
  z-index: 3;
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #f3d98b !important;
  text-shadow:
    0 0 10px rgba(255, 244, 220, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.55);
}

.activity-card p {
  position: relative;
  z-index: 3;
  color: #fff4dc;
  line-height: 1.65;
  font-size: 15px;
  font-weight: 700;
  max-width: 95%;

  max-height: 118px;
  overflow: hidden;

  margin-bottom: 78px;

  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.45);

  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 68%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 68%,
    transparent 100%
  );
}

/* Botón inferior */

.activity-link {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 5;

  min-height: 50px;
  border-radius: 18px;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #1a1013;
  background:
    linear-gradient(135deg, #d8b86a, #f1df9f);

  border: 1px solid rgba(255, 250, 240, 0.22);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(216, 184, 106, 0.12);

  transition: 0.28s ease;
}

.activity-link:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(216, 184, 106, 0.22);
}

.activity-link span {
  font-size: 13px;
  font-weight: 900;
}

.activity-link .arrow {
  font-size: 20px;
}

.activity-card:hover .activity-icon-box {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(216, 184, 106, 0.34),
    0 0 75px rgba(123, 30, 43, 0.22);
}

.activity-icon-box {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg, rgba(25, 25, 30, 0.98), rgba(70, 22, 30, 0.92));
  border: 1px solid rgba(216, 184, 106, 0.28);

  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(216, 184, 106, 0.24),
    0 0 60px rgba(123, 30, 43, 0.18);

  overflow: hidden;
  z-index: 4;
  transition: 0.32s ease;
}

.activity-icon-box::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(216, 184, 106, 0.14), transparent 70%);
  z-index: 0;
}

.activity-icon-box img {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.activity-number {
  display: inline-block;
  margin-bottom: 12px;
  color: #a57a2d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.activity-card h3 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
  color: #3b0d14;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.activity-card p {
  color: #52625a;
  line-height: 1.75;
  font-size: 16px;
  max-width: 95%;
}

@media (max-width: 1100px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    min-height: 300px;
  }

  .activity-card h3 {
    font-size: 30px;
  }
}

.activities .section-header p {
  color: #d8b86a;
  text-shadow:
    0 0 10px rgba(216, 184, 106, 0.25),
    0 0 24px rgba(216, 184, 106, 0.12);
}

.activities .section-header h2 {
  color: #fffaf0;
  text-shadow:
    0 0 14px rgba(255, 250, 240, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.35);
}
.activities::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, #16070d 0%, rgba(36, 24, 27, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.activities .section-header,
.activities .activities-grid {
  position: relative;
  z-index: 2;
}
.centenary-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 360px;
  min-height: 360px;
  border-radius: 34px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;

  background:
    radial-gradient(circle at top right, rgba(216, 184, 106, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(123, 30, 43, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(18, 14, 18, 0.94), rgba(60, 20, 30, 0.88));

  border: 1px solid rgba(216, 184, 106, 0.18);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 55px rgba(123, 30, 43, 0.12),
    inset 0 0 45px rgba(255, 255, 255, 0.035);

  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.centenary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 36%);
  pointer-events: none;
  z-index: 1;
}

.centenary-card::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 60%;
  height: 220%;
  transform: rotate(20deg);
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: transform 0.7s ease;
  z-index: 2;
}

.centenary-card:hover::after {
  transform: translateX(280%) rotate(20deg);
}

.centenary-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(216, 184, 106, 0.28);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(216, 184, 106, 0.10),
    0 0 120px rgba(123, 30, 43, 0.14);
}

.centenary-card-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.centenary-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(243, 217, 139, 0.25);
}

.centenary-card strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 86px;
  line-height: 0.9;
  color: #fff4dc;
  text-shadow:
    0 0 14px rgba(255, 244, 220, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.55);
}

.centenary-card .years-text {
  color: #f3d98b;
}

.centenary-card p {
  margin-top: 14px;
  margin-bottom: 26px;
  color: #e7ddd0;
  font-size: 16px;
  line-height: 1.6;
}

.centenary-hover-bar {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;

  font-weight: 900;
  font-size: 14px;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(216, 184, 106, 0.10);

  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.centenary-card:hover .centenary-hover-bar {
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(216, 184, 106, 0.18);
}

.centenary-arrow {
  font-size: 20px;
}
.centenary-card-inner::before {
  content: "1927";
  position: absolute;
  top: 24px;
  right: 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 88px;
  line-height: 1;
  color: rgba(255, 244, 220, 0.05);
  pointer-events: none;
}
/* sección del centenario :D*/
.centenary-page {
  background:
    radial-gradient(circle at top left, rgba(216, 184, 106, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(123, 30, 43, 0.14), transparent 30%),
    linear-gradient(180deg, #120d10 0%, #1b1115 45%, #120d10 100%);
  color: #fff4dc;
}

.centenary-main {
  padding-top: 130px;
}

.centenary-hero-page {
  padding: 80px 7% 50px;
}

.centenary-hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.centenary-hero-page h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(62px, 10vw, 140px);
  line-height: 0.9;
  color: #fff4dc;
  margin-bottom: 22px;
}

.centenary-hero-page p {
  max-width: 760px;
  color: #e7ddd0;
  font-size: 18px;
  line-height: 1.8;
}

.centenary-summary,
.centenary-gallery {
  padding: 80px 7%;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.summary-box {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(28, 19, 24, 0.92), rgba(59, 20, 28, 0.88));
  border: 1px solid rgba(216, 184, 106, 0.14);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.28),
    inset 0 0 30px rgba(255, 255, 255, 0.03);
}

.summary-box span {
  color: #f3d98b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summary-box h3 {
  margin: 14px 0 14px;
  font-size: 34px;
  font-family: "Bebas Neue", sans-serif;
  color: #fff4dc;
}

.summary-box p {
  color: #e7ddd0;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216, 184, 106, 0.12);
}

.gallery-item.large {
  grid-column: span 2;
  min-height: 320px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ============================= */
/* FIX TOPBAR EN CENTENARIO */
/* ============================= */

.centenary-page .topbar-glass {
  min-height: 86px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.centenary-page .club-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  max-width: 360px;
}

.centenary-page .club-logo-glow {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 22px;
}

.centenary-page .club-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.centenary-page .club-brand-text strong {
  font-size: 22px;
  line-height: 1;
  max-width: none;
  white-space: nowrap;
}

.centenary-page .club-brand-text small {
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.centenary-page .topbar-main-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.centenary-page .topbar-link {
  white-space: nowrap;
}
/* ============================= */
/* PÁGINA RENDICIONES */
/* ============================= */

.rendiciones-page {
  background:
    radial-gradient(circle at top left, rgba(216, 184, 106, 0.08), transparent 26%),
    radial-gradient(circle at 90% 30%, rgba(123, 30, 43, 0.18), transparent 32%),
    linear-gradient(180deg, #100b0e 0%, #1a1014 46%, #120d10 100%);
  color: #fff4dc;
}

.rendiciones-main {
  padding-top: 130px;
  overflow: hidden;
}

/* HERO */

.rendiciones-hero {
  position: relative;
  min-height: 82vh;
  padding: 90px 7% 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 52px;
  overflow: hidden;
}

.rendiciones-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
  pointer-events: none;
}

.rendiciones-hero::after {
  content: "JU";
  position: absolute;
  right: -50px;
  bottom: -95px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 420px;
  line-height: 1;
  color: rgba(255, 244, 220, 0.025);
  letter-spacing: -12px;
  pointer-events: none;
}

.rendiciones-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.rendiciones-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(243, 217, 139, 0.25),
    0 0 24px rgba(243, 217, 139, 0.12);
}

.rendiciones-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(70px, 11vw, 150px);
  line-height: 0.86;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff4dc;
  margin-bottom: 26px;
  text-shadow:
    0 0 16px rgba(255, 244, 220, 0.14),
    0 14px 40px rgba(0, 0, 0, 0.65);
}

.rendiciones-hero h1 span {
  display: block;
  color: #f3d98b;
  text-shadow:
    0 0 16px rgba(243, 217, 139, 0.32),
    0 0 38px rgba(243, 217, 139, 0.16);
}

.rendiciones-hero p {
  max-width: 720px;
  color: #e7ddd0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

/* TARJETA DERECHA */

.transparency-card {
  position: relative;
  z-index: 2;
  min-height: 390px;
  padding: 36px;
  border-radius: 38px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(216, 184, 106, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(123, 30, 43, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(24, 17, 21, 0.92), rgba(68, 22, 32, 0.86));

  border: 1px solid rgba(216, 184, 106, 0.18);

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(123, 30, 43, 0.14),
    inset 0 0 45px rgba(255, 255, 255, 0.035);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.transparency-card::before {
  content: "₱";
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 180px;
  color: rgba(255, 244, 220, 0.045);
  pointer-events: none;
}

.transparency-card::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -45%;
  width: 58%;
  height: 220%;
  transform: rotate(22deg);
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: transparencyShine 5.5s ease-in-out infinite;
}

@keyframes transparencyShine {
  0%, 35% {
    transform: translateX(-30%) rotate(22deg);
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  100% {
    transform: translateX(330%) rotate(22deg);
    opacity: 0;
  }
}

.transparency-card span {
  position: relative;
  z-index: 2;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.transparency-card strong {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 86px;
  line-height: 0.88;
  color: #fff4dc;
  text-shadow:
    0 0 14px rgba(255, 244, 220, 0.16),
    0 12px 35px rgba(0, 0, 0, 0.58);
}

.transparency-card p {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: #e7ddd0;
  font-size: 17px;
  font-weight: 700;
}

/* INTRO */

.rendiciones-intro {
  padding: 20px 7% 80px;
}

.rendiciones-intro-box {
  position: relative;
  padding: 42px;
  border-radius: 36px;

  background:
    linear-gradient(145deg, rgba(255, 244, 220, 0.07), rgba(123, 30, 43, 0.10));
  border: 1px solid rgba(216, 184, 106, 0.14);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 40px rgba(255, 255, 255, 0.025);
}

.rendiciones-intro-box span {
  color: #f3d98b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.rendiciones-intro-box h2 {
  max-width: 940px;
  margin: 16px 0 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  color: #fff4dc;
}

.rendiciones-intro-box p {
  max-width: 900px;
  color: #e7ddd0;
  font-size: 17px;
  line-height: 1.8;
}

/* LISTA DE RENDICIONES */

.rendiciones-list {
  position: relative;
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 184, 106, 0.10), transparent 28%),
    linear-gradient(180deg, #21161a 0%, #160f12 100%);
}

.rendiciones-list .section-header p {
  color: #f3d98b;
}

.rendiciones-list .section-header h2 {
  color: #fff4dc;
}

.rendiciones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rendicion-card {
  position: relative;
  min-height: 330px;
  padding: 30px 24px 92px;
  border-radius: 30px;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 0%, rgba(216, 184, 106, 0.12), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(123, 30, 43, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(20, 16, 18, 0.96), rgba(54, 18, 25, 0.92));

  border: 1px solid rgba(216, 184, 106, 0.16);

  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.34),
    inset 0 0 42px rgba(255, 255, 255, 0.03);

  transition: 0.32s ease;
}

.rendicion-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}

.rendicion-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 184, 106, 0.28);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(216, 184, 106, 0.08);
}

.rendicion-year {
  display: inline-block;
  margin-bottom: 18px;
  color: #f3d98b;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
}

.rendicion-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  line-height: 0.95;
  color: #fff4dc;
}

.rendicion-card p {
  position: relative;
  z-index: 2;
  color: #e7ddd0;
  line-height: 1.65;
  font-weight: 500;
}

.rendicion-link {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;

  min-height: 50px;
  padding: 0 16px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;
  font-size: 14px;
  font-weight: 900;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(216, 184, 106, 0.12);

  transition: 0.28s ease;
}

.rendicion-link:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 0 36px rgba(216, 184, 106, 0.22);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .rendiciones-hero {
    grid-template-columns: 1fr;
  }

  .transparency-card {
    max-width: 520px;
  }

  .rendiciones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .rendiciones-hero {
    padding-top: 70px;
  }

  .rendiciones-grid {
    grid-template-columns: 1fr;
  }

  .rendiciones-hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .transparency-card strong {
    font-size: 68px;
  }
}
/* ============================= */
/* DETALLE DE RENDICIONES */
/* ============================= */

.rendicion-detalle-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(216, 184, 106, 0.09), transparent 28%),
    radial-gradient(circle at 90% 26%, rgba(123, 30, 43, 0.18), transparent 30%),
    linear-gradient(180deg, #100b0e 0%, #1b1115 48%, #110b0e 100%);
  color: #fff4dc;
}

.rendicion-detalle-main {
  padding-top: 150px;
  overflow: hidden;
}

.rendicion-detalle-hero {
  padding: 80px 7% 40px;
  position: relative;
}

.rendicion-detalle-hero::after {
  content: "CUENTAS";
  position: absolute;
  right: 6%;
  top: 30px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(90px, 18vw, 260px);
  color: rgba(255, 244, 220, 0.025);
  pointer-events: none;
}

.rendicion-detalle-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.rendicion-detalle-hero h1 {
  max-width: 950px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(70px, 11vw, 145px);
  line-height: 0.86;
  color: #fff4dc;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(255, 244, 220, 0.14),
    0 14px 40px rgba(0, 0, 0, 0.65);
}

.rendicion-detalle-hero p {
  max-width: 780px;
  margin-top: 24px;
  color: #e7ddd0;
  font-size: 18px;
  line-height: 1.8;
}

/* NAVEGACIÓN POR AÑO */

.year-jump {
  position: sticky;
  top: 120px;
  z-index: 50;
  margin: 20px 7% 70px;
  padding: 12px;
  border-radius: 24px;

  display: flex;
  gap: 12px;
  flex-wrap: wrap;

  background:
    linear-gradient(135deg, rgba(12, 12, 15, 0.78), rgba(25, 12, 16, 0.62));
  border: 1px solid rgba(216, 184, 106, 0.16);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.28),
    inset 0 0 30px rgba(255, 255, 255, 0.025);
}

.year-jump a {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff4dc;
  font-weight: 900;
  letter-spacing: 1px;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: 0.25s ease;
}

.year-jump a:hover {
  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;
  transform: translateY(-2px);
}

/* SECCIONES POR AÑO */

.year-section {
  padding: 0 7% 90px;
  scroll-margin-top: 150px;
}

.year-heading {
  margin-bottom: 34px;
}

.year-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: #f3d98b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.year-heading h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(62px, 9vw, 120px);
  line-height: 0.86;
  color: #fff4dc;
}

.year-heading p {
  margin-top: 14px;
  max-width: 700px;
  color: #e7ddd0;
  font-size: 17px;
  line-height: 1.7;
}

/* BLOQUES MENSUALES */

.month-block {
  position: relative;
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 34px;

  background:
    radial-gradient(circle at 0% 0%, rgba(216, 184, 106, 0.10), transparent 30%),
    linear-gradient(145deg, rgba(24, 17, 21, 0.92), rgba(54, 18, 25, 0.86));

  border: 1px solid rgba(216, 184, 106, 0.14);

  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.32),
    inset 0 0 42px rgba(255, 255, 255, 0.025);
}

.month-title {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(216, 184, 106, 0.16);
  padding-bottom: 18px;
}

.month-title span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  color: #fff4dc;
  line-height: 0.9;
}

.month-title strong {
  color: #f3d98b;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* FILA DE RENDICIÓN */

.account-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto 150px;
  gap: 22px;
  align-items: center;

  padding: 20px;
  margin-bottom: 16px;
  border-radius: 24px;

  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.07), rgba(255, 255, 255, 0.025));

  border: 1px solid rgba(255, 255, 255, 0.07);

  transition: 0.28s ease;
}

.account-row:hover {
  transform: translateX(6px);
  border-color: rgba(216, 184, 106, 0.2);
  background:
    linear-gradient(135deg, rgba(216, 184, 106, 0.10), rgba(255, 255, 255, 0.035));
}

.account-date {
  width: 76px;
  height: 76px;
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(216, 184, 106, 0.12);
}

.account-date span {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.account-date small {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-info h3 {
  margin: 8px 0 8px;
  font-size: 24px;
  color: #fff4dc;
}

.account-info p {
  color: #e7ddd0;
  line-height: 1.6;
}

.account-tag {
  display: inline-flex;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  align-items: center;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.account-tag.income {
  background: rgba(98, 210, 137, 0.13);
  color: #9dffbd;
  border: 1px solid rgba(98, 210, 137, 0.18);
}

.account-tag.expense {
  background: rgba(255, 105, 105, 0.13);
  color: #ffb3b3;
  border: 1px solid rgba(255, 105, 105, 0.18);
}

.account-tag.event {
  background: rgba(216, 184, 106, 0.14);
  color: #f3d98b;
  border: 1px solid rgba(216, 184, 106, 0.18);
}

.account-money {
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.account-money.positive {
  color: #9dffbd;
}

.account-money.negative {
  color: #ffb3b3;
}

.account-money.neutral {
  color: #f3d98b;
}

.account-detail {
  min-height: 46px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1a1013;
  background: linear-gradient(135deg, #d8b86a, #f1df9f);

  font-size: 13px;
  font-weight: 900;

  transition: 0.25s ease;
}

.account-detail:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(216, 184, 106, 0.16);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .account-row {
    grid-template-columns: 80px 1fr;
  }

  .account-money,
  .account-detail {
    grid-column: 2;
    justify-self: start;
  }

  .account-detail {
    padding: 0 18px;
  }
}

@media (max-width: 650px) {
  .month-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-row {
    grid-template-columns: 1fr;
  }

  .account-money,
  .account-detail {
    grid-column: auto;
  }

  .year-jump {
    top: 96px;
  }
}
/* ============================= */
/* ARCHIVO MENSUAL DE RENDICIONES */
/* ============================= */

.rendicion-archivo-main {
  padding-top: 145px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 10%, rgba(216, 184, 106, 0.08), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(123, 30, 43, 0.18), transparent 30%),
    linear-gradient(180deg, #100b0e 0%, #1b1115 48%, #110b0e 100%);
  color: #fff4dc;
  overflow: hidden;
}

.archivo-hero {
  position: relative;
  padding: 80px 7% 44px;
}

.archivo-hero::after {
  content: "C.S.A.J.U";
  position: absolute;
  right: 5%;
  top: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(90px, 18vw, 260px);
  color: rgba(255, 244, 220, 0.025);
  pointer-events: none;
}

.archivo-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.archivo-hero h1 {
  max-width: 920px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(70px, 11vw, 145px);
  line-height: 0.86;
  color: #fff4dc;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(255, 244, 220, 0.14),
    0 14px 40px rgba(0, 0, 0, 0.65);
}

.archivo-hero h1 span {
  display: block;
  color: #f3d98b;
}

.archivo-hero p {
  max-width: 780px;
  margin-top: 24px;
  color: #e7ddd0;
  font-size: 18px;
  line-height: 1.8;
}

/* PANEL GENERAL */

.archivo-panel {
  margin: 20px 7% 90px;
  padding: 28px;
  border-radius: 38px;

  background:
    radial-gradient(circle at 0% 0%, rgba(216, 184, 106, 0.10), transparent 30%),
    linear-gradient(145deg, rgba(24, 17, 21, 0.92), rgba(54, 18, 25, 0.86));

  border: 1px solid rgba(216, 184, 106, 0.14);

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    inset 0 0 48px rgba(255, 255, 255, 0.025);
}

.archivo-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(216, 184, 106, 0.14);
}

.archivo-toolbar span {
  color: #f3d98b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.archivo-toolbar h2 {
  margin-top: 8px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.9;
  color: #fff4dc;
}

/* AÑOS */

.archivo-year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.year-tab {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid rgba(216, 184, 106, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: #fff4dc;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.year-tab:hover,
.year-tab.active {
  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;
  transform: translateY(-2px);
}

/* LAYOUT */

.archivo-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
}

/* MESES */

.month-sidebar {
  padding: 22px;
  border-radius: 30px;

  background:
    linear-gradient(145deg, rgba(12, 12, 15, 0.55), rgba(25, 12, 16, 0.44));

  border: 1px solid rgba(216, 184, 106, 0.12);

  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.025);
}

.month-sidebar-label {
  display: block;
  margin-bottom: 18px;
  color: #f3d98b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.month-btn {
  position: relative;
  min-height: 82px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);

  background:
    linear-gradient(145deg, rgba(255, 244, 220, 0.07), rgba(255, 255, 255, 0.025));

  color: #fff4dc;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: 0.25s ease;
}

.month-btn::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(216, 184, 106, 0.08);
}

.month-btn small {
  display: block;
  color: #f3d98b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.month-btn strong {
  display: block;
  margin-top: 8px;
  font-size: 19px;
}

.month-btn:hover,
.month-btn.active {
  transform: translateY(-3px);
  border-color: rgba(216, 184, 106, 0.28);
  background:
    linear-gradient(145deg, rgba(216, 184, 106, 0.16), rgba(123, 30, 43, 0.12));
}

.month-btn.empty {
  opacity: 0.48;
}

.month-btn.empty strong::after {
  content: " · sin archivo";
  color: rgba(231, 221, 208, 0.65);
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

/* DETALLE DEL MES */

.month-detail-card {
  min-height: 620px;
  padding: 30px;
  border-radius: 32px;

  background:
    radial-gradient(circle at 100% 0%, rgba(216, 184, 106, 0.10), transparent 30%),
    linear-gradient(145deg, rgba(18, 14, 18, 0.88), rgba(60, 20, 30, 0.74));

  border: 1px solid rgba(216, 184, 106, 0.14);

  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.025);
}

.detail-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(216, 184, 106, 0.14);
}

.detail-head span {
  color: #f3d98b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.detail-head h3 {
  margin-top: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.9;
  color: #fff4dc;
}

.detail-status {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;

  background: rgba(216, 184, 106, 0.14);
  border: 1px solid rgba(216, 184, 106, 0.18);
  color: #f3d98b;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

/* RESUMEN */

.detail-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.summary-pill {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
}

.summary-pill small {
  display: block;
  margin-bottom: 8px;
  color: #d7cec3;
  font-weight: 800;
}

.summary-pill strong {
  color: #fff4dc;
  font-size: 22px;
}

/* PDFs */

.pdf-list,
.event-list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.detail-subtitle {
  margin: 30px 0 14px;
  color: #f3d98b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pdf-card,
.event-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;

  padding: 18px;
  border-radius: 22px;

  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.07), rgba(255, 255, 255, 0.025));

  border: 1px solid rgba(255,255,255,0.07);
  transition: 0.25s ease;
}

.pdf-card:hover,
.event-card:hover {
  transform: translateX(6px);
  border-color: rgba(216, 184, 106, 0.22);
}

.pdf-icon,
.event-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;
  font-weight: 900;
}

.pdf-card h4,
.event-card h4 {
  color: #fff4dc;
  font-size: 18px;
  margin-bottom: 5px;
}

.pdf-card p,
.event-card p {
  color: #e7ddd0;
  line-height: 1.5;
  font-size: 14px;
}

.pdf-card a,
.event-card a {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;

  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;
  font-size: 13px;
  font-weight: 900;
}

.empty-detail {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #e7ddd0;
}

.empty-detail h3 {
  color: #fff4dc;
  font-size: 34px;
  margin-bottom: 10px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .archivo-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .archivo-layout {
    grid-template-columns: 1fr;
  }

  .month-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .archivo-panel {
    margin-inline: 18px;
    padding: 20px;
  }

  .month-grid {
    grid-template-columns: 1fr;
  }

  .detail-head {
    flex-direction: column;
  }

  .detail-summary {
    grid-template-columns: 1fr;
  }

  .pdf-card,
  .event-card {
    grid-template-columns: 1fr;
  }

  .pdf-card a,
  .event-card a {
    justify-content: center;
  }
}
/* ============================= */
/* CARRUSEL PREMIUM DE AÑOS */
/* ============================= */

.year-carousel {
  display: grid;
  grid-template-columns: 48px minmax(220px, 1fr) 48px;
  align-items: center;
  gap: 10px;
  max-width: 470px;
}

.year-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px;
  scrollbar-width: none;
}

.year-track::-webkit-scrollbar {
  display: none;
}

.year-arrow {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(216, 184, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 244, 220, 0.07), rgba(255, 255, 255, 0.025));
  color: #f3d98b;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.year-arrow:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(216, 184, 106, 0.14);
}

.year-tab {
  min-width: 88px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid rgba(216, 184, 106, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: #fff4dc;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
  flex: 0 0 auto;
}

.year-tab:hover,
.year-tab.active {
  background: linear-gradient(135deg, #d8b86a, #f1df9f);
  color: #1a1013;
  transform: translateY(-2px);
}

.year-tab.empty-year {
  opacity: 0.55;
}

.year-tab.empty-year::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 50%;
  background: rgba(255, 244, 220, 0.5);
}

@media (max-width: 700px) {
  .year-carousel {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .year-arrow {
    width: 44px;
    height: 44px;
  }

  .year-tab {
    min-width: 82px;
  }
}

/* ============================= */
/* PÁGINA SOCIOS */
/* ============================= */

.socios-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(216, 184, 106, 0.09), transparent 28%),
    radial-gradient(circle at 90% 26%, rgba(123, 30, 43, 0.18), transparent 30%),
    linear-gradient(180deg, #100b0e 0%, #1b1115 48%, #110b0e 100%);
  color: #fff4dc;
}

.socios-main {
  padding-top: 135px;
  overflow: hidden;
}

/* HERO SOCIOS */

.socios-hero {
  position: relative;
  min-height: 78vh;
  padding: 90px 7% 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 52px;
  overflow: hidden;
}

.socios-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
  pointer-events: none;
}

.socios-hero::after {
  content: "SOCIOS";
  position: absolute;
  right: -35px;
  bottom: -85px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(160px, 24vw, 420px);
  line-height: 1;
  color: rgba(255, 244, 220, 0.025);
  letter-spacing: -8px;
  pointer-events: none;
}

.socios-hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.socios-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(243, 217, 139, 0.25),
    0 0 24px rgba(243, 217, 139, 0.12);
}

.socios-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(76px, 12vw, 160px);
  line-height: 0.84;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff4dc;
  margin-bottom: 26px;
  text-shadow:
    0 0 16px rgba(255, 244, 220, 0.14),
    0 14px 40px rgba(0, 0, 0, 0.65);
}

.socios-hero h1 span {
  display: block;
  color: #f3d98b;
  text-shadow:
    0 0 16px rgba(243, 217, 139, 0.32),
    0 0 38px rgba(243, 217, 139, 0.16);
}

.socios-hero p {
  max-width: 720px;
  color: #e7ddd0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

/* TARJETA DERECHA */

.socios-info-card {
  position: relative;
  z-index: 2;
  min-height: 390px;
  padding: 36px;
  border-radius: 38px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(216, 184, 106, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(123, 30, 43, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(24, 17, 21, 0.92), rgba(68, 22, 32, 0.86));

  border: 1px solid rgba(216, 184, 106, 0.18);

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(123, 30, 43, 0.14),
    inset 0 0 45px rgba(255, 255, 255, 0.035);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.socios-info-card::before {
  content: "JU";
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 170px;
  line-height: 1;
  color: rgba(255, 244, 220, 0.045);
  pointer-events: none;
}

.socios-info-card::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -45%;
  width: 58%;
  height: 220%;
  transform: rotate(22deg);
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: sociosCardShine 5.5s ease-in-out infinite;
}

@keyframes sociosCardShine {
  0%, 35% {
    transform: translateX(-30%) rotate(22deg);
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  100% {
    transform: translateX(330%) rotate(22deg);
    opacity: 0;
  }
}

.socios-info-card span {
  position: relative;
  z-index: 2;
  color: #f3d98b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.socios-info-card strong {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 92px;
  line-height: 0.88;
  color: #fff4dc;
  text-shadow:
    0 0 14px rgba(255, 244, 220, 0.16),
    0 12px 35px rgba(0, 0, 0, 0.58);
}

.socios-info-card p {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: #e7ddd0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

/* SECCIÓN FORMULARIO */

.socios-form-section {
  position: relative;
  padding: 40px 7% 120px;
}

.socios-form-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(20, 13, 16, 0.85), transparent);
  pointer-events: none;
}

.socios-form-intro {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-bottom: 34px;
}

.socios-form-intro span {
  display: inline-block;
  margin-bottom: 14px;
  color: #f3d98b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.socios-form-intro h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.9;
  color: #fff4dc;
  margin-bottom: 18px;
  text-shadow:
    0 0 14px rgba(255, 244, 220, 0.12),
    0 12px 34px rgba(0, 0, 0, 0.45);
}

.socios-form-intro p {
  max-width: 880px;
  color: #e7ddd0;
  font-size: 17px;
  line-height: 1.8;
}

/* FORM */

.socios-form {
  position: relative;
  z-index: 2;
  padding: 34px;
  border-radius: 38px;

  background:
    radial-gradient(circle at top left, rgba(216, 184, 106, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(123, 30, 43, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(24, 17, 21, 0.94), rgba(54, 18, 25, 0.86));

  border: 1px solid rgba(216, 184, 106, 0.16);

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    inset 0 0 50px rgba(255, 255, 255, 0.025);
}

.socios-form::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%);
  pointer-events: none;
}

.form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field.full {
  margin-top: 22px;
}

.form-field label {
  color: #f3d98b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(216, 184, 106, 0.14);
  outline: none;
  border-radius: 18px;

  background:
    linear-gradient(145deg, rgba(255, 244, 220, 0.075), rgba(255, 255, 255, 0.03));

  color: #fff4dc;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;

  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.025),
    0 10px 28px rgba(0, 0, 0, 0.18);

  transition: 0.25s ease;
}

.form-field input,
.form-field select {
  min-height: 58px;
  padding: 0 18px;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  padding: 18px;
  line-height: 1.7;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(231, 221, 208, 0.48);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(216, 184, 106, 0.34);
  background:
    linear-gradient(145deg, rgba(216, 184, 106, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 0 0 4px rgba(216, 184, 106, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: #1b1115;
  color: #fff4dc;
}

/* CHECK */

.form-check {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 20px;
  border-radius: 22px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  background: rgba(255, 244, 220, 0.055);
  border: 1px solid rgba(216, 184, 106, 0.12);

  color: #e7ddd0;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 600;
}

.form-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #d8b86a;
  cursor: pointer;
}

.form-check span {
  flex: 1;
}

/* ACCIONES */

.socios-form-actions {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.socios-form-actions button {
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .socios-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .socios-info-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .socios-main {
    padding-top: 115px;
  }

  .socios-hero {
    padding: 70px 18px 60px;
  }

  .socios-form-section {
    padding: 30px 18px 90px;
  }

  .socios-form {
    padding: 24px;
    border-radius: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .socios-info-card {
    min-height: 320px;
    padding: 28px;
    border-radius: 30px;
  }

  .socios-info-card strong {
    font-size: 74px;
  }

  .socios-form-actions {
    flex-direction: column;
  }

  .socios-form-actions .premium-btn {
    width: 100%;
  }
}

/* ============================= */
/* GOOGLE FORM EMBEBIDO - SOCIOS */
/* ============================= */

.google-form-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  border-radius: 38px;

  background:
    radial-gradient(circle at top left, rgba(216, 184, 106, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(123, 30, 43, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(24, 17, 21, 0.94), rgba(54, 18, 25, 0.86));

  border: 1px solid rgba(216, 184, 106, 0.16);

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    inset 0 0 50px rgba(255, 255, 255, 0.025);

  overflow: hidden;
}

.google-form-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%);
  pointer-events: none;
}

.google-form-card-head {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  max-width: 860px;
}

.google-form-card-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: #f3d98b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.google-form-card-head h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.9;
  color: #fff4dc;
  margin-bottom: 14px;
  text-shadow:
    0 0 14px rgba(255, 244, 220, 0.12),
    0 12px 34px rgba(0, 0, 0, 0.45);
}

.google-form-card-head p {
  color: #e7ddd0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.google-form-frame-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 1478px;
  border-radius: 28px;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(216, 184, 106, 0.18);

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.36),
    0 0 30px rgba(216, 184, 106, 0.08);
}

.google-form-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 1478px;
  border: none;
  background: #fff;
}

@media (max-width: 760px) {
  .google-form-card {
    padding: 22px;
    border-radius: 30px;
  }

  .google-form-frame-wrap {
    border-radius: 22px;
    min-height: 1550px;
  }

  .google-form-frame-wrap iframe {
    min-height: 1550px;
  }
}

/* ============================= */
/* MENSAJE DE ÉXITO - FORM SOCIOS */
/* ============================= */

.form-success-message {
  display: none;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(216, 184, 106, 0.12);
  border: 1px solid rgba(216, 184, 106, 0.24);
  color: #fff4dc;
  font-weight: 800;
  line-height: 1.6;
}

.form-success-message.show {
  display: block;
}