/* ==========================================================================
   COPA TAILHADE 54ª EDICIÓN — PRO MAX × IMPECCABLE DESIGN SYSTEM
   UI/UX: Luxury Executive Golf Platform · Version 3.0
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =====================
   DESIGN TOKENS
   ===================== */
:root {
  /* Brand Colors */
  --green-dark:    #072314;
  --green-brand:   #0b3820;
  --green-emerald: #14532d;
  --green-accent:  #16a34a;
  --green-glass:   rgba(11, 56, 32, 0.08);

  /* Gold System */
  --gold-brand:    #c5a059;
  --gold-bright:   #d4af37;
  --gold-pale:     #e8c97a;
  --gold-muted:    rgba(197, 160, 89, 0.18);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #c5a059 50%, #b8903a 100%);
  --gold-shimmer:  linear-gradient(90deg, #d4af37 0%, #f0d060 40%, #c5a059 80%, #d4af37 100%);

  /* Backgrounds */
  --bg-base:       #f5f6f2;
  --bg-white:      #ffffff;
  --bg-offwhite:   #fafaf8;
  --bg-dark:       #05160c;
  --bg-darkest:    #030d07;

  /* Text */
  --text-dark:     #0d1a10;
  --text-body:     #2d3c32;
  --text-muted:    #5a7060;
  --text-light:    #f0f4f1;
  --text-pale:     rgba(240,244,241,0.7);

  /* Borders */
  --border-light:  #e4ebe6;
  --border-brand:  rgba(197, 160, 89, 0.3);
  --border-gold:   rgba(212, 175, 55, 0.5);
  --border-green:  rgba(11, 56, 32, 0.15);
  --border-glass:  rgba(255,255,255,0.1);

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:9999px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(7,35,20,0.04);
  --shadow-sm:   0 2px 8px rgba(7,35,20,0.07);
  --shadow-md:   0 8px 24px rgba(7,35,20,0.1), 0 2px 6px rgba(7,35,20,0.06);
  --shadow-lg:   0 20px 50px rgba(7,35,20,0.15), 0 6px 16px rgba(7,35,20,0.08);
  --shadow-xl:   0 32px 80px rgba(7,35,20,0.2), 0 12px 30px rgba(7,35,20,0.1);
  --shadow-gold: 0 8px 30px rgba(197,160,89,0.3), 0 2px 8px rgba(212,175,55,0.2);
  --shadow-glow: 0 0 40px rgba(197,160,89,0.15);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Space Grotesk', system-ui, sans-serif;
  --font-ui:      'Space Grotesk', 'DM Sans', sans-serif;

  /* Motion */
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-enter:   cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:     180ms;
  --dur-base:     280ms;
  --dur-slow:     450ms;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}

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

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

button {
  font-family: var(--font-body);
}

/* =====================
   SCROLLBAR
   ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: var(--gold-brand);
  border-radius: var(--r-pill);
}

/* =====================
   TOP ANNOUNCEMENT BAR
   ===================== */
.top-bar {
  background: var(--green-dark);
  color: var(--gold-pale);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-brand);
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.04) 50%, transparent 100%);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

/* =====================
   HEADER & NAVBAR
   ===================== */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-xs);
  transition: background var(--dur-base) var(--ease-smooth),
              box-shadow var(--dur-base) var(--ease-smooth);
}

.header-nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--dur-base) var(--ease-spring);
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-family: var(--font-ui);
  color: var(--text-body);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: all var(--dur-fast) var(--ease-smooth);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-brand);
  border-radius: var(--r-pill);
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease-spring);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-brand);
  background: var(--green-glass);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 24px);
}

.nav-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-shrink: 0;
}

/* =====================
   BUTTON SYSTEM
   ===================== */
.btn-cta-header {
  background: var(--green-brand);
  color: var(--bg-white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.825rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

.btn-cta-header:hover {
  background: var(--green-emerald);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11,56,32,0.3);
}

.btn-gold-header {
  background: var(--gold-gradient);
  color: var(--green-dark);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.825rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-smooth);
  letter-spacing: 0.02em;
}

