/*
Theme Name: PromoGolf
Theme URI: https://promogolf.com
Author: BSWEBMX
Author URI: https://bswebmx.com
Description: Theme premium para torneos de golf — estilo Editorial Tech. WooCommerce integrado, categorías por handicap USGA, leaderboard y sistema de inscripciones.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: promogolf
WC requires at least: 8.0
WC tested up to: 8.9
*/

/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
  --g: #1A4D2E;
  --g-mid: #2E6B45;
  --g-light: #3D8C5C;
  --g-pale: #EAF3EE;
  --g-xpale: #F4FAF6;
  --gold: #B8962E;
  --black: #0A0A0A;
  --dark: #1C1C1C;
  --gray-d: #333;
  --gray: #666;
  --gray-l: #999;
  --border: #E2E2E2;
  --border-l: #F0F0F0;
  --bg: #FFFFFF;
  --bg2: #F8F8F6;
  --bg3: #F3F3F0;

  --r: 999px;
  /* pill */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --sh: 0 1px 3px rgba(0, 0, 0, .05), 0 4px 16px rgba(0, 0, 0, .06);
  --sh-hover: 0 4px 8px rgba(0, 0, 0, .06), 0 12px 40px rgba(26, 77, 46, .14);
  --sh-card: 0 2px 8px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .06);
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
  line-height: 1.05;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.u-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--g);
  background: var(--g-pale);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: var(--r);
}

.u-label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--g);
  border-radius: 50%;
  flex-shrink: 0;
}

.u-label.live::before {
  animation: livepulse 1.6s ease infinite;
}

@keyframes livepulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.85)
  }
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: .95;
  margin-top: .5rem;
}

.section-desc {
  color: var(--gray);
  font-size: 14px;
  font-weight: 300;
  max-width: 500px;
  margin-top: .85rem;
  line-height: 1.7;
}

/* Data line — decorative horizontal rule with label */
.data-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.data-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r);
  border: none;
  transition: all .22s;
  line-height: 1;
}

.btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.btn-green {
  background: var(--g);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 77, 46, .3);
}

.btn-green:hover {
  background: var(--g-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 77, 46, .38);
  color: #fff;
}

.btn-outline-g {
  background: transparent;
  color: var(--g);
  border: 1.5px solid var(--g);
}

.btn-outline-g:hover {
  background: var(--g);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--bg2);
  color: var(--gray-d);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--g);
  color: var(--g);
  background: var(--g-pale);
}

.btn-white {
  background: #fff;
  color: var(--g);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  color: var(--g);
}

.btn-outline-w {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

/* ═══════════════════════════════════════════════
   TOPBAR — green with live ticker
═══════════════════════════════════════════════ */
#pg-topbar {
  background: var(--g);
  height: 36px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.tb-left {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-shrink: 0;
}

.tb-left a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.tb-left a:hover {
  color: #fff;
}

/* Live badge */
.tb-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.tb-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: livepulse 1.6s ease infinite;
}

/* Ticker */
.tb-ticker-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  margin: 0 2rem;
}

.tb-ticker {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}

.tb-ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-ticker-item .sep {
  color: rgba(255, 255, 255, .2);
}

.tb-ticker-item strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

@keyframes tickerMove {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.tb-social {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.tb-social a {
  opacity: .4;
  transition: opacity .2s;
}

.tb-social a:hover {
  opacity: 1;
}

.tb-social svg {
  width: 13px;
  height: 13px;
  fill: #fff;
  display: block;
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
#pg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 66px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .3s;
}

#pg-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
}

/* Logo */
.site-logo {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
}

/* Logo subido desde WordPress — sin recuadro, tamaño libre */
.site-logo,
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1 1 0%;
  justify-content: flex-start;
}

.site-logo .custom-logo-link {
  flex: none;
  gap: 0;
}

.site-logo .custom-logo-link img,
.site-logo>img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

/* Ícono fallback cuando NO hay logo personalizado */
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--g);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 18px;
  height: 18px;
}

.site-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--black);
  line-height: 1;
}

.site-name span {
  color: var(--g);
}

/* Nav */
#site-navigation ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

#site-navigation ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 7px 13px;
  border-radius: var(--r);
  transition: all .2s;
  display: block;
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item>a,
#site-navigation ul li.current_page_item>a {
  color: var(--g);
  background: var(--g-pale);
}

/* Dropdown */
#site-navigation ul li {
  position: relative;
}

#site-navigation ul li ul {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
}

#site-navigation ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#site-navigation ul li ul li a {
  border-radius: var(--r-sm);
  color: var(--gray-d);
}

/* Header actions */
.header-actions {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.hdr-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--gray-d);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: all .22s;
  position: relative;
}

.hdr-cart:hover {
  border-color: var(--g);
  color: var(--g);
  background: var(--g-pale);
}

.hdr-cart svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 17px;
  height: 17px;
  background: var(--g);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-family: 'Barlow', sans-serif;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 9px;
  color: var(--gray-d);
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ═══════════════════════════════════════════════
   WC NOTICES
═══════════════════════════════════════════════ */
.wc-notices-wrapper {
  padding: 0 2.5rem;
  background: var(--bg);
}

