  :root {
      --cream:    #fafafa;
      --ink:      #1A1714;
      --naranja:#ed6a2f;
      --sage:     #6B7F6E;
      --warm-gray:#8E8279;
      --border:   #D9D2C7;
      --card-bg:  #FDFAF5;
      
    }

    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 1rem;
      line-height: 1.75;
      overflow-x: hidden;
    }

    /* ── TIPOGRAFÍA ── */
    .serif { font-family: "League Gothic", sans-serif; }

    h1, h2, h3, h4 {
      font-family: "League Gothic", sans-serif;;
      font-weight: 400;
      line-height: 1.15;
    }

    /* ── NAVBAR ── */
    .navbar-custom {
      background: var(--cream);
      border-bottom: 1px solid var(--border);
      padding: 1.1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(8px);
    }

    .navbar-brand-text {
      font-family: "League Gothic", sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.01em;
      text-decoration: none;
    }

    .navbar-brand-text span {
      color: var(--naranja);
    }

    .nav-link-custom {
      color: var(--warm-gray) !important;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      padding: 0.3rem 0.9rem !important;
      transition: color 0.2s;
      text-decoration: none;
    }

    .nav-link-custom:hover { color: var(--ink) !important; }

    .nav-cta {
      background: var(--ink);
      color: var(--cream) !important;
      border-radius: 100px;
      padding: 0.4rem 1.2rem !important;
      transition: background 0.2s;
    }

    .nav-cta:hover { background: var(--naranja) !important; color: var(--cream) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 5rem 0 4rem;
    }

