/* =========================================================
   A.D. Oña Sanchinarro - Main Stylesheet

   This CSS file contains all styling for the website.

   STRUCTURE
   - The file is organized by page. Each section clearly
     indicates which HTML page the styles belong to.
   - Global and reusable components (header, footer,
     buttons, layout, etc.) have their own dedicated sections.
   - Responsive styles are included within each page section
     to keep related styles grouped together.

   GUIDELINES
   - Typography follows a consistent hierarchy across all pages
     (titles > subtitles > body text).
   - Colors are defined using CSS variables in :root to ensure
     consistency and easy maintenance.
   - Components are reused whenever possible to avoid duplication.
   - Avoid adding inline styles or unnecessary overrides.

   NOTE
   - Before adding new styles, check if an existing class or
     component can be reused or extended.
   - Keep the stylesheet clean and maintainable by removing
     unused or duplicated rules.

========================================================= */

/* =========================
   general
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #b30000;
  --red-dark: #8f0000;
  --ink: #141414;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --bg: #f4f4f4;
  --card: #ffffff;
  --soft-2: #eeeeee;
  --ring: rgba(179, 0, 0, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

body.menu-open {
  overflow: hidden;
}

p {
  font-weight: 450;
}

.section-head h2 {
  font-size: clamp(28px, 2.6vw, 34px);
  line-height: 1.12;
  font-weight: 900;
  color: var(--red-dark);
  letter-spacing: -0.02em;
}

.page-title {
  font-size: clamp(20px, 3.4vw, 34px);
  line-height: 1.08;
  font-weight: 950;
  color: var(--red-dark);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section {
  padding: 60px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.section-soft {
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
  color: var(--red-dark);
  letter-spacing: -0.02em;
}

.section-head p {
  max-width: 820px;
  color: var(--muted);
  font-weight: 650;
}

.section-center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* =========================
   header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 3px solid var(--red);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
}

.site-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.site-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  user-select: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.site-nav a:hover,
.site-nav-dropdown:hover .site-nav-dropdown-trigger {
  background: rgba(179, 0, 0, 0.08);
  color: var(--red-dark);
}

.site-nav a.is-active,
.site-nav-dropdown.is-active .site-nav-dropdown-trigger {
  background: rgba(179, 0, 0, 0.12);
  color: var(--red-dark);
}

.site-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 240px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.site-nav-dropdown:hover .site-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-dropdown-menu a:hover {
  background: rgba(179, 0, 0, 0.08);
  color: var(--red-dark);
}

.site-menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 8px 22px rgba(18, 18, 18, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.18s ease;
}

.site-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 10px 26px rgba(18, 18, 18, 0.12),
    inset 0 0 0 1px rgba(179, 0, 0, 0.08);
}

.site-menu-toggle:active {
  transform: scale(0.97);
}

.site-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1f1f1f;
  transition:
    top 0.24s ease,
    width 0.24s ease,
    transform 0.24s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.site-menu-toggle span:nth-child(1) {
  top: 15px;
}

.site-menu-toggle span:nth-child(2) {
  top: 21px;
}

.site-menu-toggle span:nth-child(3) {
  top: 27px;
}

.site-menu-toggle.is-open {
  background: rgba(179, 0, 0, 0.06);
  box-shadow:
    0 10px 26px rgba(18, 18, 18, 0.12),
    inset 0 0 0 1px rgba(179, 0, 0, 0.12);
}

.site-menu-toggle.is-open span {
  background: var(--red-dark);
}

.site-menu-toggle.is-open span:nth-child(1) {
  top: 16px;
  width: 14px;
}

.site-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.site-menu-toggle.is-open span:nth-child(3) {
  top: 26px;
  width: 14px;
}

@media (max-width: 980px) {
  .site-header-inner {
    position: relative;
  }

  .site-logo {
    gap: 10px;
    font-size: 15px;
  }

  .site-logo img {
    width: 46px;
    height: 46px;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 40;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    max-height: calc(100vh - 96px);
    padding: 14px 8px 14px 14px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(18, 18, 18, 0.08);
    box-sizing: border-box;
    scrollbar-gutter: stable;
  }

  .site-nav.is-open {
    display: flex !important;
  }

  .site-nav > a,
  .site-nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
  }

  .site-nav > a.is-active {
    background: rgba(179, 0, 0, 0.12);
    color: var(--red-dark);
  }

  .site-nav-dropdown {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 6px;
  }

  .site-nav-dropdown-trigger::after {
    content: "+";
    flex-shrink: 0;
    margin-left: 12px;
    color: #555;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }

  .site-nav-dropdown.is-open .site-nav-dropdown-trigger {
    background: rgba(179, 0, 0, 0.08);
    color: var(--red-dark);
  }

  .site-nav-dropdown.is-open .site-nav-dropdown-trigger::after {
    content: "−";
    color: var(--red-dark);
  }

  .site-nav-dropdown-menu {
    position: static !important;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
    min-width: 0 !important;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .site-nav-dropdown.is-open .site-nav-dropdown-menu {
    display: flex !important;
    margin-top: 2px;
  }

  .site-nav-dropdown-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f8f4f2;
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
  }

  .site-nav-dropdown-menu a.is-active {
    background: rgba(179, 0, 0, 0.1);
    color: var(--red-dark);
    font-weight: 700;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    padding: 12px 0;
  }

  .site-logo {
    font-size: 14px;
  }

  .site-logo img {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: calc(100% + 10px);
    max-height: calc(100vh - 88px);
    padding: 12px 8px 12px 12px;
    border-radius: 18px;
  }

  .site-nav > a,
  .site-nav-dropdown-trigger {
    min-height: 46px;
    font-size: 14px;
  }

  .site-nav-dropdown-menu a {
    min-height: 42px;
    font-size: 13px;
    line-height: 1.4;
  }
}

/* =========================
   footer
========================= */

.site-footer {
  margin-top: 0px;
  background: #201f1f;
  color: #fff;
  padding: 38px 0;
  border-top: 3px solid var(--red);
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.95fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.site-footer-block {
  min-width: 0;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer-brand-copy strong {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}

.site-footer-brand-copy span {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer-contact,
.site-footer-social,
.site-footer-legal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.site-footer-title {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-contact-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer-contact-info a {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-footer-contact-info a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer-instagram-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.site-footer-instagram-card:hover {
  background: rgba(179, 0, 0, 0.16);
  border-color: rgba(179, 0, 0, 0.55);
  transform: translateY(-1px);
}

.site-footer-instagram-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  flex: 0 0 auto;
}

.site-footer-instagram-card:hover .site-footer-instagram-icon {
  background: var(--red);
}

.site-footer-instagram-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer-instagram-text strong {
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  font-weight: 800;
}

.site-footer-instagram-text span {
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-links a {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer-contact-info a[href^="mailto"] {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
}

@media (max-width: 1100px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    align-items: start;
  }

  .site-footer-address {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer-inner {
    text-align: center;
  }

  .site-footer-block {
    align-items: center;
  }

  .site-footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer-brand img {
    margin-bottom: 10px;
  }

  .site-footer-contact-info,
  .site-footer-links {
    align-items: center;
  }

  .site-footer-instagram-card {
    margin: 0 auto;
  }

  .site-footer-bottom {
    text-align: center;
  }
}

.site-footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
   buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: #9e0000;
  color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: #b00000;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

@media (max-width: 760px) {
  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 18px 18px;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
    display: block;
  }
}

/* =========================================
   BOTÓN PREINSCRIPCIÓN (BALANCEADO)
========================================= */

.btn-enrollment {
  position: relative;
  overflow: hidden;

  background: #f2d6a2;
  color: #1a1a1a;
  border: none;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;

  /* un pelín más de vida */
  animation: enrollmentPulse 2.4s ease-in-out infinite;
}

/* hover igual que los otros */
.btn-enrollment:hover {
  background: #e8c98e;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* =========================================
   PULSO (ligeramente más visible)
========================================= */

@keyframes enrollmentPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 6px 16px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(242, 214, 162, 0.45);
  }

  50% {
    transform: scale(1.025); /* aquí está la clave */
    box-shadow:
      0 9px 22px rgba(0, 0, 0, 0.24),
      0 0 0 8px rgba(242, 214, 162, 0);
  }
}

/* =========================================
   BRILLO (más presente pero elegante)
========================================= */

.btn-enrollment::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 75%
  );

  transform: translateX(-120%);
  animation: enrollmentShine 3.5s ease-in-out infinite;
}

@keyframes enrollmentShine {
  0% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

/* =========================
   index.html
========================= */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82vh;
  padding: 96px 0 56px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-section-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.04) brightness(0.82);
  z-index: 0;
}

.hero-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.68) 28%,
      rgba(0, 0, 0, 0.52) 52%,
      rgba(0, 0, 0, 0.24) 76%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.05) 35%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.hero-section-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.22) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(255, 255, 255, 0.16) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 80%,
      rgba(255, 255, 255, 0.16) 0 1px,
      transparent 1px
    );
  background-size:
    120px 120px,
    160px 160px,
    140px 140px;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-section-content {
  position: relative;
  z-index: 3;
}