.wc-notices-wrapper .woocommerce-message,
.wc-notices-wrapper .woocommerce-info {
  background: var(--g-pale);
  border: none;
  border-left: 3px solid var(--g);
  padding: 12px 18px;
  margin: 12px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  color: var(--g);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.wc-notices-wrapper .woocommerce-message a {
  font-weight: 700;
  text-decoration: underline;
}

.wc-notices-wrapper .woocommerce-error {
  border-left-color: #c0392b;
  color: #c0392b;
  background: #fdf0f0;
}

/* ═══════════════════════════════════════════════
   HERO — asymmetric editorial layout
═══════════════════════════════════════════════ */
.pg-hero {
  background: var(--black);
  background-size: cover;
  background-position: center 35%;
  background-attachment: scroll;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 360px;
  min-height: 88vh;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Dark overlay sobre la foto */
.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg,
      rgba(8, 20, 12, .88) 0%,
      rgba(8, 20, 12, .75) 55%,
      rgba(8, 20, 12, .5) 100%);
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

/* Left — content */
.hero-left {
  padding: 4rem 3rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid var(--border);
}

.hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--g) 30%, var(--g) 70%, transparent);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ADE80;
  animation: livepulse 1.6s ease infinite;
}

.hero-h1 {
  font-size: clamp(72px, 10vw, 140px);
  line-height: .88;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero-h1 em {
  font-style: normal;
  color: var(--g);
  display: block;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions .divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin: 0 4px;
}

.hero-actions .trust {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-l);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-actions .trust svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
}

/* Hero bottom stats */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 1px;
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 1.1rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #fff;
  line-height: 1;
}

.hero-stat .n em {
  font-style: normal;
  color: #4ADE80;
}

.hero-stat .d {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px;
}

/* Right — upcoming events panel */
.hero-right {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}

.hero-right-header {
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-right-header .panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-right-header a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g);
  text-decoration: underline;
}

.hero-event-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-event {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  color: inherit;
}

.hero-event:hover {
  background: var(--g-xpale);
}

.hero-event.featured {
  background: var(--g-pale);
  border-left: 3px solid var(--g);
}

.hero-event-date {
  background: var(--black);
  border-radius: var(--r-sm);
  min-width: 42px;
  text-align: center;
  padding: .35rem .3rem;
  flex-shrink: 0;
}

.hero-event-date .ed {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.hero-event-date .em {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.hero-event-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .03em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-event-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--gray-l);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-event-meta svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.hero-event-price {
  margin-left: auto;
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--g);
  line-height: 1;
}

.hero-event-price small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-l);
  font-weight: 400;
  line-height: 1.2;
}

/* Next-up banner inside hero-right bottom */
.hero-cta-box {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.hero-cta-box .cta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .5rem;
  display: block;
}

.hero-cta-box .cta-event {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: .35rem;
  line-height: 1;
}

.hero-cta-box .cta-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}

.hero-cta-box .countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.cd-item {
  text-align: center;
  min-width: 36px;
}

.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #4ADE80;
  line-height: 1;
}

.cd-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, .2);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════
   SECTIONS BASE
═══════════════════════════════════════════════ */
section {
  padding: 5rem 2.5rem;
}

.pg-shop-section {
  background: var(--bg2);
}

.pg-handicap {
  background: var(--bg);
}

.pg-how {
  background: var(--bg3);
}

.pg-schedule {
  background: var(--bg);
}

.pg-why {
  background: var(--bg2);
  padding: 5rem 2.5rem;
}

.pg-cta {
  padding: 0;
}

.pg-testimonials {
  background: var(--bg);
}

/* ═══════════════════════════════════════════════
   SHOP FILTERS
═══════════════════════════════════════════════ */
.pg-shop-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pg-filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--gray);
  border-radius: var(--r);
  transition: all .2s;
}

.pg-filter-btn:hover {
  border-color: var(--g);
  color: var(--g);
  background: var(--g-pale);
}

.pg-filter-btn.active {
  background: var(--g);
  border-color: var(--g);
  color: #fff;
}

/* ═══════════════════════════════════════════════
   WC PRODUCT CARDS
═══════════════════════════════════════════════ */
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.products li.product {
  margin: 0;
}

.wc-product-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
}

.wc-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-hover);
  border-color: rgba(26, 77, 46, .2);
}

.wc-product-card:hover .product-img {
  transform: scale(1.04);
}

.wc-product-card:hover .product-overlay {
  opacity: 1;
}

.product-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f1f15;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 77, 46, .15);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: #fff;
  color: var(--g);
  padding: 9px 22px;
  border-radius: var(--r);
}

.wc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r);
  backdrop-filter: blur(8px);
}

.badge-open {
  background: rgba(26, 77, 46, .9);
  color: #fff;
}

.badge-feat {
  background: rgba(184, 150, 46, .92);
  color: #fff;
}

.badge-outofstock {
  background: rgba(255, 255, 255, .9);
  color: var(--gray);
}

.badge-soon {
  background: rgba(255, 255, 255, .9);
  color: var(--g);
  border: 1px solid var(--g);
}

.product-body {
  padding: 1.25rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: none;
}

.product-cat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: .35rem;
}

.product-title-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--black);
  display: block;
  margin-bottom: .75rem;
}

.product-title-link:hover {
  color: var(--g);
}

.product-chips {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gray);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .04em;
  background: var(--bg2);
  padding: 4px 9px;
  border-radius: var(--r);
  border: 1px solid var(--border-l);
}

.chip svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Featured detail rows */
.featured-rows {
  margin: .75rem 0 1rem;
}

.feat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border-l);
  font-size: 13px;
}

.feat-row:last-child {
  border-bottom: none;
}

.feat-row .fl {
  color: var(--gray-l);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .03em;
}

.feat-row .fv {
  font-weight: 500;
  color: var(--dark);
}

.feat-row .fv.hi {
  color: var(--g);
  font-weight: 600;
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-l);
  margin-top: auto;
}

.price-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-l);
  display: block;
}

.product-price-wrap .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--g);
  line-height: 1.1;
  display: block;
}

.product-price-wrap .price ins {
  text-decoration: none;
}