@media (max-width: 768px) {
      .hero { 
        min-height: auto; 
        padding: 2rem 0 4rem;
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 80% 40%, rgba(184,92,56,.09) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(107,127,110,.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--naranja);
      font-weight: 500;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--naranja);
    }

    .hero-title {
      font-size: clamp(3.2rem, 7vw, 6.5rem);
      font-weight: 300;
      line-height: 1.02;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--naranja);
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--warm-gray);
      max-width: 480px;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .btn-primary-custom {
      background: var(--ink);
      color: var(--cream);
      border: none;
      border-radius: 100px;
      padding: 0.85rem 2.2rem;
      font-size: 0.82rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary-custom:hover {
      background: var(--naranja);
      color: var(--cream);
      transform: translateY(-1px);
    }

    .btn-ghost-custom {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.85rem 2rem;
      font-size: 0.82rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost-custom:hover {
      border-color: var(--ink);
      color: var(--ink);
    }

    /* Hero visual deco */
    .hero-deco {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-circle {
      width: 380px;
      height: 380px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-circle::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--naranja) 0%, #C97B5A 100%);
      opacity: 0.12;
    }

    .hero-circle-inner {
      text-align: center;
      z-index: 2;
    }

    .hero-circle-inner .big-num {
      font-family: "League Gothic", sans-serif;
      font-size: 7rem;
      font-weight: 300;
      line-height: 1;
      color: var(--naranja);
      opacity: 0.5;
    }

    .hero-circle-inner p {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--warm-gray);
      margin: 0;
    }

    .hero-stats {
      position: absolute;
      right: -20px;
      bottom: 40px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1rem 1.4rem;
      min-width: 160px;
    }

    .hero-stats .stat-num {
      font-family: "League Gothic", sans-serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1;
    }

    .hero-stats .stat-label {
      font-size: 0.72rem;
      color: var(--warm-gray);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ── DIVIDER ── */
    .section-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0;
    }

    /* ── SECCIÓN HEADER ── */
    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--warm-gray);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

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

    .section-title {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      margin-top: 0.6rem;
      letter-spacing: -0.015em;
    }

    /* ── FEATURED EPISODE ── */
    .featured-section {
      padding: 5rem 0;
    }

    .featured-card {
      background: var(--ink);
      border-radius: 24px;
      padding: 3.5rem;
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .featured-card::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -60px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--naranja) 0%, transparent 70%);
      opacity: 0.2;
    }

    .featured-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--naranja);
      color: var(--cream);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1.4rem;
    }

    .featured-ep-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .featured-ep-title em { color: #6f2e88; }

    .featured-ep-desc {
      color: rgba(245,240,232,.65);
      font-size: 0.95rem;
      max-width: 500px;
      margin-bottom: 2rem;
    }

    .ep-meta {
      display: flex;
      gap: 1.8rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .ep-meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      color: rgba(245,240,232,.55);
      letter-spacing: 0.04em;
    }

    .ep-meta-item i { color: var(--naranja); font-size: 0.9rem; }

    .player-bar {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: 1rem 1.4rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      max-width: 480px;
    }

    .play-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--naranja);
      border: none;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.15s, background 0.2s;
    }

    .play-btn:hover { transform: scale(1.06); background: #C06440; }

    .progress-area { flex: 1; }

    .progress-track {
      height: 3px;
      background: rgba(255,255,255,.15);
      border-radius: 10px;
      position: relative;
      cursor: pointer;
    }

    .progress-fill {
      height: 100%;
      background: var(--naranja);
      border-radius: 10px;
      width: 35%;
    }

    .time-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
    }

    .time-labels span {
      font-size: 0.7rem;
      color: rgba(245,240,232,.4);
    }

    /* ── EPISODIOS CARD ── */
    .episodes-section {
      padding: 5rem 0;
      background: var(--card-bg);
    }

    .ep-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.8rem;
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
      height: 100%;
    }

    .ep-card:hover {
      box-shadow: 0 8px 32px rgba(26,23,20,.07);
      transform: translateY(-3px);
      border-color: #C7BDB4;
    }

    .ep-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--border);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .ep-card-tag {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--naranja);
      font-weight: 500;
      margin-bottom: 0.6rem;
    }

    .ep-card-title {
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.7rem;
      line-height: 1.25;
    }

    .ep-card-desc {
      font-size: 0.87rem;
      color: var(--warm-gray);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

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

    .ep-card-date {
      font-size: 0.72rem;
      color: var(--warm-gray);
      letter-spacing: 0.05em;
    }

    .ep-play-mini {
      /* width: 34px;
      height: 34px; */
      border-radius: 50%;
      background: var(--ink);
      border: none;
      color: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }

    .ep-play-mini:hover { background: var(--naranja); }

    /* ── LIBROS ── */
    .books-section { padding: 5rem 0; }

    .week-label {
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--naranja);
      font-weight: 500;
      margin-bottom: 0.3rem;
    }

    .week-title {
      font-size: 1.9rem;
      font-weight: 300;
      margin-bottom: 2rem;
    }

    .book-card {
      display: flex;
      gap: 1.2rem;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.3rem;
      transition: box-shadow 0.2s, transform 0.18s;
      height: 100%;
    }

    .book-card:hover {
      box-shadow: 0 6px 24px rgba(26,23,20,.06);
      transform: translateY(-2px);
    }

    .book-cover {
      width: 62px;
      height: 90px;
      border-radius: 7px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: var(--cream);
      font-weight: 300;
    }

    .book-info { flex: 1; min-width: 0; }

    .book-genre {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--warm-gray);
      margin-bottom: 0.3rem;
    }

    .book-title {
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 0.25rem;
    }

    .book-author {
      font-size: 0.8rem;
      color: var(--warm-gray);
      font-style: italic;
      margin-bottom: 0.6rem;
    }

    .book-excerpt {
      font-size: 0.8rem;
      color: var(--warm-gray);
      line-height: 1.65;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .book-stars { color: var(--naranja); font-size: 0.75rem; letter-spacing: 0.08em; }

    /* ── WEEKLY TABS ── */
    .week-tabs {
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .week-tab {
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 0.45rem 1.1rem;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--warm-gray);
      cursor: pointer;
      transition: all 0.18s;
    }

    .week-tab:hover { border-color: var(--ink); color: var(--ink); }

    .week-tab.active {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--cream);
    }

    /* ── SOBRE EL PROYECTO ── */
    .about-section {
      padding: 5rem 0;
      background: var(--naranja);
      color: var(--cream);
      overflow: hidden;
      position: relative;
    }

    .about-section::before {
      content: '';
      position: absolute;
      left: -100px;
      top: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--naranja) 0%, transparent 65%);
      opacity: 0.08;
      pointer-events: none;
    }

    .about-quote {
      font-family: 'league gothic', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.2;
      color: rgba(245,240,232,.85);
      margin-bottom: 2rem;
    }

    .about-quote span { color: var(--naranja); font-style: normal; }

    .about-body {
      font-size: 0.95rem;
      color: rgba(245,240,232,.55);
      max-width: 440px;
      line-height: 1.85;
    }


     .about-body-m {
      font-size: 0.95rem;
      color: rgba(245,240,232,.55);
      line-height: 1.85;
    }


    .about-team-title {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(245,240,232,.35);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    .team-pill {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 100px;
      padding: 0.5rem 1.1rem 0.5rem 0.5rem;
      margin-bottom: 0.6rem;
      max-width: 260px;
    }

    .team-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--cream);
      flex-shrink: 0;
    }

    .team-name {
      font-size: 0.82rem;
      color: rgba(245,240,232,.8);
      line-height: 1.2;
    }

    .team-role {
      font-size: 0.68rem;
      color: rgba(245,240,232,.35);
      letter-spacing: 0.05em;
    }

    /* ── NEWSLETTER ── */
    .newsletter-section {
      padding: 5rem 0;
      background: var(--card-bg);
    }

    .newsletter-box {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 3.5rem;
      text-align: center;
      max-width: 620px;
      margin: 0 auto;
    }

    .newsletter-icon {
      width: 56px;
      height: 56px;
      background: var(--ink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.4rem;
      color: var(--cream);
      font-size: 1.3rem;
    }

    .newsletter-title {
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 0.6rem;
    }

    .newsletter-desc {
      font-size: 0.9rem;
      color: var(--warm-gray);
      margin-bottom: 1.8rem;
    }

    .input-group-custom {
      display: flex;
      gap: 0.6rem;
      max-width: 400px;
      margin: 0 auto;
    }

    .input-email {
      flex: 1;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.75rem 1.3rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      color: var(--ink);
      outline: none;
      transition: border-color 0.18s;
    }

    .input-email::placeholder { color: var(--warm-gray); }
    .input-email:focus { border-color: var(--ink); }

    /* ── FOOTER ── */
    .footer {
      background: var(--card-bg);
      color: black;
      padding: 3rem 0 2rem;
      font-size: 0.82rem;
    }

    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--ink);
      font-weight: 400;
    }

    .footer-brand span { color: var(--naranja); }

    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
      color: var(--ink);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.18s;
    }
    .footer-links a:hover { color: var(--naranja); }

    .footer-col-title {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 1rem;
      font-weight: 500;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--ink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.18s;
    }

    .social-btn:hover {
      border-color: var(--naranja);
      color: var(--naranja);
    }

    .footer-divider {
      border-color: var(--naranja);
      margin: 2rem 0 1.5rem;
    }

    /* ── SCROLL INDICATOR ── */
    .scroll-indicator-wrap {
      position: absolute;
      left: 50%;
      bottom: 2.2rem;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      z-index: 60;
      pointer-events: auto;
    }

    @media (max-width: 768px) {
      .scroll-indicator-wrap { bottom: 1.2rem; }
      .scroll-text { display: none; }
    }

    .scroll-indicator {
      background: transparent;
      border: none;
      color: var(--warm-gray);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      cursor: pointer;
      padding: 0.2rem 0.4rem;
    }

    .scroll-indicator img {
      display: block;
      transition: transform 0.28s ease;
      animation: bounce 1.6s infinite ease-in-out;
    }

    .scroll-text {
      font-size: 0.78rem;
      color: var(--warm-gray);
      text-transform: lowercase;
      letter-spacing: 0.08em;
    }

    .scroll-indicator:hover img { transform: translateY(-4px); }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

       .hover-brand {
            transition: transform 50ms, opacity 50ms;
            transition-timing-function: ease-in-out;
        }

        .hover-brand:hover {
            /*transform: scale(0.98);*/
            opacity: 0.7;
        }


        
       .hover-brand-mujer {
            transition: transform 50ms, opacity 50ms;
            transition-timing-function: ease-in-out;
        }

        .hover-brand-mujer:hover {
            /*transform: scale(0.98);*/
        color: var(--naranja);
        }

        