.hero-section-copy {
  max-width: 760px;
}

.hero-section-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.086);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.hero-section-title {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 950;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.hero-line-primary,
.hero-line-secondary {
  display: block;
  white-space: nowrap;
}

.hero-line-secondary {
  margin-top: 8px;
  color: #e7a0a0;
}

.hero-section-text {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.section-stats {
  background: linear-gradient(180deg, var(--soft-2) 0%, #f7f7f7 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-card {
  padding: 18px 18px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.stats-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(179, 0, 0, 0.12);
}

.stats-card-label {
  color: #3a3a3a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-card-value {
  display: block;
  color: var(--red-dark);
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.stats-card-text {
  color: #3b3b3b;
  font-weight: 800;
}

.club-intro {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}

.club-intro h2 {
  margin-bottom: 10px;
  color: #111;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.club-intro p {
  max-width: 1000px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.philosophy-section {
  padding: 70px 0;
}

.philosophy-section-layout {
  display: grid;
  grid-template-columns: 2fr 0.85fr;
  align-items: stretch;
  gap: 45px;
}

.philosophy-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.philosophy-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.philosophy-card::after {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--ring),
    rgba(179, 0, 0, 0) 60%
  );
}

.philosophy-card h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.philosophy-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.philosophy-section-aside {
  position: relative;
  height: 100%;
}

.philosophy-section-image-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.philosophy-section-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.club-gallery-section {
  padding: 50px 0;
}

.club-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.club-gallery-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.club-gallery-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  transform: scale(1.01);
}

.equality-section {
  padding: 40px 0;
}

.equality-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.equality-section-image-block {
  position: relative;
  overflow: hidden;
  max-height: 420px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.equality-section-image-block img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.equality-section-image-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.equality-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.equality-section-content h2 {
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.equality-section-content p {
  margin-bottom: 16px;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.equality-section-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.equality-section-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.equality-section-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.sponsors-section {
  background: rgba(140, 20, 20, 0.05);
  padding: 64px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsors-container {
  text-align: center;
}

.sponsors-head {
  margin-bottom: 40px;
}

.sponsors-kicker {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 8px;
}

.sponsors-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.sponsors-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  align-items: center;
}

.sponsors-grid img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.25s ease;
  border-radius: 10px;
}

.sponsors-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .sponsors-section {
    padding: 48px 0;
  }

  .sponsors-grid {
    gap: 24px;
  }

  .sponsors-grid img {
    max-height: 60px;
  }

  .sponsors-text {
    font-size: 0.9rem;
    padding: 0 12px;
  }
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--red) 0%, #c71b1b 55%, #9a0000 100%);
  color: #fff;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0) 60%
  );
}

.cta-section-inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.cta-section-content {
  width: min(860px, 100%);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.cta-section p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 24px auto 0;
}

.cta-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition:
    transform 0.14s ease,
    background 0.14s ease,
    box-shadow 0.14s ease;
}

.cta-contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.cta-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.cta-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-contact-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-contact-copy strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.cta-section-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.cta-section-action .btn {
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
}

.how-to-section {
  padding-top: 40px;
}

.how-to-section-head {
  margin-bottom: 20px;
}

.how-to-section-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 24px;
}

.how-to-map-block {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.how-to-map-block iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  height: 100%;
  border: 0;
}

.how-to-info-column {
  display: grid;
  gap: 16px;
}

.how-to-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.how-to-card-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-to-card-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.how-to-card-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.how-to-transport-list {
  display: grid;
  gap: 10px;
  margin: 0 0 0 20px;
  padding: 0;
}

.how-to-transport-list li {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.how-to-card-action {
  display: flex;
  margin-top: 26px;
}

.how-to-card-action .btn {
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 980px) {
  .hero-section {
    min-height: 74vh;
    padding: 88px 0 48px;
  }

  .hero-section-title {
    max-width: 100%;
    font-size: clamp(34px, 7vw, 54px);
  }

  .hero-section-text {
    max-width: 580px;
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-section-layout,
  .equality-section-layout,
  .how-to-section-layout {
    grid-template-columns: 1fr;
  }

  .philosophy-cards-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-section-image-wrapper img {
    height: 360px;
  }

  .club-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equality-section-image-block img {
    height: 320px;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: clamp(24px, 5vw, 30px);
  }

  .cta-section p {
    font-size: 16px;
    line-height: 1.6;
  }

  .cta-contact-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .how-to-card {
    padding: 18px;
  }

  .how-to-card-title {
    font-size: 20px;
  }

  .how-to-card-text,
  .how-to-transport-list li {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 68vh;
    align-items: flex-end;
    padding: 72px 0 34px;
  }

  .hero-section-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.34) 24%,
      rgba(0, 0, 0, 0.68) 62%,
      rgba(0, 0, 0, 0.84) 100%
    );
  }

  .hero-section-copy {
    max-width: 100%;
  }

  .hero-section-badge {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero-section-title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1;
  }

  .hero-line-primary,
  .hero-line-secondary {
    white-space: normal;
  }

  .hero-line-secondary {
    margin-top: 6px;
  }

  .hero-section-text {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-section-actions {
    width: 100%;
    margin-top: 24px;
  }

  .hero-section-actions .btn,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .club-intro {
    margin-bottom: 28px;
  }

  .club-intro h2,
  .equality-section-content h2,
  .cta-section h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .club-intro p,
  .equality-section-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .stats-card {
    padding: 16px;
  }

  .stats-card-value {
    font-size: 34px;
  }

  .stats-card-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .club-gallery-grid {
    grid-template-columns: 1fr;
  }

  .club-gallery-card img {
    height: 180px;
  }

  .philosophy-section,
  .club-gallery-section,
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .equality-section {
    padding: 36px 0 48px;
  }

  .philosophy-card,
  .how-to-card {
    padding: 18px 16px;
  }

  .philosophy-card h3,
  .how-to-card-title {
    font-size: 18px;
  }

  .philosophy-card p,
  .how-to-card-text,
  .how-to-transport-list li {
    font-size: 14px;
    line-height: 1.6;
  }

  .equality-section-image-tag {
    font-size: 13px;
  }

  .equality-section-list li {
    font-size: 14px;
    line-height: 1.6;
  }

  .cta-contact-card {
    padding: 13px 14px;
  }

  .cta-contact-copy strong {
    font-size: 14px;
  }

  .how-to-map-block iframe {
    min-height: 320px;
  }
}