.btn-gold-header:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-primary-gold {
  background: var(--gold-gradient);
  color: var(--green-dark);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-smooth);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(197,160,89,0.4);
}

.btn-primary-gold:hover::before {
  opacity: 1;
}

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-smooth);
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

.btn-qr-demo {
  background: var(--gold-gradient);
  color: var(--green-dark);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-smooth);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-qr-demo:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* =====================
   HERO SECTION
   ===================== */
.hero-wrapper {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg,
      rgba(3,13,7,0.96) 0%,
      rgba(7,35,20,0.88) 45%,
      rgba(11,56,32,0.75) 100%);
  z-index: 1;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/lagartos_panoramic.png');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

/* Subtle grain overlay */
.hero-wrapper > * {
  position: relative;
  z-index: 2;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem;
  }
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  color: var(--bg-white);
  margin-bottom: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-left h1 span {
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-left p.lead {
  font-size: 1.1rem;
  color: rgba(224,236,228,0.85);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 560px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Fact Card */
.hero-fact-card {
  background: rgba(3, 13, 7, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.hero-fact-card img.hero-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1.5rem;
}

.fact-item {
  padding: 0.8rem 0.5rem;
  border-radius: var(--r-md);
  transition: background var(--dur-base) var(--ease-smooth);
}

.fact-item:hover {
  background: rgba(197,160,89,0.08);
}

.fact-item h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-pale);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.fact-item p {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(148,163,184,0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* =====================
   SECTION SYSTEM
   ===================== */
.section {
  padding: 5.5rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-muted);
  color: var(--green-brand);
  border: 1px solid var(--border-brand);
  padding: 0.35rem 1.1rem;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold-brand);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--green-brand);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
}

/* =====================
   GALLERY / VENUE
   ===================== */
.gallery-section {
  background: var(--bg-white);
  padding: 5.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.gallery-container {
  max-width: 1320px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 260px;
  border: 1px solid var(--border-light);
  transition: all var(--dur-slow) var(--ease-smooth);
  box-shadow: var(--shadow-sm);
}

.gallery-item:first-child {
  grid-column: span 2;
  height: 320px;
}

@media (max-width: 1024px) {
  .gallery-item:first-child {
    grid-column: span 1;
    height: 260px;
  }
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-brand);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(3,13,7,0.95) 0%, rgba(3,13,7,0.5) 60%, transparent 100%);
  color: #fff;
  padding: 2rem 1.4rem 1.2rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  transform: translateY(4px);
  transition: transform var(--dur-base) var(--ease-smooth);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-pale);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* =====================
   PGA HALL OF FAME
   ===================== */
.pga-section {
  background: linear-gradient(180deg, var(--bg-offwhite) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 4rem 2rem;
  overflow: hidden;
}

.pga-container {
  max-width: 1320px;
  margin: 0 auto;
}

.pga-header {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-brand);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pga-header::before,
.pga-header::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-brand));
}

.pga-header::after {
  background: linear-gradient(90deg, var(--border-brand), transparent);
}

.pga-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .pga-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .pga-grid { grid-template-columns: repeat(2, 1fr); }
}

.pga-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: all var(--dur-base) var(--ease-spring);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.pga-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-spring);
}

.pga-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pga-card:hover::before {
  transform: scaleX(1);
}

.pga-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-brand);
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.pga-card span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.5;
  font-weight: 500;
}

/* =====================
   ZONE FILTER TABS
   ===================== */
.zone-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.zone-tab-btn {
  background: var(--bg-white);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.65rem 1.4rem;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-smooth);
  letter-spacing: 0.02em;
}

.zone-tab-btn:hover {
  border-color: var(--border-brand);
  color: var(--green-brand);
  background: var(--gold-muted);
}