/* ── FIXTURE TABLE ── */
.fixture-table {
  width: 100%;
  border-collapse: collapse;
}

.fixture-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}

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

.fixture-table tbody tr:hover {
  background: var(--card-bg);
}

.fixture-time {
  font-family: "League Gothic", sans-serif;
  font-size: 1.15rem;
  color: var(--naranja);
  padding: 1rem 1.4rem 1rem 0;
  white-space: nowrap;
  width: 3.5rem;
  vertical-align: middle;
}

.fixture-match {
  font-size: 0.92rem;
  color: var(--ink);
  padding: 1rem 1.2rem;
  width: 100%;
  vertical-align: middle;
}

.fixture-teams {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.fixture-team {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.fixture-team .fi {
  width: 1.4em;
  height: 1.4em;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  font-size: 1rem;
}

.fixture-vs {
  font-size: 0.7rem;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 0 0.1rem;
}

.fixture-badge-wrap {
  padding: 1rem 0 1rem 0.8rem;
  vertical-align: middle;
  text-align: right;
}

.fixture-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-live {
  background: var(--ink);
  color: var(--cream);
}

.badge-rep {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--warm-gray);
}

@media (max-width: 576px) {
  .fixture-time { font-size: 1rem; padding-right: 0.8rem; }
  .fixture-team span { display: none; }  /* sólo banderas en móvil chico */
  .fixture-vs { padding: 0; }
}


/* ── Underline animado por sección activa ──────────── */
.nav-link-custom {
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--naranja, #e8601c);
  transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
  width: 100%;
}

.nav-link-custom.nav-active::after {
  width: 100%;
}

#ver {
  scroll-margin-top: 90px; /* Ajusta este valor a la altura de tu navbar */
}