/* ============================================
   C.D. QUINTOS 2011 — ALIANZA ESTRATÉGICA 26/27
   Design System: "Velocity Professionalism"
   ============================================ */

/* ---------- RESET & VARIABLES ---------- */
:root {
  --black: #0A0C10;
  --red: #E62D42;
  --navy: #1A2B48;
  --white: #F8F9FA;
  --green: #2A8B4A;
  --muted: rgba(248, 249, 250, 0.5);
  --border: rgba(255, 255, 255, 0.05);
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body { overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- HELPERS ---------- */
.desktop-only { display: none; }
.mobile-only { display: block; }
.hidden { display: none !important; }

@media (min-width: 1024px) {
  .desktop-only { display: flex; }
  .mobile-only { display: none; }
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
  position: relative;
  z-index: 10;
}

.section-bg-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.section-bg-text.right { left: auto; right: 0; }
.section-bg-text.left { left: 0; right: auto; }

.section-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title span { color: var(--red); }

.section-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 4rem;
}

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  min-height: 48px;
}
.btn-primary:hover { background: rgba(230, 45, 66, 0.9); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  min-height: 48px;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.5s, backdrop-filter 0.5s;
}
#navbar.scrolled {
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) { .nav-container { height: 5rem; } }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  padding: 0.5rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--red); }

.nav-cta {
  display: none;
  padding: 0.625rem 1.25rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.nav-cta:hover { background: rgba(230, 45, 66, 0.9); }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--red); }
.nav-cta-mobile {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black), rgba(10,12,16,0.85), rgba(10,12,16,0.4));
}
.hero-bottom-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-watermark {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(6rem, 20vw, 16rem);
  font-weight: 900; color: rgba(255,255,255,0.03); pointer-events: none; user-select: none;
  line-height: 1;
}

.hero-pitch-line {
  display: none;
  position: absolute; left: 2rem; top: 6rem; bottom: 6rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(230,45,66,0.3), transparent);
}
@media (min-width: 1024px) { .hero-pitch-line { display: block; } }

.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto;
  padding: 6rem clamp(1rem, 5vw, 2rem) 4rem;
}
@media (min-width: 1024px) { .hero-content { padding-top: 8rem; padding-bottom: 4rem; } }

.hero-tag {
  font-family: var(--font-display); font-size: clamp(0.625rem, 1.5vw, 0.875rem);
  letter-spacing: 0.3em; color: var(--red); font-weight: 600; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900; color: var(--white); line-height: 0.9;
  letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 1.5rem;
  max-width: 48rem;
}
.hero-title span { color: var(--red); }

.hero-quote {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.6);
  font-style: italic; max-width: 36rem; margin-bottom: 1rem; line-height: 1.4;
}

.hero-clubs {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem;
  font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.hero-divider { width: 2rem; height: 1px; background: var(--red); }

.hero-actions {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.hero-stat {
  background: rgba(10,12,16,0.6); backdrop-filter: blur(10px);
  padding: 1.5rem 1rem; text-align: center;
}
.hero-stat-value {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; color: var(--red);
}
.hero-stat-label {
  display: block; margin-top: 0.25rem; font-size: clamp(0.625rem, 1vw, 0.875rem);
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em;
}

.hero-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

/* ---------- SECTIONS ---------- */
#pipeline, #premium, #content, #tiers, #timeline, #contact {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  background: var(--black);
}

/* ---------- PIPELINE ---------- */
.pipeline-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .pipeline-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
}

.pipeline-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, rgba(26,43,72,0.3), transparent);
  border: 1px solid var(--navy);
}
.pipeline-card.quintos {
  background: linear-gradient(135deg, rgba(230,45,66,0.1), transparent);
  border-color: rgba(230,45,66,0.3);
}

.pipeline-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.pipeline-card-accent.blue { background: var(--navy); }
.pipeline-card-accent.red { background: var(--red); }

.pipeline-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

.pipeline-card h3 {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700; color: var(--white); text-transform: uppercase; margin-bottom: 0.5rem;
}
.pipeline-location {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--red); font-weight: 600; text-transform: uppercase; margin-bottom: 1.5rem;
}
.pipeline-desc {
  font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 2rem;
}
.pipeline-stat span:first-child {
  display: block; font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--white);
}
.pipeline-stat span:last-child {
  font-size: 0.875rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em;
}