/* WC Add to cart button */
.add_to_cart_button,
.single_add_to_cart_button,
button[name="add-to-cart"] {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  background: var(--g) !important;
  color: #fff !important;
  padding: 9px 16px !important;
  border: none !important;
  border-radius: var(--r) !important;
  cursor: pointer !important;
  transition: all .22s !important;
}

.add_to_cart_button:hover,
.single_add_to_cart_button:hover {
  background: var(--g-mid) !important;
  transform: translateY(-1px) !important;
}

.add_to_cart_button.added {
  background: var(--g-mid) !important;
}

/* Spots bar */
.spots-bar-bg {
  background: var(--bg3);
  border-radius: var(--r);
  height: 3px;
  overflow: hidden;
  margin-top: .75rem;
}

.spots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g), var(--g-light));
  border-radius: var(--r);
  transition: width .8s ease;
}

.spots-text {
  font-size: 10px;
  color: var(--gray-l);
  margin-top: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .04em;
}

/* Featured product (wide) */
.product-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.product-featured .product-thumb {
  aspect-ratio: auto;
  min-height: 340px;
}

.product-featured .product-title-link {
  font-size: 34px;
}

.product-featured .product-body {
  padding: 2rem;
}

/* ═══════════════════════════════════════════════
   HANDICAP CARDS
═══════════════════════════════════════════════ */
.handicap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 2rem;
}

.hc-card {
  background: var(--bg);
  padding: 1.75rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  box-shadow: var(--sh);
  transition: all .25s;
  cursor: pointer;
}

.hc-card:hover {
  border-left-color: var(--g);
  box-shadow: var(--sh-hover);
  transform: translateY(-3px);
}

.hc-card.active {
  border-left-color: var(--g);
  background: var(--g-xpale);
  box-shadow: var(--sh-hover);
}

.hc-range {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--g);
  line-height: 1;
  margin-bottom: .2rem;
}

.hc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .65rem;
}

.hc-desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.55;
}

.hc-spots {
  margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--g-pale);
  padding: 4px 10px;
  border-radius: var(--r);
}

.hc-spots::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--g);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 2rem;
}

.how-step {
  background: var(--bg);
  padding: 2rem 1.75rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  transition: all .25s;
  position: relative;
}

.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-hover);
  border-color: rgba(26, 77, 46, .15);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: rgba(26, 77, 46, .07);
  line-height: 1;
  margin-bottom: .4rem;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: var(--g-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}

.step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .04em;
  margin-bottom: .5rem;
  color: var(--black);
}

.step-desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 2rem;
  right: -6px;
  width: 12px;
  height: 12px;
  background: var(--g);
  border-radius: 50%;
  border: 2px solid var(--bg3);
  display: none;
}

/* ═══════════════════════════════════════════════
   SCHEDULE
═══════════════════════════════════════════════ */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sched-item {
  background: var(--bg);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: all .22s;
  box-shadow: var(--sh);
}

a.sched-item {
  color: inherit;
  display: grid;
}

.sched-item:hover {
  border-left-color: var(--g);
  box-shadow: var(--sh-hover);
  transform: translateX(3px);
}

.sched-date {
  background: var(--black);
  border-radius: var(--r-sm);
  padding: .5rem .3rem;
  text-align: center;
}

.sched-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #fff;
  line-height: 1;
}

.sched-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.sched-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: .03em;
  color: var(--black);
  margin-bottom: 3px;
}

.sched-loc {
  font-size: 12px;
  color: var(--gray-l);
  font-family: 'Barlow Condensed', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sched-loc svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
}

.pg-cat-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r);
  white-space: nowrap;
}

.cat-open {
  background: var(--g-pale);
  color: var(--g);
}

.cat-inv {
  background: rgba(184, 150, 46, .1);
  color: var(--gold);
}

.cat-corp {
  background: var(--bg3);
  color: var(--gray-d);
  border: 1px solid var(--border);
}

.sched-price {
  text-align: right;
  white-space: nowrap;
}

.sched-price .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--g);
  display: block;
  line-height: 1;
}

.sched-price .per {
  font-size: 10px;
  color: var(--gray-l);
  font-family: 'Barlow Condensed', sans-serif;
}

/* ═══════════════════════════════════════════════
   WHY
═══════════════════════════════════════════════ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
  position: relative;
}

.why-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.why-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
}

.why-float .wf-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--g);
  line-height: 1;
}

.why-float .wf-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
}

.why-content h2 {
  font-size: clamp(32px, 3.2vw, 52px);
  margin-top: .4rem;
  margin-bottom: 1.75rem;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg);
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  box-shadow: var(--sh);
  transition: all .22s;
}

.why-item:hover {
  border-left-color: var(--g);
  box-shadow: var(--sh-hover);
  transform: translateX(3px);
}

.why-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--g-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
}

.why-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2px;
}

.why-text p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.pg-cta {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pg-cta-left {
  padding: 5rem 3rem 5rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.pg-cta-left .cta-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #4ADE80;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.pg-cta-left h2 {
  font-size: clamp(44px, 5.5vw, 80px);
  color: #fff;
  line-height: .9;
  margin-bottom: 1.25rem;
}

.pg-cta-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pg-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pg-cta-right {
  padding: 5rem 2.5rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.cta-stat-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cta-stat-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cta-stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}

.cta-stat-n em {
  font-style: normal;
  color: #4ADE80;
}

.cta-stat-d {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  max-width: 200px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#pg-footer {
  background: #0C1A10;
}

.footer-top {
  padding: 4.5rem 2.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo .logo-mark {
  background: rgba(255, 255, 255, .06);
}

.footer-logo .site-name {
  color: #fff;
  font-size: 20px;
}

.footer-logo .site-name span {
  color: #4ADE80;
}

/* Logo personalizado en el footer — invertido para fondo oscuro */
.footer-logo .custom-logo-link img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 13px;
  color: #4a6b52;
  font-weight: 300;
  line-height: 1.7;
  max-width: 250px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.footer-social a:hover {
  border-color: var(--g-light);
  background: rgba(61, 140, 92, .15);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 13px;
  height: 13px;
  fill: #4a6b52;
  transition: fill .2s;
}