/* =========================
   masc.html
   fem.html
========================= */

.page-first-team .section {
  padding-top: 40px;
}

.first-team-head {
  margin-bottom: 24px;
}

.first-team-head p,
.first-team-standings-head p {
  max-width: none;
}

.first-team-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 28px;
}

.first-team-photo-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.first-team-photo-card img {
  display: block;
  width: 100%;
  min-height: 460px;
  height: 100%;
  object-fit: cover;
}

.first-team-info-column {
  display: grid;
  gap: 16px;
}

.first-team-info-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.first-team-info-label {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.first-team-info-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.first-team-info-card span:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.first-team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.first-team-btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.first-team-btn-light:hover {
  background: #f3f3f3;
}

.first-team-standings-head {
  margin-bottom: 30px;
}

.first-team-standings-head .section-subtitle {
  color: var(--red-dark);
}

.first-team-standings-card {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.first-team-standings-frame {
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.first-team-standings-frame iframe {
  width: 100%;
  height: 1200px;
  border: 0;
  transform: translateY(-640px);
}

.first-team-standings-footer {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .first-team-layout {
    grid-template-columns: 1fr;
  }

  .first-team-photo-card img {
    min-height: 320px;
  }

  .first-team-info-card strong {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .page-first-team .section {
    padding-top: 32px;
  }

  .first-team-head {
    margin-bottom: 20px;
  }

  .first-team-info-card,
  .first-team-standings-card {
    padding: 16px;
    border-radius: 16px;
  }

  .first-team-info-label {
    font-size: 11px;
  }

  .first-team-info-card strong {
    font-size: 20px;
    line-height: 1.2;
  }

  .first-team-info-card span:last-child {
    font-size: 14px;
    line-height: 1.5;
  }

  .first-team-links {
    gap: 10px;
  }

  .first-team-photo-card img {
    min-height: 240px;
  }

  .first-team-standings-head {
    margin-bottom: 22px;
  }

  .first-team-standings-frame {
    height: 440px;
  }

  .first-team-standings-frame iframe {
    height: 1080px;
    transform: translateY(-560px);
  }
}

/* =========================
   cuotas.html
========================= */

.page-fees .section {
  padding-top: 40px;
}

.fees-section-head {
  margin-bottom: 24px;
}

.fees-section-head p {
  max-width: none;
  color: #4a4a4a;
  font-weight: 500;
}

.fees-table-card,
.fees-info-card,
.fees-note-card,
.fees-contact-card {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.fees-table-card {
  margin-bottom: 24px;
}

.fees-note-card,
.fees-contact-card {
  margin-top: 24px;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.fees-card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fees-table-wrapper {
  overflow-x: auto;
}

.fees-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.fees-table thead th {
  padding: 14px 16px;
  background: #fafafa;
  border-bottom: 2px solid rgba(179, 0, 0, 0.14);
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.fees-table th:nth-child(1),
.fees-table td:nth-child(1) {
  width: 30%;
}

.fees-table th:nth-child(2),
.fees-table td:nth-child(2) {
  width: 14%;
}

.fees-table tbody td {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #343434;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 450;
  vertical-align: top;
}

.fees-table tbody tr:last-child td {
  border-bottom: none;
}

.fees-table tbody td:nth-child(1) {
  color: var(--ink);
  font-weight: 700;
}

.fees-table tbody td:nth-child(2) {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.fees-table tbody td:nth-child(3) {
  color: #4a4a4a;
}

.fees-info-card p,
.fees-note-card p,
.fees-contact-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 450;
}

.fees-list {
  display: grid;
  gap: 10px;
  margin: 0 0 0 18px;
}

.fees-list li {
  color: #343434;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 450;
}

.fees-list strong,
.fees-note-card strong,
.fees-contact-card strong {
  color: var(--ink);
  font-weight: 800;
}

.fees-contact-card a,
.fees-note-card a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.fees-contact-card a:hover,
.fees-note-card a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .fees-grid {
    grid-template-columns: 1fr;
  }

  .fees-table-card,
  .fees-info-card,
  .fees-note-card,
  .fees-contact-card {
    padding: 18px;
  }

  .fees-table tbody td:nth-child(2) {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .page-fees .section {
    padding-top: 32px;
  }

  .fees-section-head {
    margin-bottom: 20px;
  }

  .fees-table-card,
  .fees-info-card,
  .fees-note-card,
  .fees-contact-card {
    padding: 16px;
    border-radius: 16px;
  }

  .fees-card-label {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .fees-table thead th {
    padding: 12px 14px;
    font-size: 11px;
  }

  .fees-table tbody td {
    padding: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .fees-table tbody td:nth-child(2) {
    font-size: 17px;
  }

  .fees-info-card p,
  .fees-note-card p,
  .fees-contact-card p,
  .fees-list li {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* =========================
   horarios.html
========================= */

.page-schedule .section {
  padding-top: 40px;
}

.schedule-section-head {
  margin-bottom: 24px;
}

.schedule-section-head p {
  max-width: none;
  color: #4a4a4a;
  font-weight: 500;
}

.schedule-table-card,
.schedule-info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.schedule-card-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.schedule-table-card {
  margin-bottom: 24px;
}

.schedule-table-wrapper {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.schedule-table thead th {
  text-align: left;
  font-size: 13px;
  color: var(--red-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  border-bottom: 2px solid rgba(179, 0, 0, 0.14);
  background: #fafafa;
  font-weight: 900;
}

.schedule-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
  color: #343434;
  font-weight: 450;
  line-height: 1.45;
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody td:first-child {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.schedule-list {
  margin: 0 0 0 18px;
  display: grid;
  gap: 10px;
}

.schedule-list li {
  color: #343434;
  font-weight: 450;
  line-height: 1.55;
}

.schedule-list strong,
.schedule-text strong {
  font-weight: 800;
  color: var(--ink);
}

.schedule-text {
  color: #4a4a4a;
  font-weight: 450;
  line-height: 1.6;
  margin-bottom: 14px;
}

.schedule-table th,
.schedule-table td {
  text-align: center;
  vertical-align: middle;
}

.schedule-table thead th {
  text-align: center !important;
}

.schedule-table th:first-child,
.schedule-table td:first-child {
  text-align: left;
  font-weight: 700;
}

.schedule-table td,
.schedule-table th {
  padding: 12px 12px;
}

.schedule-table tbody tr:hover {
  background: rgba(143, 16, 16, 0.04);
}

.schedule-table thead th,
.schedule-table thead th:first-child {
  font-weight: 900;
}

@media (max-width: 980px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-table-card,
  .schedule-info-card {
    padding: 18px;
  }
}

.schedule-info-card .schedule-list {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-info-card .schedule-list li {
  line-height: 1.7;
  max-width: none;
}

/* =========================
   tienda.html
========================= */

.page-shop .section {
  padding-top: 40px;
}

.shop-section-head {
  margin-bottom: 24px;
}

.shop-section-head p,
.shop-embed-head p {
  max-width: none;
  color: #4a4a4a;
  font-weight: 500;
}

.shop-hero-card,
.shop-product-card,
.shop-note-card,
.shop-embed-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.shop-hero-card {
  padding: 28px;
  margin-bottom: 24px;
}

.shop-card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero-content h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
}

.shop-hero-content p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.shop-hero-actions {
  margin-top: 18px;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.shop-product-card {
  padding: 22px;
}

.shop-product-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.shop-product-price {
  margin-bottom: 10px;
  color: var(--red-dark);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
}

.shop-product-text,
.shop-note-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 450;
}

.shop-product-text {
  margin-bottom: 16px;
}

.shop-product-link {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.shop-product-link:hover {
  text-decoration: underline;
}

.shop-note-card {
  padding: 22px;
  margin-bottom: 24px;
}

.shop-embed-card {
  padding: 22px;
}

.shop-embed-head {
  margin-bottom: 18px;
}

.shop-embed-frame {
  height: 720px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
}

.shop-embed-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-card,
  .shop-product-card,
  .shop-note-card,
  .shop-embed-card {
    padding: 18px;
  }

  .shop-hero-content h3 {
    font-size: 28px;
  }

  .shop-product-card h3 {
    font-size: 22px;
  }

  .shop-product-price {
    font-size: 22px;
  }

  .shop-embed-frame {
    height: 620px;
  }
}

@media (max-width: 640px) {
  .page-shop .section {
    padding-top: 32px;
  }

  .shop-section-head {
    margin-bottom: 20px;
  }

  .shop-hero-card,
  .shop-product-card,
  .shop-note-card,
  .shop-embed-card {
    padding: 16px;
    border-radius: 16px;
  }

  .shop-card-label {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .shop-hero-content h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .shop-hero-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .shop-product-card h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .shop-product-price {
    font-size: 20px;
  }

  .shop-product-text,
  .shop-note-card p,
  .shop-embed-head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .shop-embed-frame {
    height: 540px;
  }
}

/* =========================
   aviso.html
   cookies.html
   privacidad.html
========================= */

.page-legal .section {
  padding-top: 40px;
}

.legal-section-head {
  margin-bottom: 24px;
}

.legal-section-head p {
  max-width: none;
  color: #4a4a4a;
  font-weight: 500;
}

.legal-content-card {
  display: grid;
  gap: 26px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal-block h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.legal-block p {
  margin-bottom: 10px;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 450;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0 18px;
}

.legal-list li {
  color: #343434;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 450;
}

.legal-block strong,
.legal-list strong {
  color: var(--ink);
  font-weight: 800;
}

.legal-block a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .legal-content-card {
    gap: 22px;
    padding: 20px;
  }

  .legal-block h3 {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .page-legal .section {
    padding-top: 32px;
  }

  .legal-section-head {
    margin-bottom: 20px;
  }

  .legal-content-card {
    gap: 20px;
    padding: 16px;
    border-radius: 16px;
  }

  .legal-block h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .legal-block p,
  .legal-list li {
    font-size: 14px;
    line-height: 1.65;
  }

  .legal-list {
    gap: 8px;
    margin-left: 16px;
  }
}

/* =========================
   historia.html
========================= */

.page-history .section {
  padding: 45px 0;
}

.history-hero-section {
  padding-bottom: 28px;
}

.history-hero-head {
  margin-bottom: 0;
}

.history-hero-head p,
.history-story-head p,
.history-thanks-card p,
.history-reel-head p {
  color: #4a4a4a;
  font-weight: 500;
}

.history-hero-head p {
  max-width: 920px;
}

.history-story-head p {
  max-width: 900px;
}

.history-reel-head p {
  max-width: none;
}

.history-carousel-section {
  overflow: hidden;
  padding: 10px 0 30px;
  border: none;
  background: none;
}

.history-carousel {
  width: 100%;
  overflow: hidden;
}

.history-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: history-scroll 600s linear infinite;
}

.history-carousel:hover .history-carousel-track {
  animation-play-state: paused;
}

.history-carousel-card {
  flex: 0 0 auto;
  width: 320px;
  height: 200px;
  overflow: hidden;
  border-radius: 22px;
}

.history-carousel-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

@keyframes history-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.history-intro-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 36px;
}

.history-intro-text p {
  max-width: 680px;
}

.history-intro-reel,
.history-reel-wrapper {
  max-width: 420px;
}

.history-intro-reel .instagram-media,
.history-reel-wrapper .instagram-media {
  min-width: unset;
  width: 100%;
  max-width: 100%;
}

.history-story-section {
  padding-top: 54px;
}

.history-timeline {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.history-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 10px;
}

.history-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 44px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(179, 0, 0, 0.08);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.history-timeline-content {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.history-timeline-content h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.history-timeline-content p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.history-timeline-content p + p {
  margin-top: 12px;
}

.history-reel-section {
  padding-top: 56px;
}

.history-reel-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history-thanks-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.history-thanks-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-thanks-card p {
  max-width: 920px;
  line-height: 1.7;
}

.history-hero-section::before {
  display: none;
}

@media (max-width: 980px) {
  .history-carousel-card {
    width: 260px;
    height: 180px;
  }

  .history-timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .history-timeline-content {
    padding: 18px;
  }

  .history-timeline-content h3 {
    font-size: 20px;
  }

  .history-thanks-card {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .history-intro-layout {
    grid-template-columns: 1fr;
  }

  .history-intro-reel {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .page-history .section {
    padding: 40px 0;
  }

  .history-carousel-section {
    padding: 6px 0 24px;
  }

  .history-carousel-card {
    width: 220px;
    height: 150px;
    border-radius: 18px;
  }

  .history-story-section,
  .history-reel-section {
    padding-top: 44px;
  }

  .history-timeline {
    gap: 20px;
    margin-top: 26px;
  }

  .history-timeline-year {
    padding: 10px 12px;
    font-size: 11px;
  }

  .history-timeline-content {
    padding: 16px;
    border-radius: 16px;
  }

  .history-timeline-content h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .history-timeline-content p,
  .history-thanks-card p,
  .history-reel-head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .history-thanks-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .history-thanks-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .history-reel-wrapper {
    max-width: 100%;
  }
}

.history-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 300px;
  gap: 34px;
  align-items: start;
}

.history-side-gallery {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.history-side-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.history-side-gallery-card {
  overflow: hidden;
  border-radius: 18px;
  height: 202px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.history-side-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.history-side-gallery-card img.is-changing {
  opacity: 0.55;
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .history-story-layout {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 24px;
  }
}

@media (max-width: 980px) {
  .history-story-layout {
    grid-template-columns: 1fr;
  }

  .history-side-gallery {
    margin-top: 22px;
  }

  .history-side-gallery-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .history-side-gallery-column {
    grid-template-columns: 1fr;
  }
}

/* =========================
   mutualidad.html
========================= */

.page-mutuality .section {
  padding: 72px 0;
}

.mutuality-hero-section {
  padding-bottom: 28px;
}

.mutuality-hero-head {
  margin-bottom: 0;
}

.mutuality-hero-head p {
  max-width: 860px;
  color: #4a4a4a;
  font-weight: 500;
}

.mutuality-highlight-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
  margin-top: 36px;
}

.mutuality-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.mutuality-highlight-card h3 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 12px;
}

.mutuality-highlight-card p {
  max-width: 920px;
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.7;
}

.mutuality-steps-head p {
  max-width: 760px;
  color: #4a4a4a;
  font-weight: 500;
}

.mutuality-steps-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mutuality-step-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mutuality-step-label {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
  background: rgba(179, 0, 0, 0.08);
  padding: 8px 10px;
  border-radius: 999px;
}

.mutuality-step-card h3 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
}

.mutuality-step-card p {
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.65;
}

.mutuality-step-subtitle {
  color: #3f3f3f;
  font-weight: 700;
}

.mutuality-step-note {
  color: var(--red-dark);
  font-weight: 700;
}

.mutuality-step-list {
  margin: 0 0 0 18px;
  display: grid;
  gap: 8px;
}

.mutuality-step-list li {
  color: #343434;
  font-weight: 500;
  line-height: 1.55;
}

.mutuality-warning-head {
  margin-bottom: 0;
}

.mutuality-warning-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mutuality-warning-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.mutuality-warning-card h3 {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
}

.mutuality-warning-card p {
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.65;
}

.mutuality-documents-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.mutuality-documents-head p {
  max-width: none;
  color: #4a4a4a;
  font-weight: 500;
}

.mutuality-document-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.mutuality-document-card h3 {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
}

.mutuality-document-card p {
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 18px;
}

.mutuality-steps-head h2.section-title-sm,
.mutuality-warning-head h2.section-title-sm {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.12;
  font-weight: 900;
  color: var(--red-dark);
  letter-spacing: -0.02em;
}

@media (max-width: 980px) {
  .mutuality-steps-grid {
    grid-template-columns: 1fr;
  }

  .mutuality-warning-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mutuality-documents-layout {
    grid-template-columns: 1fr;
  }

  .mutuality-highlight-card {
    padding: 22px;
  }

  .mutuality-highlight-card h3 {
    font-size: 28px;
  }

  .mutuality-step-card,
  .mutuality-warning-card,
  .mutuality-document-card {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .mutuality-warning-grid {
    grid-template-columns: 1fr;
  }

  .mutuality-highlight-card h3 {
    font-size: 24px;
  }

  .mutuality-step-card h3,
  .mutuality-warning-card h3,
  .mutuality-document-card h3 {
    font-size: 22px;
  }
}

.page-mutuality .section {
  padding: 40px 0;
}

.mutuality-documents-section {
  padding-top: 56px;
}

.mutuality-document-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.mutuality-document-copy {
  max-width: 760px;
}

.mutuality-document-card h3 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 12px;
}

.mutuality-document-card p {
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.7;
}

.mutuality-document-action {
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .mutuality-document-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .mutuality-document-card h3 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .mutuality-document-card h3 {
    font-size: 22px;
  }
}

.mutuality-documents-section .container {
  max-width: 1000px;
}

@media (max-width: 760px) {
  .mutuality-document-card {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .mutuality-document-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mutuality-document-action .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* =========================
   instalaciones.html
========================= */

.page-facilities .section,
.page-history .facilities-intro-section,
.page-history .facilities-feature-section,
.page-history .facilities-grid-section,
.page-history .facilities-tech-section,
.page-history .facilities-cta-section {
  padding: 64px 0;
}

.facilities-page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.facilities-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.facilities-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.52) 38%,
    rgba(0, 0, 0, 0.24) 68%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.facilities-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 54px;
}

.facilities-page-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.facilities-page-title {
  color: #fff;
  font-size: clamp(20px, 3.4vw, 34px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.facilities-page-hero-text {
  max-width: 700px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 400;
}

.facilities-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.facilities-section-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--red-dark);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.facilities-card-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.facilities-intro-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.facilities-intro-copy p {
  max-width: 880px;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 400;
}

.facilities-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.facilities-feature-layout-reverse .facilities-feature-content {
  order: 1;
}

.facilities-feature-layout-reverse .facilities-feature-image {
  order: 2;
}

.facilities-feature-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 360px;
}

.facilities-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: auto;
}

.facilities-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.facilities-feature-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 400;
  margin-bottom: 18px;
}

.facilities-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.facilities-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  color: #303030;
}

.facilities-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.facilities-grid-head {
  margin-bottom: 10px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.facilities-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.facilities-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.facilities-card-body {
  padding: 20px;
}

.facilities-card-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4a4a;
  font-weight: 400;
}

.facilities-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: all 0.2s ease;
}

.facilities-link:hover {
  color: var(--red-dark);
  transform: translateX(3px);
}

.facilities-feature-content h2.facilities-section-title,
.facilities-grid-head h2.facilities-section-title,
.facilities-tech-section h2.facilities-section-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.page-facilities h3.facilities-card-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.page-facilities .facilities-grid-head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.page-facilities .facilities-grid-head .facilities-section-kicker {
  margin-bottom: 0;
}

.page-facilities .facilities-grid-head h2.facilities-section-title {
  margin-bottom: 0;
}

.facilities-feature-image-small {
  max-width: 520px;
  margin: 0 auto;
  align-self: center;
}

.facilities-feature-image-small img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 980px) {
  .facilities-page-hero {
    min-height: 48vh;
  }

  .facilities-feature-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .facilities-feature-layout-reverse .facilities-feature-content,
  .facilities-feature-layout-reverse .facilities-feature-image {
    order: unset;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facilities-feature-image {
    height: 300px;
  }

  .facilities-card img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .facilities-page-hero-content {
    padding: 56px 0 40px;
  }

  .facilities-page-title {
    font-size: clamp(34px, 8vw, 46px);
  }

  .facilities-page-hero-text,
  .facilities-feature-content p,
  .facilities-card-body p,
  .facilities-cta-box p,
  .facilities-intro-copy p {
    font-size: 16px;
  }

  .facilities-feature-image {
    height: 260px;
  }
}

.facilities-video-head p {
  max-width: 720px;
  color: #4a4a4a;
  font-weight: 500;
}

.facilities-video-wrapper {
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.facilities-video-embed {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.facilities-video-embed iframe {
  width: 100%;
  height: 100%;
}

.facilities-video-section .facilities-feature-image {
  width: 100%;
  max-width: none;
}

/* =========================
   cantera.html
========================= */

.page-academy {
  background: #f6f4f1;
  color: #1f1f1f;
}

.academy-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background:
    linear-gradient(135deg, rgba(143, 16, 16, 0.781), rgba(20, 5, 5, 0.677)),
    url("../../assets/images/cantera.JPG") center/cover no-repeat;
  color: #ffffff;
}

.academy-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.12),
      transparent 32%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16));
}

.academy-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.academy-kicker,
.page-academy .academy-section-kicker,
.page-academy .academy-intro-card-kicker,
.page-academy .academy-category-stage {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-academy .academy-section-title,
.page-academy .academy-category-title {
  margin-top: 0;
}

.page-academy .academy-highlight-head,
.page-academy .academy-section-head {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-academy .academy-highlight-head .academy-section-kicker,
.page-academy .academy-section-head .academy-section-kicker,
.page-academy .academy-intro-content .academy-section-kicker,
.page-academy .academy-federation-box .academy-section-kicker {
  margin-bottom: 10px;
}

.page-academy .academy-highlight-head .academy-section-title,
.page-academy .academy-section-head .academy-section-title,
.page-academy .academy-intro-content .academy-section-title,
.page-academy .academy-federation-box .academy-section-title {
  margin: 0;
}

.academy-title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(20px, 3.4vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;
}

.academy-section-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #8f1010;
}

.academy-category-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f1f1f;
}

.academy-hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.academy-section-text,
.academy-category-text,
.academy-info-box p,
.academy-cta-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #494949;
}

.academy-intro-section,
.academy-categories-section,
.academy-info-section,
.academy-cta-section {
  padding: 50px 0;
}

.academy-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
}

.academy-intro-content p {
  margin-top: 16px;
}

.academy-intro-card {
  padding: 28px 26px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.12);
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.06);
}

.academy-intro-card-kicker {
  margin-bottom: 16px;
}

.academy-intro-steps {
  display: grid;
  gap: 12px;
}

.academy-intro-step {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f1ef;
}

.academy-intro-step strong {
  font-size: 16px;
  font-weight: 800;
}

.academy-intro-step span {
  margin-top: 4px;
  font-size: 14px;
  color: #666;
}

.academy-section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.academy-section-text {
  margin-top: 14px;
}

.academy-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.academy-category-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.1);
  box-shadow: 0 18px 38px rgba(18, 18, 18, 0.05);
}

.academy-category-card-wide {
  grid-column: span 3;
}

.academy-category-stage {
  margin-bottom: 10px;
  color: #8f1010;
}

.academy-category-age {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.academy-category-text {
  margin: 12px 0 0;
}

.academy-category-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.academy-category-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: #444;
}

.academy-category-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #8f1010;
}

.academy-info-box,
.academy-cta-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 34px;
  border-radius: 30px;
  text-align: center;
}

