
    :root {
      --navy: #2D394B;
      --green: #1D7A21;
      --green-light: #25a02a;
      --green-dark: #155a18;
      --gold: #f0c040;
      --light-bg: #f4f6f8;
      --text-muted: #6b7c93;
	  --bgwhite:#ffffff;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Open Sans', sans-serif;
      background: #fff;
      color: #1a1a2e;
    }

    h1, h2, h3, h4, .display-title {
      font-family: 'Open Sans', sans-serif;
      letter-spacing: 0.02em;
    }

    /* ── NAVBAR ── #F1C040*/
    .section-navbar {  background: var(--navy); }
    .navbar-custom {
      background: var(--navy);
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
      /*box-shadow: 0 2px 12px rgba(0,0,0,.35);*/
    }
    .navbar-custom .navbar-brand .brand-text {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      /*letter-spacing: 0.04em;*/
    }
    .navbar-custom .brand-text span { color: var(--gold); }
    .navbar-custom .navbar-item,
    .navbar-custom .navbar-link {
      color: rgba(255,255,255,.85) !important;
      font-weight: 500;
      font-size: 1.25rem;
      /*transition: color .2s;*/
    }
    .navbar-custom .navbar-item:hover { color: var(--green) !important; }
    .navbar-custom .navbar-item.btn-demo {
      background: var(--green);
      color: #fff !important;
      border-radius: 6px;
      padding: 0.4rem 1rem;
      font-weight: 700;
      transition: background .2s;
    }
    .navbar-custom .navbar-item.btn-demo:hover { background: var(--green-light); }


    /* ── HERO ── */
    .hero-main {
      background:
        linear-gradient(160deg, rgba(29,122,33,.82) 0%, rgba(45,57,75,.95) 55%),
        url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?w=1600&q=80') center/cover no-repeat;
      min-height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-main::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg, transparent, transparent 59px,
        rgba(255,255,255,.04) 60px
      ),
      repeating-linear-gradient(
        90deg, transparent, transparent 59px,
        rgba(255,255,255,.04) 60px
      );
      pointer-events: none;
    }
    .hero-main .hero-body { padding: 5rem 2rem; }
    .hero-title {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.05;
      text-transform: uppercase;
    }
    .hero-title .accent { color: var(--gold); }
    .hero-subtitle {
      color: rgba(255,255,255,.8);
      font-size: 1.15rem;
      margin-top: .75rem;
      max-width: 520px;
    }
    .hero-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .25rem .75rem;
      border-radius: 4px;
      margin-bottom: 1.2rem;
    }

    /* Liga Cards */
    .liga-cards { margin-top: 2.5rem; }
    .liga-card {
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(255,255,255,.70);
      border-radius: 12px;
      padding: 1.5rem 1.25rem;
      cursor: pointer;
      transition: transform .25s, background .25s, border-color .25s;
      backdrop-filter: blur(6px);
    }
    .liga-card:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,.75);
      border-color: var(--gold);
    }
    .liga-card .liga-icon {
      font-size: 2rem;
      margin-bottom: .75rem;
      display: block;
    }
    .liga-card h3 {
      color: #333;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: .35rem;
    }
    .liga-card p { color: #666; font-size: .88rem; }
    .liga-card .arrow-link {
      color: var(--gold);
      font-size: .9rem;
      font-weight: 600;
      margin-top: .75rem;
      display: inline-flex;
      align-items: center;
      gap: .3rem;
    }

    /* ── SECTION TITLES ── */
    .section-label {
      font-family: 'Open Sans', sans-serif;
      font-size: .78rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 700;
      margin-bottom: .4rem;
    }
    .section-title {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
    }
    .section-divider {
      width: 52px;
      height: 4px;
      background: var(--green);
      border-radius: 2px;
      margin: .8rem 0 1.2rem;
    }

    /* ── BANNERS ── */
    .banners-section { background: var(--light-bg); padding: 4rem 0; }
    .banner-ad {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      min-height: 220px;
      display: flex;
      align-items: center;
      padding: 1.0rem;
      box-shadow: 0 8px 32px rgba(45,57,75,.13);
    }

    .banner-ad::before {
      content: '';
      position: absolute;
      right: -30px;
      top: -30px;
      width: 200px;
      height: 200px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
    }
    .banner-ad::after {
      content: '';
      position: absolute;
      right: 40px;
      bottom: -60px;
      width: 260px;
      height: 260px;
      background: rgba(255,255,255,.04);
      border-radius: 50%;
    }
    .banner-ad .banner-logo {
      font-family: 'Open Sans', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .banner-ad .banner-logo span { color: var(--gold); }
    .banner-ad .banner-tagline {
      color: rgba(255,255,255,.75);
      font-size: .9rem;
      margin-top: .4rem;
    }
    .banner-ad .banner-cta {
      margin-top: 1.25rem;
      display: inline-block;
      background: rgba(255,255,255,.2);
      color: #fff;
      border: 1px solid rgba(255,255,255,.4);
      border-radius: 6px;
      padding: .45rem 1.1rem;
      font-weight: 600;
      font-size: .88rem;
      transition: background .2s;
      text-decoration: none;
    }
    .banner-ad .banner-cta:hover { background: rgba(255,255,255,.32); }
    .banner-slot-label {
      position: absolute;
      top: 12px;
      right: 14px;
      font-size: .65rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
    }

    /* ── CTA / DEMO ── */
    .cta-section {
      background: var(--navy);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      left: -120px;
      bottom: -120px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(29,122,33,.3) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-section::after {
      content: '';
      position: absolute;
      right: -80px;
      top: -80px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(240,192,64,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-pill {
      background: rgba(240,192,64,.15);
      border: 1px solid rgba(240,192,64,.4);
      color: var(--gold);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .3rem .9rem;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .cta-title {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
    }
    .cta-title span { color: var(--gold); }
    .cta-desc {
      color: rgba(255,255,255,.7);
      font-size: 1rem;
      margin-top: .75rem;
      max-width: 500px;
    }
    .cta-features { margin-top: 1.75rem; }
    .cta-feature-item {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      margin-bottom: .9rem;
      color: rgba(255,255,255,.85);
      font-size: .95rem;
    }
    .cta-feature-item .icon-check {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .65rem;
      margin-top: 2px;
    }
    .btn-demo-main {
      background: var(--green);
      color: #fff !important;
      font-family: 'Open Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: .05em;
      padding: .85rem 2.5rem;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: inline-block;
      text-decoration: none;
    }
    .btn-demo-main:hover { background: var(--green-light); transform: translateY(-2px); }
    .cta-mockup {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      padding: 2rem;
      position: relative;
    }
    .cta-mockup-header {
      background: rgba(255,255,255,.08);
      border-radius: 8px;
      padding: .75rem 1rem;
      display: flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: 1rem;
    }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #ff5f57; }
    .dot-y { background: #febc2e; }
    .dot-g { background: #28c840; }
    .mock-row {
      background: rgba(255,255,255,.07);
      border-radius: 6px;
      height: 38px;
      margin-bottom: .5rem;
      display: flex;
      align-items: center;
      padding: 0 .75rem;
      gap: .5rem;
    }
    .mock-row .mock-dot {
      width: 8px; height: 8px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .mock-row .mock-bar {
      height: 10px;
      border-radius: 4px;
      background: rgba(255,255,255,.2);
    }
    .mock-stat-row {
      display: flex;
      gap: .5rem;
      margin-top: 1rem;
    }
    .mock-stat {
      flex: 1;
      background: rgba(29,122,33,.25);
      border: 1px solid rgba(29,122,33,.4);
      border-radius: 8px;
      padding: .65rem;
      text-align: center;
    }
    .mock-stat .n {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--gold);
    }
    .mock-stat .l {
      font-size: .72rem;
      color: rgba(255,255,255,.5);
    }

    /* ── LOGOS LIGAS ── */
    .logos-section { padding: 4.5rem 0; background: #fff; }
    .logo-league-card {
      border: 2px solid #e8ecf0;
      border-radius: 14px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: border-color .25s, box-shadow .25s, transform .25s;
    }
    .logo-league-card:hover {
      border-color: var(--green);
      box-shadow: 0 8px 28px rgba(29,122,33,.12);
      transform: translateY(-4px);
    }
    .logo-league-card .league-emblem {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Open Sans', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
    }
    .league-lncs { background: var(--navy); color: #fff; }
    .league-lia  { background: var(--green); color: #fff; }
    .logo-league-card h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .3rem;
    }
    .logo-league-card p { color: var(--text-muted); font-size: .85rem; }
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: #eaf6eb;
      color: var(--green-dark);
      font-size: .78rem;
      font-weight: 600;
      padding: .3rem .8rem;
      border-radius: 50px;
      margin-top: .75rem;
    }

    /* ── TRIBUNAL ── */
    .tribunal-section {
      background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e9 100%);
      padding: 5rem 0;
    }
    .tribunal-card {
      background: #fff;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 6px 28px rgba(45,57,75,.09);
      border-left: 5px solid var(--green);
    }
    .benefit-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      align-items: flex-start;
    }
    .benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: #eaf6eb;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .benefit-text h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .2rem;
    }
    .benefit-text p { color: var(--text-muted); font-size: .9rem; }
    .tribunal-highlight {
      background: var(--navy);
      border-radius: 14px;
      padding: 2.5rem;
      color: #fff;
      height: 100%;
    }
    .tribunal-highlight .big-number {
      font-family: 'Open Sans', sans-serif;
      font-size: 5rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .tribunal-highlight p {
      color: rgba(255,255,255,.7);
      font-size: .9rem;
      margin-top: .3rem;
    }
    .tribunal-highlight .hl-divider {
      border-top: 1px solid rgba(255,255,255,.15);
      margin: 1.25rem 0;
    }

    /* ── SEGUROS ── */
    .seguros-section { background: #fff; padding: 5rem 0; }
    .seguro-card {
      background: var(--navy);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(45,57,75,.2);
    }
    .seguro-header {
      background: var(--green);
      padding: 1.5rem 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .seguro-header .icon-shield {
      font-size: 2.2rem;
      color: #fff;
    }
    .seguro-header h3 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
    }
    .seguro-header p { color: rgba(255,255,255,.8); font-size: .88rem; }
    .seguro-body { padding: 2rem; }
    .seguro-plan {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      padding: 1.25rem;
      margin-bottom: .75rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: background .2s;
    }
    .seguro-plan:hover { background: rgba(255,255,255,.12); }
    .seguro-plan .plan-num {
      font-family: 'Open Sans', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      min-width: 40px;
    }
    .seguro-plan h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
    }
    .seguro-plan p { color: rgba(255,255,255,.6); font-size: .83rem; }
    .seguro-cta-bar {
      background: rgba(29,122,33,.15);
      border-top: 1px solid rgba(29,122,33,.3);
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .75rem;
    }
    .seguro-cta-bar span {
      color: rgba(255,255,255,.7);
      font-size: .9rem;
    }
    .btn-outline-white {
      border: 1.5px solid rgba(255,255,255,.5);
      color: #fff !important;
      border-radius: 6px;
      padding: .45rem 1.2rem;
      font-weight: 600;
      font-size: .88rem;
      transition: background .2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,.12); }
    .seguros-info { padding-left: 2rem; }

    /* ── FOOTER ── */
    .footer-custom {
      background: var(--navy);
      padding: 3.5rem 0 1.5rem;
    }
    .footer-custom .brand-footer {
      font-family: 'Open Sans', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-custom .brand-footer span { color: var(--gold); }
    .footer-custom p { color: rgba(255,255,255,.55); font-size: .9rem; }
    .footer-custom .footer-link {
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      text-decoration: none;
      display: block;
      margin-bottom: .5rem;
      transition: color .2s;
    }
    .footer-custom .footer-link:hover { color: var(--gold); }
    .footer-custom .footer-title {
      font-family: 'Open Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,.45);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      margin-top: 2.5rem;
      padding-top: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .5rem;
    }
    .footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
    .footer-socials { display: flex; gap: .75rem; }
    .social-btn {
      width: 34px; height: 34px;
      border-radius: 8px;
      background: rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.6);
      text-decoration: none;
      transition: background .2s, color .2s;
      font-size: .9rem;
    }
    .social-btn:hover { background: var(--green); color: #fff; }

    /* Scroll animation */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .seguros-info { padding-left: 0; margin-top: 2rem; }
      .hero-main { min-height: auto; }
    }