.footer-social a:hover svg {
  fill: var(--g-light);
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: #4a6b52;
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col li a {
  font-size: 13px;
  color: #4a6b52;
  transition: color .2s;
  display: block;
}

.footer-col li a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1.25rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 11px;
  color: #2d4a33;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .06em;
}

.footer-bottom span {
  color: var(--g-light);
}

/* ═══════════════════════════════════════════════
   PAGE CONTENT
═══════════════════════════════════════════════ */
.pg-page-content {
  padding: 4rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.pg-page-content h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.pg-page-content p {
  color: var(--gray-d);
  margin-bottom: 1rem;
}

.pg-page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.pg-page-content ul li {
  color: var(--gray-d);
  margin-bottom: .4rem;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width:1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-img-wrap {
    display: none;
  }

  .pg-cta {
    grid-template-columns: 1fr;
  }

  .pg-cta-right {
    display: none;
  }

  .product-featured {
    grid-template-columns: 1fr;
  }

  .product-featured .product-thumb {
    min-height: 240px;
  }
}

@media (max-width:860px) {
  .pg-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 3rem 1.5rem 7rem;
  }

  .hero-stats-bar {
    right: 0;
  }

  #pg-topbar {
    display: none;
  }

  #pg-header {
    padding: 0 1.5rem;
  }

  #site-navigation {
    display: none;
  }

  #site-navigation.open {
    display: flex;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: var(--sh-card);
    z-index: 99;
  }

  #site-navigation.open ul {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 3.5rem 1.5rem;
  }

  .pg-cta-left {
    padding: 3.5rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    padding: 1.25rem 1.5rem;
  }

  ul.products {
    grid-template-columns: 1fr;
  }

  .sched-item {
    grid-template-columns: 60px 1fr;
  }

  .sched-item .pg-cat-badge,
  .sched-item .sched-price {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(56px, 14vw, 90px);
  }
}

/* ═══════════════════════════════════════════════
   HERO OVERRIDES — text colors for photo bg
═══════════════════════════════════════════════ */
.hero-left {
  padding: 4rem 3rem 8rem 2.5rem;
  border-right-color: rgba(255, 255, 255, .1);
}

.hero-left::before {
  background: linear-gradient(to bottom, transparent, #4ADE80 30%, #4ADE80 70%, transparent);
}

.hero-eyebrow {
  color: rgba(255, 255, 255, .7);
}

.hero-h1 {
  color: #fff;
}

.hero-h1 em {
  color: #4ADE80;
}

.hero-desc {
  color: rgba(255, 255, 255, .72);
}

.hero-actions .divider {
  background: rgba(255, 255, 255, .2);
}

.hero-actions .trust {
  color: rgba(255, 255, 255, .5);
}

.hero-actions .trust svg {
  stroke: #4ADE80;
}

/* ═══════════════════════════════════════════════
   TORNEOS PAGE (archive-product) — redesign
═══════════════════════════════════════════════ */
.pg-torneos-hero {
  background: var(--black);
  background-size: cover;
  background-position: center 40%;
  position: relative;
  padding: 5rem 2.5rem 4rem;
  overflow: hidden;
}

.pg-torneos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 20, 12, .82), rgba(8, 20, 12, .7));
}

.pg-torneos-hero>* {
  position: relative;
  z-index: 1;
}

.torneos-hero-inner {
  max-width: 680px;
}

.torneos-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1rem;
}

.torneos-hero-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #4ADE80;
}

.torneos-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  color: #fff;
  line-height: .9;
  margin-bottom: 1rem;
}

.torneos-hero h1 em {
  font-style: normal;
  color: #4ADE80;
}

.torneos-hero-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Torneos stats strip */
.torneos-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.torneos-stat {
  padding-right: 2.5rem;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.torneos-stat:last-child {
  border-right: none;
}

.torneos-stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.torneos-stat .n span {
  color: #4ADE80;
}

.torneos-stat .d {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-top: 1px;
}

/* Filter bar */
.torneos-filter-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  position: sticky;
  top: 66px;
  z-index: 50;
}

.torneos-filter-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 1rem 1.25rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  transition: all .2s;
}

.torneos-filter-tab:hover {
  color: var(--g);
}

.torneos-filter-tab.active {
  color: var(--g);
  border-bottom-color: var(--g);
}

/* Main layout */
.torneos-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  min-height: 60vh;
}

.torneos-main {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}

.torneos-sidebar {
  padding: 2rem 1.75rem;
  background: var(--bg2);
}

/* Featured card — horizontal */
.torneos-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
  margin-bottom: 2rem;
  transition: box-shadow .3s;
}

.torneos-featured:hover {
  box-shadow: var(--sh-hover);
}

.torneos-featured:hover .tf-img {
  transform: scale(1.04);
}

.tf-img-wrap {
  overflow: hidden;
}

.tf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  min-height: 280px;
}

.tf-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tf-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--g);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r);
  margin-bottom: 1rem;
}

.tf-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: .75rem;
}

.tf-rows {
  margin: .75rem 0;
}

.tf-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border-l);
  font-size: 13px;
}

.tf-row:last-child {
  border-bottom: none;
}

.tf-row .fl {
  color: var(--gray-l);
  font-family: 'Barlow Condensed', sans-serif;
}

.tf-row .fv {
  font-weight: 500;
}