.academy-info-box {
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.1);
  box-shadow: 0 20px 40px rgba(22, 22, 22, 0.05);
}

.academy-cta-box {
  background: linear-gradient(135deg, #8f1010, #5d0b0b);
  color: #ffffff;
  box-shadow: 0 24px 44px rgba(80, 10, 10, 0.22);
}

.academy-cta-box .academy-section-title,
.academy-cta-box p {
  color: #ffffff;
}

.academy-hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.15s;
}

.academy-hero .button-primary {
  background: #ffffff;
  color: #8f1010;
}

.academy-hero .button-primary:hover {
  background: #f2f2f2;
}

.academy-hero .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.academy-hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.academy-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.academy-highlight-section {
  padding: 72px 0 0;
}

.academy-highlight-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.1);
  box-shadow: 0 18px 40px rgba(22, 22, 22, 0.05);
  text-align: center;
}

.academy-highlight-box p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a4a;
}

.academy-category-teams {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #8f1010;
}

.academy-highlight-section {
  padding: 30px 0 30px;
}

.academy-highlight-strip {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
}

.academy-highlight-head {
  margin-bottom: 14px;
}

.academy-highlight-head .academy-section-kicker {
  margin-bottom: 8px;
}

.academy-highlight-head .academy-section-title {
  margin: 0;
}