.zone-tab-btn.active {
  background: var(--green-brand);
  color: var(--bg-white);
  border-color: var(--green-brand);
  box-shadow: 0 4px 14px rgba(11,56,32,0.25);
}

/* =====================
   ACTIVATION CARDS
   ===================== */
.activations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.act-structured-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-slow) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.act-structured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

.act-structured-card:hover {
  border-color: rgba(197,160,89,0.4);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-4px);
}

.act-structured-card:hover::before {
  transform: scaleX(1);
}

.act-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.act-zone-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-brand);
  text-transform: uppercase;
  background: var(--green-glass);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-green);
  white-space: nowrap;
}

.act-sponsor-tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-brand);
  text-align: right;
  flex-shrink: 0;
}

.act-structured-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.act-body {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.act-body strong {
  color: var(--green-brand);
  font-weight: 700;
}

.act-detail-box {
  background: linear-gradient(135deg, rgba(197,160,89,0.06) 0%, rgba(11,56,32,0.04) 100%);
  border: 1px solid var(--border-brand);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.act-detail-box strong {
  color: var(--gold-brand);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}

.act-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-light);
  gap: 0.5rem;
}

/* =====================
   CORPORATE / SCRAMBLE
   ===================== */
.corporate-section {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  padding: 6rem 2rem;
}

.corporate-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/lagartos_stream.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.corporate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(3,13,7,0.97) 0%,
    rgba(7,35,20,0.92) 50%,
    rgba(11,56,32,0.85) 100%
  );
  z-index: 0;
}

.corporate-section > * {
  position: relative;
  z-index: 1;
}

.corp-container {
  max-width: 1320px;
  margin: 0 auto;
}

.corp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.corp-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.corp-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 850px) {
  .corp-rules-grid { grid-template-columns: 1fr; }
}

.rule-card {
  background: rgba(3, 13, 7, 0.7);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--r-xl);
  padding: 2rem;
  backdrop-filter: blur(16px);
  transition: all var(--dur-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.4), transparent);
}

.rule-card:hover {
  border-color: var(--border-brand);
  background: rgba(3, 13, 7, 0.85);
  transform: translateY(-2px);
}

.rule-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: rgba(212, 175, 55, 0.35);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rule-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bg-white);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.rule-card p {
  font-size: 0.9rem;
  color: rgba(203,213,225,0.85);
  line-height: 1.65;
}

.corp-holes-table {
  background: rgba(3, 13, 7, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(16px);
}

.corp-holes-table h3 {
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.table-responsive {
  overflow-x: auto;
  border-radius: var(--r-md);
}

table.structured-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  font-family: var(--font-ui);
}

table.structured-table th {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-pale);
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(197,160,89,0.2);
  text-transform: uppercase;
}

table.structured-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(226,232,240,0.9);
  vertical-align: top;
}

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

table.structured-table tbody tr:hover td {
  background: rgba(197,160,89,0.04);
}

/* =====================
   ESPN SECTION
   ===================== */
.espn-section {
  background: var(--bg-white);
  padding: 5.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.espn-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.espn-card {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--dur-slow) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.espn-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(220,38,38,0.06) 0%, transparent 70%);
}

.espn-card:hover {
  border-color: rgba(220,38,38,0.25);
  box-shadow: var(--shadow-md), 0 0 30px rgba(220,38,38,0.06);
  transform: translateY(-4px);
}

.espn-episode {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.espn-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.espn-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,38,38,0.07);
  color: #dc2626;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(220,38,38,0.15);
}

.espn-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}

/* =====================
   SPONSOR PACKAGES
   ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.price-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2.2rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease-smooth);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}

.price-card.featured {
  background: var(--green-brand);
  border: 2px solid var(--gold-brand);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.price-card.featured * {
  color: var(--text-light) !important;
}

.price-card.featured .price-amount {
  color: var(--gold-pale) !important;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--green-dark);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.price-card h3 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-brand);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-slots {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin: 0.5rem 0;
}

.price-features li {
  font-size: 0.875rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.price-features li::before {
  content: '✓';
  color: var(--green-accent);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card.featured .price-features li {
  color: rgba(240,244,241,0.85);
}

.price-card.featured .price-features li::before {
  color: var(--gold-pale);
}

/* Sponsor Match Report inline */
.match-report-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.match-report-header {
  text-align: center;
  margin-bottom: 2rem;
}