.tf-row .fv.hi {
  color: var(--g);
  font-weight: 600;
}

.tf-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-l);
}

.tf-price-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-l);
  display: block;
}

.tf-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--g);
  line-height: 1.1;
}

/* Torneos grid */
.torneos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Torneos card — compact */
.tc-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: transform .28s, box-shadow .28s, border-color .28s;
  display: flex;
  flex-direction: column;
}

.tc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-hover);
  border-color: rgba(26, 77, 46, .2);
}

.tc-card:hover .tc-img {
  transform: scale(1.05);
}

.tc-thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
  position: relative;
}

.tc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.tc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r);
  backdrop-filter: blur(8px);
}

.tc-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tc-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: .3rem;
}

.tc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .03em;
  color: var(--black);
  margin-bottom: .6rem;
  display: block;
  line-height: 1.1;
}

.tc-title:hover {
  color: var(--g);
}

.tc-meta {
  font-size: 11px;
  color: var(--gray-l);
  font-family: 'Barlow Condensed', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: .85rem;
}

.tc-meta svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.tc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--border-l);
}

.tc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--g);
  line-height: 1;
}

.tc-price small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-l);
  font-weight: 400;
}

.tc-bar {
  height: 3px;
  background: var(--bg3);
  border-radius: var(--r);
  margin-top: .6rem;
  overflow: hidden;
}

.tc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g), var(--g-light));
  border-radius: var(--r);
}

.tc-spots {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  color: var(--gray-l);
  margin-top: 4px;
}

/* Sidebar */
.sidebar-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-l);
  margin-bottom: 1rem;
}

.sidebar-next {
  background: var(--black);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
}

.sidebar-next::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(74, 222, 128, .15);
  border-radius: 50%;
}

.sidebar-next .sn-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sidebar-next .sn-dot {
  width: 5px;
  height: 5px;
  background: #4ADE80;
  border-radius: 50%;
  animation: livepulse 1.6s ease infinite;
}

.sidebar-next .sn-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: .35rem;
}

.sidebar-next .sn-loc {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 1rem;
}

.sidebar-cd {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}

.scd-item {
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-sm);
  padding: .4rem .5rem;
  text-align: center;
  min-width: 44px;
}

.scd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #4ADE80;
  line-height: 1;
}

.scd-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.scd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, .2);
  align-self: flex-start;
  padding-top: 6px;
}

/* Cat filter pills in sidebar */
.cat-pills {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-d);
  cursor: pointer;
  transition: all .2s;
  background: var(--bg);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--g-pale);
  border-color: var(--g);
  color: var(--g);
}

.cat-pill .count {
  font-size: 10px;
  background: var(--bg3);
  padding: 2px 7px;
  border-radius: var(--r);
  color: var(--gray);
}

.cat-pill.active .count {
  background: rgba(26, 77, 46, .12);
  color: var(--g);
}

/* ═══════════════════════════════════════════════
   NOSOTROS PAGE
═══════════════════════════════════════════════ */
.pg-nosotros-hero {
  background: var(--black);
  background-size: cover;
  background-position: center;
  padding: 6rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.pg-nosotros-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 20, 12, .9) 0%, rgba(8, 20, 12, .65) 100%);
}

.pg-nosotros-hero>* {
  position: relative;
  z-index: 1;
}

.nosotros-hero-inner {
  max-width: 700px;
}

.nosotros-hero-inner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  color: #fff;
  line-height: .9;
  margin-bottom: 1.25rem;
}

.nosotros-hero-inner h1 span {
  color: #4ADE80;
}

.nosotros-hero-inner p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Mission split */
.nosotros-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.mission-left {
  padding: 4rem 3rem 4rem 2.5rem;
  border-right: 1px solid var(--border);
}

.mission-right {
  padding: 4rem 2.5rem 4rem 3rem;
  background: var(--g);
}

.mission-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.mission-left p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
}

.mission-left blockquote {
  border-left: 3px solid var(--g);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--gray-d);
  line-height: 1.6;
}

.mission-right h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: .7;
  letter-spacing: .06em;
}

.value-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: rgba(255, 255, 255, .15);
  line-height: 1;
  min-width: 50px;
}

.value-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.value-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
  line-height: 1.6;
}

/* Números grandes */
.nosotros-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.nos-num {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.nos-num:last-child {
  border-right: none;
}

.nos-num .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--g);
  line-height: 1;
}

.nos-num .l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* Historia timeline */
.nosotros-historia {
  padding: 5rem 2.5rem;
  background: var(--bg2);
}

.historia-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.historia-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.historia-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.historia-item::before {
  content: '';
  position: absolute;
  left: 74px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--g);
  border-radius: 50%;
  border: 2px solid var(--bg2);
}

.historia-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--g);
  line-height: 1;
  padding-top: 2px;
}

.historia-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.historia-content p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.65;
}

/* Campos sede */
.nosotros-campos {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.campos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.campo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.campo-card:hover .campo-img {
  transform: scale(1.06);
}

.campo-card:hover .campo-overlay {
  opacity: 1;
}

.campo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.campo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 12, .85) 0%, transparent 60%);
  opacity: .85;
  transition: opacity .3s;
}

.campo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.campo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  line-height: 1.1;
}

.campo-city {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   CALENDARIO PAGE
═══════════════════════════════════════════════ */
.pg-calendario-hero {
  background: var(--black);
  background-size: cover;
  background-position: center 45%;
  padding: 4rem 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.pg-calendario-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 20, 12, .85) 0%, rgba(8, 20, 12, .7) 70%, var(--bg) 100%);
}

.pg-calendario-hero>* {
  position: relative;
  z-index: 1;
}

.calendario-hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.calendario-hero-top h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  color: #fff;
  line-height: .9;
}