.academy-highlight-text {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a4a4a;
}

.academy-federation-section {
  padding: 72px 0;
}

.academy-federation-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.1);
  box-shadow: 0 18px 40px rgba(22, 22, 22, 0.05);
  text-align: center;
}

.academy-federation-box .academy-section-text {
  max-width: 760px;
  margin: 16px auto 0;
}

.academy-federation-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.academy-button-dark {
  background: rgba(143, 16, 16, 0.08);
  border: 1px solid rgba(143, 16, 16, 0.14);
  color: var(--red-dark);
}

.academy-button-dark:hover {
  background: rgba(143, 16, 16, 0.14);
}

@media (max-width: 1100px) {
  .academy-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .academy-category-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .academy-intro-layout {
    grid-template-columns: 1fr;
  }

  .academy-category-grid {
    grid-template-columns: 1fr;
  }

  .academy-category-card-wide {
    grid-column: span 1;
  }

  .academy-intro-section,
  .academy-categories-section,
  .academy-info-section,
  .academy-cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 760px) {
  .cantera-rffm-btn {
    width: 100%;
    max-width: 300px;
    min-height: 56px;
    padding: 0 18px;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }
}

/* =========================
   organizacion.html
========================= */

.page-team {
  background: #f6f4f1;
  color: #1f1f1f;
}

