    /* ─── CSS Variables ─────────────────────────────────── */
    :root {
      --carbon-950: #0a0a0a;
      --carbon-900: #111111;
      --carbon-800: #1c1c1c;
      --naranja-700: #c94a00;
      --naranja-600: #e05500;
      --naranja-500: #f06200;
      --naranja-100: #ffe8d6;
      --naranja-50:  #fff4ee;
      --amarillo-600: #b08000;
      --amarillo-400: #ffe001;
      --amarillo-100: #fff9c2;
      --azul-600:   #1a56db;
      --azul-200:   #c3ddfd;
      --rojo-600:   #c81e1e;
      --rojo-100:   #fde8e8;
      --neutral-900: #111827;
      --neutral-800: #1f2937;
      --neutral-700: #374151;
      --neutral-600: #4b5563;
      --neutral-500: #6b7280;
      --neutral-400: #9ca3af;
      --neutral-300: #d1d5db;
      --neutral-200: #e5e7eb;
      --neutral-100: #f3f4f6;
      --neutral-50:  #f9fafb;
      --white: #ffffff;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;
      --radius-sm:   6px;
      --radius-full: 9999px;
    }

    /* ─── Base ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    body {
      font-family: var(--font-body);
      background: var(--neutral-50);
      color: var(--neutral-800);
      margin: 0;
    }

    /* ─── NAVBAR ────────────────────────────────────────── */
    .site-navbar {
      background: var(--carbon-950);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 0 1rem;
      min-height: 60px;
    }
    .site-navbar .navbar-brand img { height: 32px; }
    .site-navbar .brand-banner img { height: 28px; }
    .nav-link-item {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.75) !important;
      padding: 0.5rem 0.75rem;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: color 0.15s, background 0.15s;
    }
    .nav-link-item:hover,
    .nav-link-item.active { color: var(--amarillo-400) !important; }
    .btn-nav-login {
      font-size: 12px; font-weight: 700;
      color: rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 6px 14px; border-radius: var(--radius-sm);
      cursor: pointer;
    }
    .btn-nav-cta {
      font-size: 12px; font-weight: 700;
      background: var(--amarillo-400); color: var(--carbon-900);
      border: none; padding: 6px 14px; border-radius: var(--radius-sm);
      cursor: pointer;
    }
    /* Hamburger icon color */
    .navbar-toggler { border-color: rgba(255,255,255,0.3); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* Mobile nav drawer */
    #mobileNav { background: var(--carbon-900); }
    #mobileNav .nav-link-item { display: block; padding: 10px 16px; font-size: 14px; }
    #mobileNav .mobile-nav-actions {
      display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* ─── HERO ──────────────────────────────────────────── */
    .hero-section {
      padding: 48px 24px 40px;
      position: relative;
      overflow: hidden;
      background: url('images/gaitan.png');
      background-size: 30px;
      background-repeat: no-repeat;
      background-size: contain;
      background-color: #FF6700;
      background-position: right;
    }


.video-background {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust as needed */
    overflow: hidden;
}


    @media (min-width: 768px) {
      .hero-section { padding: 72px 80px 64px; }
    }
    .hero-badge {
      display: inline-block;
      background: rgba(255,224,1,0.12);
      border: 1px solid rgba(255,224,1,0.3);
      padding: 5px 14px; border-radius: var(--radius-full);
      font-size: 11px; color: var(--amarillo-400); font-weight: 600;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(100px, 8vw, 58px);
      font-weight: 900; color: var(--white);
      line-height: 1.0; letter-spacing: 0.01em;
      text-transform: uppercase; margin-bottom: 16px;
    }
    .hero-title span { color: var(--amarillo-400); }
    .hero-subtitle {
      font-size: clamp(30px, 3vw, 17px);
      color: rgba(255,255,255,0.7); line-height: 2;
    }
    .btn-gold {
      background: var(--amarillo-400); color: var(--carbon-900);
      font-weight: 700; border: none;
      font-family: var(--font-body); font-size: 14px;
      padding: 12px 22px; border-radius: var(--radius-sm);
    }
    .btn-ghost-outline {
      background: transparent; color: var(--white);
      font-weight: 700; border: 1px solid rgba(255,255,255,0.3);
      font-family: var(--font-body); font-size: 14px;
      padding: 12px 22px; border-radius: var(--radius-sm);
    }
    /* BG decorations */
    .hero-deco-1 {
      position: absolute; top: -60px; right: -60px;
      width: 320px; height: 320px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,224,1,0.06), transparent 70%);
      pointer-events: none;
    }
    .hero-deco-2 {
      position: absolute; bottom: -40px; left: 40%;
      width: 500px; height: 260px;
      background: radial-gradient(ellipse, rgba(255,103,0,0.10), transparent 70%);
      pointer-events: none;
    }

    /* ─── STATS BAR ─────────────────────────────────────── */
    .stats-bar {
      background: var(--white);
      border-bottom: 1px solid var(--neutral-200);
    }
    .stat-block {
      flex: 1 1 0;
      text-align: center;
      padding: 16px 8px;
      border-right: 1px solid var(--neutral-200);
    }
    .stat-block:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(20px, 4vw, 28px);
      font-weight: 900; color: var(--naranja-600);
      line-height: 1;
    }
    .stat-lbl {
      font-size: clamp(9px, 1.5vw, 11px);
      color: var(--neutral-500); margin-top: 4px;
      font-weight: 500;
    }

    /* ─── ONBOARDING ─────────────────────────────────────── */
    .onboarding-section {
      background: var(--naranja-50);
      border-bottom: 1px solid var(--naranja-100);
      padding: 40px 24px;
    }
    @media (min-width: 992px) { .onboarding-section { padding: 48px 80px; } }
    .onboarding-section h2 {
      font-family: var(--font-display);
      font-size: 28px; font-weight: 700; color: var(--carbon-900);
    }
    .step-card {
      background: var(--white);
      border-radius: 10px;
      padding: 28px 24px;
      text-align: center;
      border: 1px solid var(--neutral-200);
      height: 100%;
    }
    .step-card.step-1 { border-top: 4px solid var(--amarillo-400); }
    .step-card.step-2 { border-top: 4px solid var(--azul-600); }
    .step-card.step-3 { border-top: 4px solid var(--rojo-600); }
    .step-icon {
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin: 0 auto 14px;
    }
    .step-label {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.08em; margin-bottom: 6px;
    }
    .step-title {
      font-family: var(--font-display); font-size: 18px;
      font-weight: 700; color: var(--neutral-900); margin-bottom: 8px;
    }
    .step-desc { font-size: 13px; color: var(--neutral-600); line-height: 1.6; }
    .step-arrow {
      display: flex; align-items: center; justify-content: center;
      color: var(--neutral-300); font-size: 22px;
      padding-top: 50px; /* align with icon center */
    }
    /* On mobile, hide horizontal arrows and show spacing only */
    @media (max-width: 767px) {
      .step-arrow { display: none; }
      .step-col { margin-bottom: 16px; }
    }

    /* ─── CONTENT SECTIONS ───────────────────────────────── */
    .content-section { padding: 32px 24px; }
    @media (min-width: 992px) { .content-section { padding: 40px 80px; } }

    /* Sidebar */
    .sidebar-title {
      font-family: var(--font-display); font-size: 15px; font-weight: 700;
      color: var(--neutral-800); padding-bottom: 10px;
      border-bottom: 2px solid var(--neutral-200); margin-bottom: 12px;
    }
    .sidebar-tag-active {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 12px; background: var(--naranja-500);
      border-radius: var(--radius-sm); cursor: pointer;
    }
    .sidebar-tag-active span:first-child { font-size: 13px; font-weight: 600; color: var(--white); }
    .sidebar-badge-active { font-size: 10px; background: rgba(255,255,255,0.2); color: white; padding: 2px 7px; border-radius: var(--radius-full); }
    .sidebar-tag {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer;
      transition: background 0.15s;
    }
    .sidebar-tag:hover { background: var(--neutral-100); }
    .sidebar-tag span:first-child { font-size: 13px; color: var(--neutral-700); }
    .sidebar-badge { font-size: 10px; background: var(--neutral-200); color: var(--neutral-600); padding: 2px 7px; border-radius: var(--radius-full); }
    .sidebar-more { font-size: 12px; color: var(--naranja-500); font-weight: 600; padding: 8px 12px; cursor: pointer; }

    /* Top voted in sidebar */
    .top-voted-item {
      font-size: 12.5px; color: var(--neutral-800); line-height: 1.5;
      padding: 8px 0; border-bottom: 1px solid var(--neutral-100);
    }
    .top-voted-item:last-child { border-bottom: none; }
    .vote-count { color: var(--naranja-600); font-weight: 700; }

    /* Filter bar */
    .filter-bar {
      display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
    }
    .filter-btn {
      font-size: 12px; font-weight: 600; padding: 6px 14px;
      border-radius: var(--radius-full); border: 1px solid var(--neutral-200);
      background: var(--white); color: var(--neutral-700); cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--naranja-500); color: var(--white); border-color: var(--naranja-500);
    }

    /* Post rows */
    .post-row {
      display: flex; gap: 12px; padding: 16px 0;
      border-bottom: 1px solid var(--neutral-100); align-items: flex-start;
    }
    .post-row:last-child { border-bottom: none; }
    .post-vote {
      display: flex; flex-direction: column; align-items: center;
      gap: 3px; min-width: 40px;
    }
    .pr-vote-up {
      font-size: 14px; color: var(--neutral-400); cursor: pointer;
      padding: 2px 6px; border-radius: 4px; transition: color 0.15s;
    }
    .pr-vote-up.active { color: var(--naranja-500); }
    .pr-vote-up:hover { color: var(--naranja-500); }
    .pr-vote-count { font-size: 25px; font-weight: 700; color: var(--neutral-800); }
    .post-title { font-size: 25px; font-weight: 600; color: var(--neutral-900); margin-bottom: 6px; line-height: 1.4; }
    .post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; font-size: 11px; color: var(--neutral-500); }
    .dot { color: var(--neutral-300); }

    /* Pills */
    .pill { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); display: inline-block; }
    .pill-activa   { background: #d1fae5; color: #065f46; }
    .pill-revision { background: #fef3c7; color: #92400e; }
    .pill-aprobada { background: #dbeafe; color: #1e40af; }

    /* Wiki infobox */
    .wiki-infobox { border: 1px solid var(--neutral-200); border-radius: 8px; overflow: hidden; }
    .wiki-infobox-head { background: var(--naranja-700); color: var(--white); font-family: var(--font-display); font-size: 15px; font-weight: 700; padding: 10px 14px; }
    .wiki-infobox-img { background: var(--naranja-50); text-align: center; font-size: 52px; padding: 24px; border-bottom: 1px solid var(--neutral-200); }
    .wiki-infobox-row { display: flex; border-bottom: 1px solid var(--neutral-100); }
    .wiki-infobox-row:last-child { border-bottom: none; }
    .wiki-infobox-key { font-size: 11px; font-weight: 700; color: var(--neutral-600); padding: 8px 10px; min-width: 80px; background: var(--neutral-50); }
    .wiki-infobox-val { font-size: 12px; color: var(--neutral-800); padding: 8px 10px; }

    /* Email signup card */
    .signup-card {
      background: var(--white); border: 1px solid var(--azul-200);
      border-top: 3px solid var(--amarillo-400); border-radius: 8px; padding: 16px;
    }
    .signup-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--carbon-900); margin-bottom: 6px; }
    .signup-sub { font-size: 12px; color: var(--neutral-600); margin-bottom: 12px; line-height: 1.5; }
    .signup-input {
      width: 100%; border: 1px solid var(--neutral-200); border-radius: var(--radius-sm);
      padding: 9px 12px; font-size: 13px; margin-bottom: 8px; color: var(--neutral-400);
      font-family: var(--font-body);
    }
    .btn-primary-custom {
      width: 100%; background: var(--naranja-500); color: var(--white); border: none;
      font-weight: 700; font-size: 14px; padding: 10px; border-radius: var(--radius-sm);
      cursor: pointer; font-family: var(--font-body);
    }
    .signup-legal { font-size: 10px; color: var(--neutral-400); margin-top: 8px; line-height: 1.5; }

    /* Avatar */
    .avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--naranja-100); color: var(--naranja-700);
      font-size: 13px; font-weight: 700; display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
    }
    .participant-name { font-size: 13px; font-weight: 600; color: var(--naranja-500); }
    .participant-meta { font-size: 11px; color: var(--neutral-400); }

    /* Pagination */
    .pagination-bar { display: flex; gap: 6px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--neutral-100); }
    .page-btn {
      font-size: 12px; padding: 6px 12px; border-radius: var(--radius-sm);
      border: 1px solid var(--neutral-200); background: var(--white); color: var(--neutral-700);
      cursor: pointer; font-family: var(--font-body); font-weight: 600;
    }
    .page-btn.active { background: var(--naranja-500); color: var(--white); border-color: var(--naranja-500); }
    .page-btn.disabled { opacity: 0.4; cursor: not-allowed; }

    /* ─── FOOTER ─────────────────────────────────────────── */
    .site-footer-bar {
      background: var(--carbon-950); border-top: 1px solid rgba(255,255,255,0.07);
      padding: 20px 24px;
    }
    .footer-flag { display: flex; gap: 0; border-radius: 3px; overflow: hidden; width: 28px; height: 18px; flex-shrink: 0; }
    .footer-flag div:nth-child(1) { background: #fcd116; flex: 1; }
    .footer-flag div:nth-child(2) { background: #003087; flex: 1; }
    .footer-flag div:nth-child(3) { background: #ce1126; flex: 1; }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); }
    .footer-link { font-size: 12px; color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.15s; }
    .footer-link:hover { color: var(--amarillo-400); }

    /* ─── RESPONSIVE HELPERS ─────────────────────────────── */
    /* Offcanvas sidebar on mobile (Bootstrap built-in, custom colors) */
    .offcanvas-dark { background: var(--carbon-900) !important; }
    .offcanvas-dark .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .offcanvas-dark .btn-close { filter: invert(1); }

    /* Stack hero CTAs vertically on very small screens */
    @media (max-width: 400px) {
      .hero-cta-group { flex-direction: column !important; }
      .hero-cta-group .btn-gold,
      .hero-cta-group .btn-ghost-outline { width: 100%; text-align: center; }
    }

    /* Sticky mobile CTA bar */
    .mobile-sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--carbon-900); border-top: 1px solid rgba(255,255,255,0.1);
      padding: 10px 16px; display: flex; gap: 8px; z-index: 1000;
    }
    .mobile-sticky-cta .btn-gold { flex: 1; text-align: center; font-size: 13px; padding: 10px 12px; }
    .mobile-sticky-cta .btn-ghost-outline { flex: 1; text-align: center; font-size: 13px; padding: 10px 12px; }
    @media (min-width: 768px) { .mobile-sticky-cta { display: none; } }
    /* Add bottom padding on mobile so content not obscured by sticky bar */
    @media (max-width: 767px) { body { padding-bottom: 68px; } }

    /* Content card on mobile */
    .content-card {
      background: var(--white); border: 1px solid var(--neutral-200);
      border-radius: 8px; padding: 20px;
    }


/* Registro*/


 /* ─── Form-specific variables (inherits from main template) ─── */
  :root {
    --naranja-50:  #fff4ee;
    --naranja-100: #ffe8d6;
    --naranja-500: #f06200;
    --naranja-600: #e05500;
    --amarillo-400: #ffe001;
    --amarillo-600: #b08000;
    --azul-400:    #60a5fa;
    --rojo-500:    #ef4444;
    --carbon-900:  #111111;
    --neutral-200: #e5e7eb;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-900: #111827;
    --white:       #ffffff;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --radius-sm:    6px;
    --radius-full:  9999px;
  }

  /* ─── Form wrapper ─────────────────────────────────────────── */
  .form-section {
    background: linear-gradient(160deg, var(--naranja-50) 0%, var(--white) 100%);
    min-height: 100vh;
    padding: 36px 20px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .form-section { padding: 52px 40px; }
  }

  .form-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    padding: 28px 20px;
    width: 100%;
    max-width: 480px;
  }
  @media (min-width: 576px) {
    .form-card { padding: 36px 32px; }
  }

  /* ─── Form header ──────────────────────────────────────────── */
  .form-eyebrow {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--azul-400); margin-bottom: 6px;
    font-family: var(--font-body);
  }
  .form-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 6vw, 30px);
    font-weight: 900; color: var(--carbon-900); margin-bottom: 6px;
  }
  .form-subtitle {
    font-size: 13.5px; color: var(--neutral-600); line-height: 1.6; margin: 0;
  }

  /* ─── Field labels ─────────────────────────────────────────── */
  .field-label {
    font-size: 12px; font-weight: 700;
    color: var(--neutral-900); margin-bottom: 5px;
    display: block; font-family: var(--font-body);
  }
  .field-required { color: var(--rojo-500); margin-left: 2px; }

  /* ─── Inputs ───────────────────────────────────────────────── */
  .form-control-custom {
    width: 100%;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 13.5px;
    font-family: var(--font-body);
    color: var(--neutral-400);
    background: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    appearance: none;
  }
  .form-control-custom:focus {
    border-color: var(--naranja-500);
    box-shadow: 0 0 0 3px rgba(240,98,0,0.12);
    color: var(--neutral-900);
  }
  .form-control-custom.filled { color: var(--neutral-900); }
  .form-control-custom.is-error {
    border-color: var(--rojo-500);
    box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
  }
  .form-control-custom.is-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 34px;
    cursor: pointer;
  }

  .field-error {
    font-size: 11.5px; color: var(--rojo-500); margin-top: 5px;
    font-weight: 600;
  }
  .field-hint {
    font-size: 11px; color: var(--neutral-400); margin-top: 5px; line-height: 1.5;
  }

  /* ─── Password strength bar ────────────────────────────────── */
  .strength-bar {
    display: flex; gap: 4px; margin-top: 8px; margin-bottom: 4px;
  }
  .strength-segment {
    flex: 1; height: 3px; border-radius: 2px; background: var(--neutral-200);
  }
  .strength-segment.active-red    { background: var(--rojo-500); }
  .strength-segment.active-yellow { background: var(--amarillo-400); }
  .strength-label {
    font-size: 10px; color: var(--neutral-500);
  }
  .strength-value { color: var(--amarillo-600); font-weight: 600; }

  /* ─── Checkbox ─────────────────────────────────────────────── */
  .custom-checkbox-wrap {
    display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  }
  .custom-checkbox {
    width: 18px; height: 18px; min-width: 18px;
    border: 2px solid var(--naranja-500);
    border-radius: 4px; background: var(--naranja-500);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .custom-checkbox::after {
    content: '✓'; font-size: 11px; color: var(--white); font-weight: 900;
  }
  .custom-checkbox.unchecked {
    background: var(--white);
  }
  .custom-checkbox.unchecked::after { display: none; }
  .checkbox-text {
    font-size: 12.5px; color: var(--neutral-600); line-height: 1.55;
  }
  .checkbox-text a {
    color: var(--naranja-500); font-weight: 600; text-decoration: none;
  }
  .checkbox-text a:hover { text-decoration: underline; }

  /* ─── Submit button ────────────────────────────────────────── */
  .btn-submit {
    width: 100%; background: var(--amarillo-400); color: var(--carbon-900);
    border: none; font-family: var(--font-display);
    font-size: 17px; font-weight: 800; letter-spacing: 0.02em;
    padding: 14px 24px; border-radius: var(--radius-sm);
    cursor: pointer; transition: filter 0.15s, transform 0.1s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .btn-submit:hover { filter: brightness(1.06); }
  .btn-submit:active { transform: scale(0.99); }

  /* ─── WCAG notice ──────────────────────────────────────────── */
  .notice-wcag {
    background: #eff6ff; border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm); padding: 10px 14px;
    display: flex; align-items: flex-start; gap: 8px;
  }
  .notice-wcag-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
  .notice-wcag-text { font-size: 11.5px; color: #1e40af; line-height: 1.5; }

  /* ─── FOOTER ───────────────────────────────────────────────── */
  .form-footer-bar {
    background: var(--carbon-900);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 24px;
  }
  .footer-flag { display: flex; border-radius: 3px; overflow: hidden; width: 26px; height: 16px; flex-shrink: 0; }
  .footer-flag div:nth-child(1) { background: #fcd116; flex: 1; }
  .footer-flag div:nth-child(2) { background: #003087; flex: 1; }
  .footer-flag div:nth-child(3) { background: #ce1126; flex: 1; }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); }
  .footer-link { font-size: 12px; color: rgba(255,255,255,0.5); cursor: pointer; text-decoration: none; transition: color 0.15s; }
  .footer-link:hover { color: var(--amarillo-400); }

  /* ─── Divider OR ───────────────────────────────────────────── */
  .or-divider {
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; color: var(--neutral-400); margin: 16px 0;
  }
  .or-divider::before, .or-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--neutral-200);
  }

  /* ─── Social login buttons ─────────────────────────────────── */
  .btn-social {
    width: 100%; border: 1.5px solid var(--neutral-200);
    background: var(--white); border-radius: var(--radius-sm);
    padding: 10px 16px; font-size: 13px; font-weight: 600;
    color: var(--neutral-700); cursor: pointer; font-family: var(--font-body);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.15s, border-color 0.15s;
  }
  .btn-social:hover { background: var(--neutral-50); border-color: var(--neutral-300); }



    