.pipeline-arrow {
  flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 0 2rem;
}
.arrow-line.top { width: 1px; height: 4rem; background: linear-gradient(to bottom, transparent, rgba(230,45,66,0.5)); }
.arrow-line.bottom { width: 1px; height: 4rem; background: linear-gradient(to bottom, rgba(230,45,66,0.5), transparent); }
.arrow-circle {
  width: 3rem; height: 3rem; border-radius: 50%; border: 2px solid rgba(230,45,66,0.5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.arrow-circle.rot90 { transform: rotate(90deg); }
.arrow-label {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--red); font-weight: 600; text-transform: uppercase; white-space: nowrap;
}

.pipeline-arrow-mobile {
  display: flex; justify-content: center; margin: 0.5rem 0;
}

.result-banner {
  padding: 1.5rem;
  background: rgba(26,43,72,0.4);
  border-left: 4px solid var(--red);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.result-banner strong { color: var(--red); }

/* ---------- PREMIUM ---------- */
#premium { background: none; }

.premium-bg { position: absolute; inset: 0; }
.premium-bg img { width: 100%; height: 100%; object-fit: cover; }
.premium-overlay { position: absolute; inset: 0; background: rgba(10,12,16,0.9); }

.premium-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .premium-grid { grid-template-columns: 1fr 1fr; } }

.premium-sub {
  font-family: var(--font-display); font-size: 1.125rem; color: var(--muted); margin-bottom: 2rem;
}
.premium-highlight {
  font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 1.5rem;
}
.premium-highlight span { color: var(--red); }

.premium-features {
  display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem;
}
.premium-feature {
  display: flex; gap: 1rem;
}
.feat-dot {
  width: 0.5rem; height: 0.5rem; background: var(--red); margin-top: 0.5rem; flex-shrink: 0;
}
.premium-feature div strong {
  font-size: 0.875rem; color: var(--white); margin-bottom: 0.25rem; display: block;
}
.premium-feature div p {
  font-size: 0.875rem; color: var(--muted); line-height: 1.5;
}
.premium-note {
  font-size: 0.875rem; color: rgba(230,45,66,0.8); font-style: italic;
}

.premium-stats {
  display: flex; flex-direction: column; gap: 1.5rem;
}

.premium-stat-card {
  position: relative; padding: 1.5rem;
  background: rgba(10,12,16,0.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.5s;
}
.premium-stat-card:hover { border-color: rgba(230,45,66,0.3); }
.psc-accent {
  position: absolute; top: 0; right: 0; width: 4rem; height: 4rem;
  background: rgba(230,45,66,0.05); transition: background 0.5s;
}
.premium-stat-card:hover .psc-accent { background: rgba(230,45,66,0.1); }
.psc-icon { font-size: 1.75rem; }
.psc-label {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--red); font-weight: 600; text-transform: uppercase; margin-bottom: 0.25rem;
}
.psc-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--white); }
.psc-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

/* ---------- CONTENIDO ---------- */
#content { background: none; }
.content-bg { position: absolute; inset: 0; }
.content-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.content-overlay { position: absolute; inset: 0; background: rgba(10,12,16,0.95); }

.content-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .content-grid { grid-template-columns: repeat(3, 1fr); } }

.content-card {
  position: relative; padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(10,12,16,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); transition: border-color 0.5s;
}
.content-card:hover { border-color: rgba(230,45,66,0.3); }
.cc-top-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(to right, rgba(230,45,66,0.5), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.content-card:hover .cc-top-line { opacity: 1; }
.cc-icon { font-size: 2.5rem; display: block; margin-bottom: 1.5rem; }
.content-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--white); text-transform: uppercase; margin-bottom: 0.5rem; line-height: 1.2;
}
.cc-platform {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--red); font-weight: 600; text-transform: uppercase; margin-bottom: 1.5rem;
}
.cc-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.cc-brand { font-size: 0.875rem; color: rgba(255,255,255,0.7); font-style: italic; }

/* ---------- TIERS ---------- */
.tiers-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .tiers-grid { grid-template-columns: repeat(3, 1fr); } }

.tier-card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(10,12,16,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); transition: all 0.5s;
}
.tier-card.recommended { border-color: rgba(230,45,66,0.5); }
.tier-card:hover { transform: translateY(-4px); }
.tier-card.recommended:hover { border-color: rgba(230,45,66,0.5); }
.tier-card:not(.recommended):hover { border-color: rgba(255,255,255,0.15); }

.tier-badge {
  position: absolute; top: -0.75rem; left: 2rem;
  padding: 0.25rem 0.75rem; background: var(--red);
  color: var(--white); font-family: var(--font-display);
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}

.tier-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.tier-accent.red { background: var(--red); }
.tier-accent.navy { background: var(--navy); }
.tier-accent.green { background: var(--green); }

.tier-price {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}
.tier-price span {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--white);
}
.tier-price p {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: rgba(255,255,255,0.3); margin-left: 0.25rem; display: inline;
}

.tier-name {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 1.5rem; line-height: 1.2;
}
.tier-name.red { color: var(--red); }
.tier-name.navy { color: var(--navy); }
.tier-name.green { color: var(--green); }

.tier-features {
  list-style: none; display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2rem; flex: 1;
}
.tier-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.tier-features li svg { margin-top: 0.125rem; flex-shrink: 0; }

.tier-roi {
  padding: 1rem; background: rgba(255,255,255,0.03); border-top: 1px solid var(--border);
  margin: 0 -2rem -2rem; padding: 1.5rem 2rem; margin-top: auto;
  font-size: 0.875rem; color: rgba(255,255,255,0.6); font-style: italic;
}
.tier-roi span { font-weight: 700; color: var(--red); }