.calendario-hero-top h1 span {
  color: #4ADE80;
}

.temporada-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(74, 222, 128, .12);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, .25);
  padding: 8px 18px;
  border-radius: var(--r);
}

/* Calendar filter tabs */
.calendario-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 20, 12, .6);
}

.calendario-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 1.25rem;
  color: rgba(255, 255, 255, .4);
  border-bottom: 2px solid transparent;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.calendario-tab:hover {
  color: rgba(255, 255, 255, .75);
}

.calendario-tab.active {
  color: #4ADE80;
  border-bottom-color: #4ADE80;
}

/* Calendar body */
.calendario-body {
  padding: 3rem 2.5rem;
  background: var(--bg2);
}

.calendario-month {
  margin-bottom: 3rem;
}

.month-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.month-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--black);
  letter-spacing: .04em;
}

.month-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.month-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-l);
}

/* Calendar event row — richer than schedule */
.cal-event {
  background: var(--bg);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 72px 200px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  margin-bottom: 8px;
  transition: all .22s;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--sh);
}

.cal-event:hover {
  border-left-color: var(--g);
  box-shadow: var(--sh-hover);
  transform: translateX(3px);
}

.cal-event.featured {
  border-left-color: var(--g);
  background: var(--g-xpale);
}

.cal-date {
  text-align: center;
  background: var(--black);
  border-radius: var(--r-sm);
  padding: .5rem .4rem;
}

.cal-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.cal-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.cal-info-col {}

.cal-type-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r);
  margin-bottom: .4rem;
  display: inline-block;
}

.cal-event-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--black);
  letter-spacing: .03em;
  line-height: 1.1;
}

.cal-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cal-detail {
  font-size: 12px;
  color: var(--gray-l);
  font-family: 'Barlow Condensed', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cal-detail svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: var(--g);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.cal-aside {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}

.cal-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--g);
  line-height: 1;
}

.cal-price small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-l);
  font-weight: 400;
}

.cal-spots {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  color: var(--gray-l);
}

.cal-spots-bar {
  width: 80px;
  height: 3px;
  background: var(--bg3);
  border-radius: var(--r);
  overflow: hidden;
}

.cal-spots-fill {
  height: 100%;
  background: var(--g);
  border-radius: var(--r);
}


/* ═══════════════════════════════════════════════
   TYPOGRAPHY FIX — tamaños legibles
═══════════════════════════════════════════════ */

/* Base */
body {
  font-size: 17px;
}

p {
  font-size: 17px;
  line-height: 1.75;
}

/* Sección descripción */
.section-desc {
  font-size: 17px;
  max-width: 580px;
}

/* Textos de cards y descripcion */
.step-desc {
  font-size: 16px;
  line-height: 1.65;
}

.hc-desc {
  font-size: 15px;
  line-height: 1.6;
}

.why-text p {
  font-size: 15px;
  line-height: 1.65;
}

/* Filas de info en torneo destacado */
.tf-row {
  font-size: 15px;
}

.tf-row .fl {
  font-size: 14px;
}

/* Chips de meta-info */
.chip {
  font-size: 13px;
}

/* Título de card compacta */
.tc-title {
  font-size: 22px;
}

.tc-meta {
  font-size: 13px;
}

.tc-spots {
  font-size: 12px;
}

.tc-price {
  font-size: 24px;
}

.tc-price small {
  font-size: 11px;
}

/* Calendario */
.cal-detail {
  font-size: 14px;
}

.cal-spots {
  font-size: 12px;
}

.cal-event-name {
  font-size: 22px;
}

.cal-price {
  font-size: 28px;
}

.cal-price small {
  font-size: 11px;
}

/* Nosotros */
.mission-left p {
  font-size: 16px;
  line-height: 1.8;
}

.mission-left blockquote {
  font-size: 19px;
}

.value-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
}

.value-text h4 {
  font-size: 15px;
}

.historia-content p {
  font-size: 15px;
  line-height: 1.7;
}

.historia-content h4 {
  font-size: 16px;
}

.nos-num .l {
  font-size: 13px;
  letter-spacing: .12em;
}

/* Categorías handicap en sidebar */
.hc-name {
  font-size: 14px;
}

/* Schedule en front-page */
.sched-name {
  font-size: 20px;
}

.sched-loc {
  font-size: 13px;
}

.sched-price .amount {
  font-size: 22px;
}

.sched-price .per {
  font-size: 12px;
}

/* Cat pills sidebar */
.cat-pill {
  font-size: 14px;
  padding: .7rem 1rem;
}

.cat-pill .count {
  font-size: 12px;
}

/* Sidebar section title */
.sidebar-title {
  font-size: 12px;
  letter-spacing: .18em;
  margin-bottom: 1.1rem;
}

/* Why text */
.why-float .wf-txt {
  font-size: 12px;
}

/* Topbar */
.tb-ticker-item {
  font-size: 12px;
}

.tb-left a {
  font-size: 12px;
}

.tb-live {
  font-size: 12px;
}

/* Nav */
#site-navigation ul li a {
  font-size: 13px;
}

/* Hero desc */
.hero-desc {
  font-size: 17px;
}

/* Testimonials */
.t-quote {
  font-size: 16px;
}

.t-name {
  font-size: 14px;
}

/* ═══════════════════════════════════════════════
   SIDEBAR COUNTDOWN — fix empalme
═══════════════════════════════════════════════ */

/* Contenedor del próximo torneo */
.sidebar-next {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.sn-name {
  font-size: 20px;
  line-height: 1.15;
  margin: 0;
}

.sn-loc {
  font-size: 13px;
}

.sn-label {
  font-size: 11px;
}

/* Countdown — corregir empalme */
.sidebar-cd {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, .2);
  border-radius: var(--r-sm);
  padding: .75rem .5rem;
  margin: .25rem 0;
}