.match-report-wrapper table.structured-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.match-report-wrapper table.structured-table th {
  background: var(--green-brand) !important;
  color: #ffffff !important;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1.1rem 1.25rem;
  border-bottom: 3px solid var(--gold-brand);
}

.match-report-wrapper table.structured-table td {
  color: var(--text-dark) !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  background: #ffffff;
  vertical-align: middle;
}

.match-report-wrapper table.structured-table td strong {
  color: var(--green-brand) !important;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.95rem;
}

.match-report-wrapper table.structured-table tbody tr:nth-child(even) td {
  background: #f8faf7;
}

.match-report-wrapper table.structured-table tbody tr:hover td {
  background: rgba(197, 160, 89, 0.12);
  color: var(--green-brand) !important;
}

.match-report-wrapper .score-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.15);
  color: #8b6b23;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  margin-left: 4px;
}


/* =====================
   PHOTO SHOWCASE & MEDIA BANNERS
   ===================== */
.photo-showcase-card {
  background: rgba(3, 13, 7, 0.8);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(16px);
  align-items: center;
}

@media (max-width: 850px) {
  .photo-showcase-card { grid-template-columns: 1fr; }
}

.photo-showcase-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 380px;
  object-fit: cover;
}

.photo-showcase-content {
  padding: 2.2rem;
}

.photo-showcase-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-pale);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.photo-showcase-content p {
  font-size: 0.95rem;
  color: rgba(226,232,240,0.85);
  line-height: 1.7;
}

.media-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.media-banner-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.media-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

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

.media-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,13,7,0.92) 0%, rgba(3,13,7,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  color: #ffffff;
}

.media-banner-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-pale);
  margin-bottom: 0.4rem;
}

.media-banner-overlay p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(240,244,241,0.85);
  letter-spacing: 0.5px;
}

/* =====================
   MODAL SYSTEM
   ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 13, 7, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn var(--dur-base) var(--ease-enter);
}

.modal-overlay.open {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-container {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp var(--dur-base) var(--ease-spring);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease-smooth);
  line-height: 1;
}

.modal-close-btn:hover {
  background: var(--border-light);
  color: var(--text-dark);
}

/* =====================
   FORM ELEMENTS
   ===================== */
.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-offwhite);
  transition: all var(--dur-fast) var(--ease-smooth);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--green-brand);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(11,56,32,0.08);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(197,160,89,0.15);
  padding: 4.5rem 2rem 2rem;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(148,163,184,0.8);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-brand);
  margin-bottom: 1rem;
}

.footer-col strong {
  color: var(--text-light);
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(100,116,139,0.8);
}

/* =====================
   UTILITY CLASSES
   ===================== */
.text-gold { color: var(--gold-brand); }
.text-green { color: var(--green-brand); }
.fw-800 { font-weight: 800; }

/* =====================
   SCROLL REVEAL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-enter), transform 0.6s var(--ease-enter);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE UTILITIES
   ===================== */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-actions { gap: 0.5rem; }
  .btn-cta-header, .btn-gold-header { font-size: 0.75rem; padding: 0.5rem 0.85rem; }
  .hero-left h1 { font-size: 2.6rem; }
  .activations-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .espn-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.25rem; }
  .gallery-section, .espn-section { padding: 4rem 1.25rem; }
  .corporate-section { padding: 4rem 1.25rem; }
  .hero-container { padding: 4rem 1.25rem; }
}

/* Nav scrolled state */
header.header-nav.scrolled {
  box-shadow: var(--shadow-sm);
}