.team-page-hero {
  padding: 48px 0 48px;
}

.team-page-hero-content {
  max-width: 760px;
}

.team-page-kicker,
.team-section-kicker {
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.team-page-kicker {
  margin-bottom: 14px;
}

.team-page-title {
  font-size: clamp(20px, 3.4vw, 34px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.team-page-hero-text {
  max-width: 700px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a4a4a;
}

.team-intro-section,
.team-group-section,
.team-cta-section {
  padding: 72px 0;
}

.team-intro-box,
.team-cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.1);
  box-shadow: 0 18px 40px rgba(22, 22, 22, 0.05);
  text-align: center;
}

.team-intro-box p,
.team-cta-box p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a4a4a;
}

.team-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.team-section-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--red-dark);
}

.team-section-head .team-section-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--red-dark);
}

.team-section-text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #4a4a4a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.team-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-top: 3px solid var(--red-dark);
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.05);
  padding: 24px 22px;
}

.team-card-body {
  padding: 0;
}

.team-card-name {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f1f1f;
}

.team-card-role {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--red-dark);
}

.team-card-note {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: #5a5a5a;
}

.team-cta-box {
  background: linear-gradient(135deg, #8f1010, #5d0b0b);
  color: #ffffff;
  box-shadow: 0 24px 44px rgba(80, 10, 10, 0.2);
}

.team-cta-box .team-section-kicker,
.team-cta-box .team-section-title,
.team-cta-box p {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-intro-section,
  .team-group-section,
  .team-cta-section {
    padding: 60px 0;
  }

  .team-intro-box,
  .team-cta-box {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .team-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .team-card-name {
    font-size: 18px;
  }
}

/* =========================
   torneos.html
========================= */

.page-tournaments {
  background: #f6f4f1;
  color: #1f1f1f;
}

.tournaments-page-intro,
.tournaments-list-section {
  padding: 50px 0;
}

.tournaments-page-intro-head {
  max-width: 900px;
  margin-bottom: 0;
}

.tournaments-page-intro-head p {
  max-width: 860px;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.75;
}

.tournaments-cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.tournament-card {
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 28px;
}

.tournament-card-featured {
  display: grid;
  gap: 14px;
}

.tournament-card-empty {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  height: auto;
  align-self: start;
}

.tournament-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.tournament-card-kicker,
.tournament-block-label {
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.tournament-card-date {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #666666;
}

.tournament-card-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--red-dark);
}

.tournament-card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #4a4a4a;
}

.tournament-card-small-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #4a4a4a;
}

.tournament-card-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tournament-info-pill {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8f4f2;
  border: 1px solid rgba(143, 16, 16, 0.08);
}

.tournament-info-pill strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  color: #1f1f1f;
}

.tournament-info-pill span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #5a5a5a;
}

.tournament-card-block {
  display: grid;
  gap: 10px;
}

.tournament-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tournament-category-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #3f3f3f;
}

.tournament-category-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red-dark);
}

.tournament-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

.tournament-card-empty .tournament-card-title {
  margin: 0;
}

.tournament-card-empty .tournament-card-text {
  margin: 0;
}

@media (max-width: 980px) {
  .tournaments-page-intro,
  .tournaments-list-section {
    padding: 64px 0;
  }

  .tournaments-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tournaments-page-intro,
  .tournaments-list-section {
    padding: 56px 0;
  }

  .tournament-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .tournament-card-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tournament-card-title {
    font-size: 22px;
  }

  .tournament-card-text,
  .tournament-card-small-text {
    font-size: 15px;
    line-height: 1.7;
  }
}

.tournament-card-info-grid {
  margin-bottom: 8px;
}

.tournament-category-list {
  margin-top: 4px;
  margin-bottom: 8px;
}

/* =========================
   bienestar.html
========================= */

.page-wellbeing {
  background: #f6f4f1;
  color: #1f1f1f;
}

.wellbeing-hero-section,
.wellbeing-psychology-section,
.wellbeing-uam-section,
.wellbeing-areas-section,
.wellbeing-sonris-section,
.wellbeing-cta-section {
  padding: 50px 0;
}

.wellbeing-hero-head,
.wellbeing-section-head {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
}

.wellbeing-hero-head {
  gap: 10px;
}

.wellbeing-card-kicker,
.wellbeing-contact-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.wellbeing-section-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--red-dark);
}

.wellbeing-hero-head p,
.wellbeing-section-head p,
.wellbeing-area-card p,
.wellbeing-sonris-card p,
.wellbeing-cta-box p,
.wellbeing-mini-card p {
  color: #4a4a4a;
  line-height: 1.75;
  margin: 0;
}