.scd-item {
  background: transparent;
  border-radius: 0;
  padding: .25rem;
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.scd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #4ADE80;
  line-height: 1;
  display: block;
}

.scd-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  display: block;
  line-height: 1;
}

.scd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: rgba(255, 255, 255, .2);
  text-align: center;
  align-self: center;
  padding: 0;
  line-height: 1;
  margin-bottom: 14px;
  /* alinea con números, no labels */
}

/* ═══════════════════════════════════════════════
   RESPONSIVE typography — móvil
═══════════════════════════════════════════════ */
@media (max-width:768px) {
  body {
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }

  .section-desc {
    font-size: 16px;
  }

  .sidebar-cd {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
}

/* ═══════════════════════════════════════════════
   FONT SWITCH — Plus Jakarta Sans (más rellena)
═══════════════════════════════════════════════ */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Eliminar font-weight:300 (demasiado delgado) en todo */
p,
.section-desc,
.hero-desc,
.step-desc,
.hc-desc,
.why-text p,
.mission-left p,
.value-text p,
.historia-content p,
.footer-desc,
.nosotros-hero-inner p,
.torneos-hero-desc,
.tf-row .fl,
.sidebar-next .sn-loc,
.cal-detail,
.pg-cta-left p {
  font-weight: 400;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Labels y meta — Barlow Condensed sigue para tags/badges */
.u-label,
.pg-label,
.pg-filter-btn,
.torneos-filter-tab,
.calendario-tab,
.cat-pill,
.sidebar-title,
.sched-month,
.scd-lbl,
.tb-left a,
.tb-live,
.tb-ticker-item,
.hero-eyebrow,
.data-line,
.pg-cat-badge,
.wc-badge,
.tc-badge,
.price-lbl,
.pg-price-label,
.spots-text,
.tc-spots,
.cal-spots,
.hdr-cart {
  font-family: 'Barlow Condensed', sans-serif;
}

/* Descripciones de sección — más peso */
.section-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
}

.step-desc {
  font-size: 16px;
  font-weight: 400;
}

.hc-desc {
  font-size: 15px;
  font-weight: 400;
}

.why-text p {
  font-size: 15px;
  font-weight: 400;
}

.mission-left p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.value-text p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
}

.historia-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.footer-desc {
  font-size: 14px;
  font-weight: 400;
}

.nosotros-hero-inner p {
  font-size: 17px;
  font-weight: 400;
}

.torneos-hero-desc {
  font-size: 17px;
  font-weight: 400;
}

.pg-cta-left p {
  font-size: 16px;
  font-weight: 400;
}

/* Card body text */
.tf-row {
  font-size: 15px;
  font-weight: 400;
}

.tc-meta {
  font-size: 13px;
  font-weight: 500;
}

.cal-detail {
  font-size: 14px;
  font-weight: 400;
}

/* Trust badge, acciones */
.hero-actions .trust {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
}

/* Por qué texto */
.why-text h4 {
  font-size: 14px;
  font-weight: 700;
}

/* Nosotros valores */
.value-text h4 {
  font-size: 15px;
  font-weight: 700;
}

.historia-content h4 {
  font-size: 16px;
  font-weight: 700;
}

/* Buttons */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
}


/* ═══════════════════════════════════════════════
   FONT SYSTEM — LIV Golf style
   Oswald (bold condensed) para títulos
   DM Sans (clean grotesque) para cuerpo
   Barlow Condensed para etiquetas/badges
═══════════════════════════════════════════════ */

/* Variables de fuente */
:root {
  --font-display: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
}

/* Base */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Todos los headings → Oswald */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-h1,
.section-title,
.product-title-link,
.tf-title,
.tc-title,
.cal-event-name,
.sched-name,
.sn-name,
.cta-event,
.step-title,
.hc-range,
.hc-name,
.nosotros-hero-inner h1,
.mission-left h2,
.mission-right h3,
.historia-year,
.campo-name,
.torneos-hero h1,
.calendario-hero-top h1,
.hero-cta-box .cta-event,
.why-content h2,
.pg-cta-left h2,
.nosotros-numbers .nos-num .n,
.cta-stat-n,
.hero-stat .n,
.torneos-stat .n,
.scd-num,
.tf-price,
.tc-price,
.cal-price,
.sched-price .amount,
.footer-logo .site-name,
.site-name,
.tf-foot .tf-price {
  font-family: var(--font-display) !important;
  letter-spacing: .03em;
}

/* Oswald tiene su propio line-height */
.hero-h1 {
  font-size: clamp(64px, 9.5vw, 130px);
  line-height: .92;
  font-weight: 700;
}

.section-title {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: .95;
  font-weight: 700;
}

.tf-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.tc-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.cal-event-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.sched-name {
  font-size: 20px;
  font-weight: 700;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
}

.hc-range {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
}