.btn-tier-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; background: var(--red); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-top: 1.5rem;
  transition: background 0.3s; min-height: 48px;
}
.btn-tier-primary:hover { background: rgba(230,45,66,0.9); }

.btn-tier-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-top: 1.5rem;
  transition: all 0.3s; min-height: 48px;
}
.btn-tier-outline:hover { border-color: var(--red); color: var(--red); }

/* ---------- TIMELINE ---------- */
.timeline-wrapper { position: relative; }

.timeline-line {
  position: absolute; top: 1.5rem; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, var(--navy), var(--red), var(--green));
}

.timeline-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 1024px) { .timeline-grid { grid-template-columns: repeat(3, 1fr); } }

.timeline-card { position: relative; }

.tl-dot {
  align-items: center; justify-content: center; margin-bottom: 2rem;
}
.tl-dot::before {
  content: ''; width: 0.75rem; height: 0.75rem; border-radius: 50%; position: relative; z-index: 10;
}
.tl-dot.blue::before { background: var(--navy); }
.tl-dot.red\:bg::before,
.tl-dot.red-bg::before { background: var(--red); }
.tl-dot.green\:bg::before,
.tl-dot.green-bg::before { background: var(--green); }

@media (max-width: 1023px) {
  .tl-accent {
    position: absolute; top: 0; left: 0; width: 0.25rem; height: 100%;
  }
}
@media (min-width: 1024px) {
  .tl-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 0.25rem;
  }
}

.tl-accent.blue-bg { background: var(--navy); }
.tl-accent.red-bg { background: var(--red); }
.tl-accent.green-bg { background: var(--green); }

.tl-content {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(10,12,16,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); transition: border-color 0.5s;
}
.timeline-card:hover .tl-content { border-color: rgba(255,255,255,0.1); }

.tl-phase {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
  display: block; margin-bottom: 0.75rem;
}
.tl-phase.blue-text { color: var(--navy); }
.tl-phase.red-text { color: var(--red); }
.tl-phase.green-text { color: var(--green); }

.tl-period {
  display: inline-block; padding: 0.25rem 0.75rem; background: rgba(255,255,255,0.05);
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 1rem;
}

.tl-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.tl-content li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--muted); line-height: 1.5;
}
.tl-bullet { width: 0.375rem; height: 0.375rem; margin-top: 0.5rem; flex-shrink: 0; }
.tl-bullet.blue\3Abg { background: var(--navy); }

/* ---------- CONTACTO ---------- */
.contact-grid {
  display: grid; gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-intro {
  font-size: 1.125rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.5rem;
}
.contact-offer {
  font-size: 1rem; color: var(--muted); line-height: 1.6; margin-bottom: 3rem;
}

.contact-cards {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.contact-card > span:first-child { font-size: 1.5rem; }
.contact-card p { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.contact-card a {
  font-size: 1rem; color: var(--white); transition: color 0.3s;
}
.contact-card a:hover { color: var(--red); }
.contact-card-value { font-size: 1rem; color: var(--white); }

.contact-form-wrapper {
  background: rgba(10,12,16,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--white); text-transform: uppercase; margin-bottom: 0.5rem;
}
.contact-form > p {
  font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font-body); font-size: 0.875rem;
  outline: none; transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F8F9FA' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-group select option { background: var(--black); color: var(--white); }

.form-row {
  display: grid; gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group textarea { resize: none; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; height: 4px;
  background: rgba(255,255,255,0.1); border: none; padding: 0; cursor: pointer;
  accent-color: var(--red);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px; background: var(--red); cursor: pointer;
}
.budget-label { font-size: 0.875rem; color: var(--red); margin-top: 0.5rem; }

.btn-submit {
  width: 100%; padding: 1rem; background: var(--red); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.3s; min-height: 48px;
}
.btn-submit:hover { background: rgba(230,45,66,0.9); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem 2rem; text-align: center; height: 100%;
}
.form-success span { font-size: 3rem; margin-bottom: 1.5rem; }
.form-success h3 {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 900;
  color: var(--white); text-transform: uppercase; margin-bottom: 1rem;
}
.form-success p { font-size: 1rem; color: rgba(255,255,255,0.6); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--black); border-top: 1px solid var(--border);
}
.footer-container {
  max-width: 1280px; margin: 0 auto;
  padding: 3rem clamp(1rem, 5vw, 2rem);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
@media (min-width: 768px) { .footer-container { flex-direction: row; justify-content: space-between; } }

.footer-clubs { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-and { color: rgba(255,255,255,0.2); }
.footer-tags {
  display: flex; align-items: center; gap: 1.5rem;
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
}
.footer-sep { width: 1px; height: 1rem; background: rgba(255,255,255,0.1); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-line {
  height: 1px; background: linear-gradient(to right, transparent, var(--red), transparent);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 639px) {
  .hero-watermark { display: none; }
  .section-bg-text { font-size: 3rem; opacity: 0.04; }
}