.wellbeing-card-kicker + .wellbeing-section-title {
  margin-top: 8px;
}

.wellbeing-section-title + p {
  margin-top: 12px;
}

.wellbeing-section-head p + p,
.wellbeing-highlight-card > p + p,
.wellbeing-sonris-card p + p {
  margin-top: 16px;
}

.wellbeing-section-head + *,
.wellbeing-hero-head + * {
  margin-top: 24px;
}

.wellbeing-highlight-card {
  background: #fff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.wellbeing-highlight-card > p {
  margin-top: 12px;
}

.wellbeing-psychology-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wellbeing-mini-card {
  background: #f8f4f2;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 18px;
  padding: 20px;
}

.wellbeing-mini-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.wellbeing-mini-card h3 + p {
  margin-top: 10px;
}

.wellbeing-contact-box {
  margin-top: 24px;
  max-width: 310px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8f4f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.wellbeing-contact-label + a {
  margin-top: 8px;
}

.wellbeing-contact-box a {
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.wellbeing-contact-box a:hover {
  text-decoration: underline;
}

.wellbeing-areas-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wellbeing-area-card {
  background: #fff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 28px;
}

.wellbeing-area-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.wellbeing-area-card h3 + p {
  margin-top: 10px;
}

.wellbeing-sonris-layout {
  align-items: stretch;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.wellbeing-sonris-card {
  background: #fff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 28px;
}

.wellbeing-sonris-card-main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.wellbeing-sonris-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../assets/images/sonris.avif") no-repeat center / cover;
  opacity: 0.7;
  z-index: 0;
}

.wellbeing-sonris-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.84);
  z-index: 0;
}

.wellbeing-sonris-card-main > * {
  position: relative;
  z-index: 1;
}

.wellbeing-sonris-content h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

.wellbeing-sonris-content p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.75;
}

.wellbeing-sonris-content p + p {
  margin-top: 16px;
}

.wellbeing-sonris-btn {
  margin-top: 26px;
}

.wellbeing-sonris-card-side h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

@media (max-width: 900px) {
  .wellbeing-sonris-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wellbeing-sonris-card {
    padding: 22px;
  }

  .wellbeing-sonris-card-main::before {
    background-size: cover;
    background-position: center;
    opacity: 0.14;
  }

  .wellbeing-sonris-card-main::after {
    background: rgba(255, 255, 255, 0.88);
  }
}

.wellbeing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.wellbeing-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.wellbeing-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red-dark);
}

@media (max-width: 980px) {
  .wellbeing-sonris-layout {
    grid-template-columns: 1fr;
  }

  .wellbeing-sonris-card-main {
    grid-template-columns: 1fr;
  }

  .wellbeing-sonris-media {
    justify-content: flex-start;
  }

  .wellbeing-sonris-media img {
    max-width: 70px;
  }
}

.wellbeing-cta-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 34px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(135deg, #8f1010, #5d0b0b);
  color: #fff;
}

.wellbeing-cta-box .wellbeing-card-kicker,
.wellbeing-cta-box .wellbeing-section-title,
.wellbeing-cta-box p {
  color: #fff;
}

.wellbeing-cta-box p {
  max-width: 760px;
  margin: 12px auto 0;
}

.wellbeing-areas-section .wellbeing-section-head {
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .wellbeing-psychology-grid,
  .wellbeing-areas-grid,
  .wellbeing-sonris-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wellbeing-hero-section,
  .wellbeing-psychology-section,
  .wellbeing-uam-section,
  .wellbeing-areas-section,
  .wellbeing-sonris-section,
  .wellbeing-cta-section {
    padding: 48px 0;
  }
}

/* =========================
   actualidad.html
========================= */

.page-news {
  background: #f6f4f1;
  color: #1f1f1f;
}

body.news-modal-open {
  overflow: hidden;
}

.news-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 42vh;
  color: #fff;
}

.news-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.03) brightness(0.72);
  z-index: 0;
}

.news-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 20%,
    rgba(0, 0, 0, 0.2) 84%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.news-hero-content {
  position: relative;
  z-index: 2;
  min-height: 42vh;
  padding-top: 42px;
  padding-bottom: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.news-hero-title {
  max-width: 860px;
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 950;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.news-hero-text {
  max-width: 470px;
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.news-hero-hashtag {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #d98d8d;
}

.news-list-section {
  padding: 50px 0 64px;
}

.news-posts-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.news-posts-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  height: 100%;
}

.news-post-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.news-post-image {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.news-post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.news-post-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.news-post-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(179, 0, 0, 0.08);
  color: var(--red-dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-post-date {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #6a6a6a;
}

.news-post-title {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #111;
}

.news-post-excerpt {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.72;
  color: #4a4a4a;
}

.news-open-modal {
  margin-top: auto;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.news-page-number,
.news-page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  color: #1f1f1f;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  box-shadow: 0 8px 18px rgba(18, 18, 18, 0.04);
  transition:
    background 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.news-page-number:hover,
.news-page-arrow:hover {
  transform: translateY(-1px);
  background: rgba(179, 0, 0, 0.06);
  color: var(--red-dark);
}

.news-page-number.is-active {
  background: rgba(179, 0, 0, 0.12);
  color: var(--red-dark);
  border-color: rgba(179, 0, 0, 0.14);
}

.news-page-arrow.is-disabled {
  pointer-events: none;
  opacity: 0.38;
}

.news-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px 18px;
  background: rgba(12, 12, 12, 0.42);
  backdrop-filter: blur(8px);
}

.news-modal-overlay.is-open {
  display: flex;
}

.news-modal-window {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(88vh, 980px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.22);
  padding: 0;
  scroll-behavior: auto;
  overflow-anchor: none;
}

.news-modal-media {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.news-modal-media img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.news-modal-body {
  padding: 30px 32px 34px;
}

.news-modal-title {
  margin: 16px 0 0;
  max-width: 900px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #111;
}

.news-modal-content {
  margin-top: 22px;
}

.news-modal-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
}

.news-modal-content p + p {
  margin-top: 18px;
}

.news-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1f1f1f;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(18, 18, 18, 0.12);
  transition:
    transform 0.16s ease,
    background 0.16s ease;
}

.news-modal-close span {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.news-modal-close:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

@media (max-width: 1100px) {
  .news-posts-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .news-hero {
    min-height: 38vh;
  }

  .news-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.58) 32%,
      rgba(0, 0, 0, 0.44) 62%,
      rgba(0, 0, 0, 0.24) 100%
    );
  }

  .news-hero-content {
    min-height: 38vh;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .news-hero-title {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1;
  }

  .news-hero-text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .news-hero-hashtag {
    margin-top: 12px;
    font-size: 13px;
  }

  .news-posts-grid-three {
    grid-template-columns: 1fr;
  }

  .news-post-image {
    height: 220px;
  }

  .news-post-body {
    padding: 22px 20px;
  }

  .news-post-title {
    font-size: 24px;
  }

  .news-post-excerpt {
    font-size: 15px;
    line-height: 1.7;
  }

  .news-modal-window {
    max-height: 92vh;
    border-radius: 24px;
  }

  .news-modal-media img {
    height: 230px;
    border-radius: 0;
  }

  .news-modal-body {
    padding: 24px 20px 26px;
  }

  .news-modal-title {
    font-size: 30px;
  }

  .news-modal-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (max-width: 520px) {
  .news-list-section {
    padding: 42px 0 52px;
  }

  .news-post-card {
    border-radius: 22px;
  }

  .news-pagination {
    gap: 8px;
    flex-wrap: wrap;
  }

  .news-page-number,
  .news-page-arrow {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .news-modal-overlay {
    padding: 18px 12px;
  }

  .news-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .news-modal-close span {
    font-size: 20px;
  }
}

/* =========================
   valores.html
========================= */

.page-values {
  background: #f6f4f1;
  color: #1f1f1f;
}

.values-page-intro,
.values-intro-section,
.values-core-section,
.values-docs-section,
.values-zero-section,
.values-lopivi-section,
.values-thirdtime-section,
.values-ods-section {
  padding: 50px 0;
}

.values-page-intro-head {
  max-width: 900px;
  margin-bottom: 0;
}

.values-page-intro-head p {
  max-width: 860px;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.75;
}

.values-section-head {
  max-width: 900px;
  margin-bottom: 24px;
}

.values-section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.values-section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--red-dark);
}

.values-section-head p,
.values-docs-copy p,
.values-zero-copy p,
.values-lopivi-copy p,
.values-thirdtime-copy p,
.values-principle-card p,
.value-card p,
.values-zero-card p,
.values-lopivi-item span,
.values-summary-card p,
.values-ods-card span {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.75;
}

.values-section-head p + p,
.values-docs-copy p + p,
.values-zero-copy p + p,
.values-lopivi-copy p + p,
.values-thirdtime-copy p + p {
  margin-top: 16px;
}

.values-principle-card,
.value-card,
.values-summary-card,
.values-lopivi-item,
.values-ods-card {
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 24px;
}

.values-principle-card h3,
.value-card h3,
.values-summary-card h3,
.values-zero-card h3,
.values-lopivi-item strong,
.values-ods-card strong {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
}

.values-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.values-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.values-summary-card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.values-summary-card-link .btn {
  margin-top: 20px;
}

.values-zero-box {
  background: linear-gradient(135deg, #8f1010, #5d0b0b);
  border-radius: 28px;
  padding: 32px;
  color: #ffffff;
  box-shadow: 0 24px 44px rgba(80, 10, 10, 0.2);
}

.values-zero-copy .values-section-kicker,
.values-zero-copy .values-section-title,
.values-zero-copy p {
  color: #ffffff;
}

.values-zero-copy {
  max-width: 900px;
}

.values-zero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.values-zero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.values-zero-card h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.values-zero-card p {
  color: rgba(255, 255, 255, 0.88);
}

.values-lopivi-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.values-lopivi-list {
  display: grid;
  gap: 14px;
}

.values-lopivi-item strong {
  display: block;
  margin-bottom: 6px;
}

.values-thirdtime-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
}

.values-thirdtime-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.values-thirdtime-copy {
  padding: 28px;
}

.values-ods-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.values-ods-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red-dark);
}