.sn-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.cta-stat-n {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.hero-stat .n {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.torneos-stat .n {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.scd-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.tf-price {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.tc-price {
  font-size: 24px;
  font-weight: 700;
}

.cal-price {
  font-size: 26px;
  font-weight: 700;
}

.sched-price .amount {
  font-size: 22px;
  font-weight: 700;
}

.site-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .06em;
}

/* Nav links → DM Sans semibold */
#site-navigation ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: none;
}

/* Body text → DM Sans */
p,
.section-desc,
.hero-desc,
.step-desc,
.hc-desc,
.why-text p,
.mission-left p,
.value-text p,
.historia-content p,
.footer-desc,
.nosotros-hero-inner p,
.torneos-hero-desc,
.pg-cta-left p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

/* Labels/badges/filtros → Barlow Condensed */
.u-label,
.pg-label,
.pg-filter-btn,
.torneos-filter-tab,
.calendario-tab,
.cat-pill,
.sidebar-title,
.sched-month,
.scd-lbl,
.tb-left a,
.tb-live,
.tb-ticker-item,
.hero-eyebrow,
.pg-cat-badge,
.wc-badge,
.tc-badge,
.price-lbl,
.spots-text,
.tc-spots,
.cal-spots,
.hdr-cart,
.btn,
.data-line span,
.product-cat-label,
.tc-cat,
.hc-name,
.torneos-hero-label,
.value-text h4,
.historia-content h4,
.sidebar-title,
.sn-label,
.campo-city,
.nos-num .l {
  font-family: var(--font-label);
}

/* Botones → Barlow Condensed bold */
.btn {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   SIDEBAR PRICE FIX — corrige empalme en eventos
═══════════════════════════════════════════════ */

/* El precio en el sidebar del hero */
.hero-event-price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--g);
  text-align: right;
  max-width: 90px;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}

.hero-event-price small {
  display: block;
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-l);
  font-weight: 400;
  margin-top: 2px;
  white-space: nowrap;
}

/* Evitar que el nombre del evento sea aplastado */
.hero-event {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: .85rem;
}

.hero-event-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-event-meta {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--gray-l);
  letter-spacing: .04em;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ═══════════════════════════════════════════════
   SIDEBAR TOGGLE — colapsable
═══════════════════════════════════════════════ */
/* sidebar toggle moved to bottom of file */

/* Hero collapsed state — simple display toggle */
.pg-hero {
  transition: none;
}

.hero-right {
  transition: opacity .25s ease;
}

.pg-hero.sidebar-hidden {
  grid-template-columns: 1fr;
}

.pg-hero.sidebar-hidden .hero-right {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.pg-hero.sidebar-hidden .hero-stats-bar {
  right: 0;
}

/* Toggle button — inside hero-right header */
.sidebar-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  padding: 5px 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: all .2s;
}

.sidebar-toggle:hover {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

/* Show button tab on right edge */
.sidebar-show {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--g);
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 16px 9px;
  cursor: pointer;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  box-shadow: -4px 0 16px rgba(0, 0, 0, .2);
  transition: background .2s;
  z-index: 5;
}

.sidebar-show svg {
  writing-mode: horizontal-tb;
  margin-bottom: 4px;
}

.sidebar-show:hover {
  background: var(--g-mid);
}

/* ═══════════════════════════════════════════════
   MOBILE — max 480px (phones)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Header ── */
  #pg-header { padding: 0 1.1rem; }

  /* ── Sections ── */
  section { padding: 2.5rem 1.1rem; }
  .section-header { margin-bottom: 1.75rem; }
  .data-line { margin-bottom: 1.25rem; }
  .section-title { font-size: clamp(26px, 8.5vw, 44px); }
  .section-desc { font-size: 15px; max-width: 100%; }

  /* ── Hero ── */
  /* Sin padding-bottom grande: la stats bar ya no es absoluta */
  .hero-left { padding: 2.5rem 1.1rem 2.5rem; }
  .hero-h1 { font-size: clamp(42px, 12vw, 60px); }
  .hero-desc { font-size: 15px; }

  /* Stats bar: sacar del flujo absoluto y mostrar debajo del hero */
  .hero-stats-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat { padding: 1rem 1.25rem; }
  .hero-stat .n { font-size: 26px; line-height: 1; }
  .hero-stat .d {
    font-size: 9.5px;
    letter-spacing: .05em;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
    margin-top: 3px;
  }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .hero-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); border-right: none; }

  /* ── Filters: scroll horizontal ── */
  .pg-shop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 1.5rem;
  }
  .pg-shop-filters::-webkit-scrollbar { display: none; }
  .pg-filter-btn { flex-shrink: 0; padding: 8px 16px; }

  /* ── Product cards ── */
  .product-footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .product-footer-row .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ── Schedule ── */
  .sched-item { padding: .9rem 1.1rem; gap: .75rem; }
  .sched-name { font-size: 13px; }
  .sched-loc { font-size: 11px; }

  /* ── Handicap / How cards ── */
  .hc-card { padding: 1.25rem; }
  .hc-range { font-size: 40px; }
  .how-step { padding: 1.5rem 1.25rem; }
  .step-num { font-size: 48px; }

  /* ── Why section ── */
  .why-inner { padding: 2.5rem 1.1rem; }
  .why-content h2 { font-size: clamp(26px, 8vw, 44px); }

  /* ── CTA ── */
  .pg-cta-left { padding: 2.5rem 1.1rem; }
  .pg-cta-left h2 { font-size: clamp(26px, 8vw, 44px); }
  .pg-cta-actions { flex-direction: column; gap: 8px; }
  .pg-cta-actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* ── Footer ── */
  .footer-top { padding: 2.5rem 1.1rem 1.5rem; }
  .footer-bottom {
    padding: 1rem 1.1rem;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* ── Mobile nav overlay ── */
  #site-navigation.open { top: 66px; padding: 1.25rem 1.1rem; }

  /* ── Front-page modal ── */
  .pg-modal-inner { padding: 1.5rem 1.1rem !important; }
  .pg-modal-title { font-size: 20px !important; }
}

/* ═══════════════════════════════════════════════
   MOBILE — max 380px (phones muy pequeños)
═══════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-stat .n { font-size: 20px; }
  .hero-stat { padding: .6rem .7rem; }
  .section-title { font-size: clamp(24px, 9vw, 40px); }
  .torneo-title { font-size: clamp(28px, 10vw, 48px) !important; }
}