.values-ods-card span {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  color: #545454;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 24px;
}

.value-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.value-card-head i {
  width: 20px;
  height: 20px;
  color: var(--red-dark);
  flex-shrink: 0;
}

.value-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.value-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .values-principles-grid,
  .values-grid,
  .values-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-lopivi-layout,
  .values-thirdtime-card {
    grid-template-columns: 1fr;
  }

  .values-ods-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .values-zero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .values-page-intro,
  .values-intro-section,
  .values-core-section,
  .values-docs-section,
  .values-zero-section,
  .values-lopivi-section,
  .values-thirdtime-section,
  .values-ods-section {
    padding: 48px 0;
  }

  .values-principles-grid,
  .values-grid,
  .values-summary-grid,
  .values-ods-grid {
    grid-template-columns: 1fr;
  }

  .values-section-title {
    font-size: 22px;
  }

  .values-principle-card,
  .value-card,
  .values-summary-card,
  .values-lopivi-item,
  .values-ods-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .values-zero-box {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .values-zero-card {
    padding: 18px;
    border-radius: 18px;
  }

  .values-thirdtime-card {
    border-radius: 20px;
  }

  .values-thirdtime-copy {
    padding: 24px 20px;
  }

  .values-thirdtime-media img {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .values-page-intro,
  .values-intro-section,
  .values-core-section,
  .values-docs-section,
  .values-zero-section,
  .values-lopivi-section,
  .values-thirdtime-section,
  .values-ods-section {
    padding: 42px 0;
  }

  .values-ods-card span {
    font-size: 13px;
  }
}

/* =========================
   premios.html
========================= */

.page-award {
  background: #f6f4f1;
  color: #1f1f1f;
}

.award-page-intro,
.award-overview-section,
.award-categories-section,
.award-story-section,
.award-gallery-section {
  padding: 50px 0;
}

.award-page-intro-head {
  max-width: 900px;
  margin-bottom: 0;
}

.award-page-intro-head p {
  max-width: 860px;
  margin: 0;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.75;
}

.award-section-head {
  max-width: 900px;
  margin-bottom: 24px;
}

.award-section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.award-section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--red-dark);
}

.award-section-head p,
.award-overview-card p,
.award-category-card p,
.award-story-copy p {
  margin: 0;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.75;
}

.award-overview-card p + p,
.award-story-copy p + p {
  margin-top: 16px;
}

.award-overview-card {
  max-width: 980px;
  background: #d9b0b02b;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 28px;
}

.award-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.award-category-card {
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 24px;
}

.award-category-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
}

.award-story-card {
  max-width: 980px;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.05);
  padding: 30px;
}

.award-story-copy {
  max-width: 860px;
}

.award-gallery-year-block + .award-gallery-year-block {
  margin-top: 34px;
}

.award-gallery-year-title {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.award-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  justify-items: start;
}

.award-gallery-item {
  margin: 0;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(143, 16, 16, 0.08);
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.05);
}

.award-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.award-gallery-item:hover img {
  transform: scale(1.02);
}

@media (max-width: 1100px) {
  .award-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-gallery-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .award-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .award-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .award-page-intro,
  .award-overview-section,
  .award-categories-section,
  .award-story-section,
  .award-gallery-section {
    padding: 48px 0;
  }

  .award-section-title {
    font-size: 22px;
  }

  .award-overview-card,
  .award-story-card,
  .award-category-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .award-gallery-grid,
  .award-gallery-grid-two {
    grid-template-columns: 1fr;
  }

  .award-gallery-item {
    border-radius: 20px;
  }

  .award-gallery-item img {
    min-height: 240px;
  }
}

/* =========================
   typography overrides
========================= */

.section-head h3.section-subtitle,
.shop-hero-content h3.section-subtitle,
.first-team-standings-head h3.section-subtitle,
.mutuality-highlight-card h3.section-subtitle,
.mutuality-step-card h3.section-subtitle,
.mutuality-warning-card h3.section-subtitle,
.mutuality-document-card h3.section-subtitle,
.history-thanks-card h3.section-subtitle,
.history-reel-head h2,
.history-story-head h2 {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--red-dark);
  letter-spacing: -0.02em;
}

.section-head p,
.club-intro p,
.shop-section-head p,
.fees-section-head p,
.schedule-section-head p,
.legal-section-head p,
.history-hero-head p,
.history-story-head p,
.history-reel-head p,
.mutuality-hero-head p,
.mutuality-steps-head p,
.mutuality-documents-head p {
  font-weight: 450;
}

.shop-hero-content h3,
.mutuality-highlight-card h3,
.mutuality-step-card h3,
.mutuality-warning-card h3,
.mutuality-document-card h3,
.history-thanks-card h3 {
  margin-bottom: 10px;
}

.page-home .section-head h2,
.page-home .club-intro h2,
.page-home .equality-section-content h2,
.page-home .how-to-section-head h2,
.page-home .cta-section h2 {
  font-size: clamp(30px, 3vw, 38px);
}

h1,
.page-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

h2,
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

h3,
.section-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.2;
}
