/* ============================================================
   OT Retail Media — Chedraui Media Brand System
   Paleta: #0B1C3F · #FF6600 · #F3F6FA · #E1E8F2 · #66E0A3
   ============================================================ */

/* ── 1. Design Tokens ────────────────────────────────────── */
:root {
  /* Brand */
  --navy:        #0B1C3F;
  --navy-700:    #152d62;
  --navy-600:    #1a3a7a;
  --navy-100:    #e8edf6;
  --orange:      #FF6600;
  --orange-hover:#e05a00;
  --orange-light:#fff3eb;
  --bg:          #F3F6FA;
  --bg-2:        #E1E8F2;
  --green:       #66E0A3;
  --green-dark:  #1db870;
  --green-bg:    #eafaf3;

  /* Neutrals */
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --text:        #1a2744;
  --text-muted:  #5b6a84;

  /* Sizing */
  --radius-sm:   .375rem;
  --radius:      .75rem;
  --radius-lg:   1.125rem;
  --radius-xl:   1.5rem;
  --shadow-xs:   0 1px 2px rgba(11,28,63,.06);
  --shadow-sm:   0 2px 8px rgba(11,28,63,.08);
  --shadow-md:   0 4px 16px rgba(11,28,63,.1);
  --shadow-lg:   0 12px 40px rgba(11,28,63,.14);
  --transition:  .2s cubic-bezier(.4,0,.2,1);

  /* Sidebar */
  --sidebar-w:   256px;
  --navbar-h:    64px;
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: .9375rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── 3. Bootstrap Overrides ──────────────────────────────── */
.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: 0 4px 12px rgba(255,102,0,.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-primary {
  color: var(--orange);
  border-color: var(--orange);
  font-weight: 600;
}
.btn-outline-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.btn-outline-secondary {
  color: var(--text-muted);
  border-color: var(--bg-2);
  background: var(--white);
}
.btn-outline-secondary:hover {
  background: var(--bg);
  border-color: var(--gray-400);
  color: var(--text);
}

.btn { border-radius: var(--radius-sm); font-weight: 500; }
.btn-lg { padding: .75rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: .3rem .75rem; font-size: .8125rem; }

/* Form controls */
.form-control, .form-select {
  border-color: var(--bg-2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:hover, .form-select:hover { border-color: #b0bdd4; }
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,102,0,.15);
  outline: none;
}
.form-control::placeholder { color: var(--gray-400); }
.form-label { font-weight: 500; font-size: .875rem; color: var(--gray-600); margin-bottom: .35rem; }

.input-group-text {
  background: var(--gray-50);
  border-color: var(--bg-2);
  color: var(--text-muted);
}

/* Tables */
.table { --bs-table-color: var(--text); }
.table > :not(caption) > * > * { padding: .75rem 1rem; }
.table thead th {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--bg-2);
}
.table-hover > tbody > tr:hover > * { background-color: rgba(11,28,63,.03); }

/* Badges */
.badge { font-weight: 600; letter-spacing: .02em; border-radius: 100px; padding: .3em .7em; }
.bg-primary { background: var(--orange) !important; }
.text-primary { color: var(--orange) !important; }
.border-primary { border-color: var(--orange) !important; }

/* Cards */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--bg-2);
  box-shadow: var(--shadow-sm);
}
.card-header {
  background: var(--white);
  border-bottom: 1px solid var(--bg-2);
  padding: 1rem 1.25rem;
  font-size: .875rem;
}

/* Pagination */
.page-link { color: var(--orange); border-color: var(--bg-2); }
.page-link:focus { box-shadow: 0 0 0 3px rgba(255,102,0,.15); color: var(--orange); }
.page-item.active .page-link { background: var(--orange); border-color: var(--orange); }

/* Alerts */
.alert { border-radius: var(--radius); border: none; font-size: .9rem; }
.alert-success { background: var(--green-bg); color: #0a6b40; }
.alert-danger  { background: #fef2f2; color: #991b1b; }
.alert-info    { background: #eff6ff; color: #1e40af; }
.alert-warning { background: var(--orange-light); color: #92400e; }

/* Dropdowns */
.dropdown-menu {
  border: 1px solid var(--bg-2);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  padding: .375rem;
}
.dropdown-item { border-radius: var(--radius-sm); font-size: .875rem; }
.dropdown-item:hover { background: var(--bg); }
.dropdown-divider { border-color: var(--bg-2); }

/* Modals */
.modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-lg); }
.modal-header { border-color: var(--bg-2); padding: 1.25rem 1.5rem; }
.modal-footer { border-color: var(--bg-2); padding: 1rem 1.5rem; }

/* Progress */
.progress { background: var(--bg-2); border-radius: 100px; }
.progress-bar { background: var(--orange); border-radius: 100px; }

/* ── 4. Navbar ───────────────────────────────────────────── */
.app-navbar {
  height: var(--navbar-h);
  background: var(--navy);
  border-bottom: 2px solid rgba(255,102,0,.5);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 16px rgba(11,28,63,.25);
}

.app-navbar .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.app-navbar .brand-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.app-navbar .nav-link {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  padding: .4rem .85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--transition);
}
.app-navbar .nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.app-navbar .nav-link.active {
  color: #fff;
  background: rgba(255,102,0,.25);
  border-bottom: 2px solid var(--orange);
}

/* User pill */
.user-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .3rem .75rem .3rem .4rem;
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}
.user-pill:hover { background: rgba(255,255,255,.15); color: #fff; }

.user-avatar {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .75rem; color: #fff;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── 5. Main Layout ──────────────────────────────────────── */
.app-main {
  min-height: calc(100vh - var(--navbar-h));
  padding: 1.75rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.app-footer {
  background: var(--white);
  border-top: 1px solid var(--bg-2);
  padding: .85rem 1.5rem;
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Page header */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.page-header h4, .page-header h3 {
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.page-header .subtitle { color: var(--text-muted); font-size: .875rem; margin: .15rem 0 0; }

/* ── 6. Auth Screen ──────────────────────────────────────── */
.auth-body {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.auth-body::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,102,0,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.auth-body::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(102,224,163,.12) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.auth-wrapper {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.1);
}

.auth-logo-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-logo-wrap img { height: 48px; width: auto; filter: brightness(0) invert(1); }

.auth-divider {
  display: flex; align-items: center; gap: .75rem; margin: 1.25rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--bg-2);
}
.auth-divider span { color: var(--text-muted); font-size: .8rem; }

.auth-footer-text {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .8125rem;
  margin-top: 1.5rem;
}

/* ── 7. Admin Sidebar ────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}

.sidebar-brand {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar-brand img { height: 32px; width: auto; filter: brightness(0) invert(1); }

.sidebar-section-title {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 1.25rem 1.25rem .35rem;
}

.sidebar-nav { padding: .5rem .75rem; flex: 1; }

.sidebar-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .85rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: .15rem;
  transition: all var(--transition);
}
.sidebar-link i { font-size: 1rem; flex-shrink: 0; }
.sidebar-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-link.active {
  background: rgba(255,102,0,.2);
  color: #fff;
  border-left: 3px solid var(--orange);
  padding-left: calc(.85rem - 3px);
}
.sidebar-link.active i { color: var(--orange); }

.sidebar-footer {
  padding: 1rem .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sidebar-user-info {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: .75rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.sidebar-user-info .user-avatar { width: 34px; height: 34px; font-size: .8rem; }
.sidebar-user-name { font-size: .8125rem; font-weight: 600; color: #fff; line-height: 1.2; }
.sidebar-user-role { font-size: .7rem; color: rgba(255,255,255,.45); }

.admin-content { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--bg-2);
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar h5 { color: var(--navy); font-weight: 700; margin: 0; font-size: 1rem; }

.admin-main { flex: 1; padding: 1.75rem; overflow-y: auto; background: var(--bg); }

/* ── 8. Stat Cards ───────────────────────────────────────── */
.stat-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}

.stat-card__icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.22);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
}
.stat-card__label { font-size: .8125rem; color: rgba(255,255,255,.8); font-weight: 500; margin: 0; }
.stat-card__value { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; margin: 0; letter-spacing: -.02em; }
.stat-card__trend { font-size: .75rem; color: rgba(255,255,255,.7); }

.stat-card--navy   { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%); }
.stat-card--orange { background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%); }
.stat-card--green  { background: linear-gradient(135deg, #10b981 0%, var(--green) 100%); }
.stat-card--blue   { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); }

/* ── 9. Section Cards (OT Form) ──────────────────────────── */
.section-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-2);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.section-card:focus-within { box-shadow: var(--shadow-sm); }

.section-card__header {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-700) 100%);
}

.section-card__header h5 { color: #fff; font-weight: 700; margin: 0; font-size: .9375rem; }
.section-card__header p  { color: rgba(255,255,255,.65); margin: 0; font-size: .8rem; }

.section-card__body { padding: 1.5rem; }

.section-num {
  width: 30px; height: 30px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: #fff;
  flex-shrink: 0;
}

/* ── 10. Medio Toggles ───────────────────────────────────── */
.medio-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1.5px solid var(--bg-2);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .8125rem;
  font-weight: 500;
  transition: all var(--transition);
  user-select: none;
  color: var(--text-muted);
  background: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.medio-toggle input[type="checkbox"] { display: none; }
.medio-toggle i { font-size: .9rem; flex-shrink: 0; }

.medio-toggle:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
}

.medio-toggle--active,
.medio-toggle:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255,102,0,.3);
}

/* ── 11. OT Completa Indicator ───────────────────────────── */
.ot-indicator {
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fffbf0;
  border: 1.5px solid #fcd34d;
  transition: all .4s ease;
}
.ot-indicator.complete {
  background: var(--green-bg);
  border-color: var(--green);
}

.ot-indicator__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: #fef3c7;
  color: #d97706;
  transition: all .4s ease;
}
.ot-indicator.complete .ot-indicator__icon { background: var(--green-bg); color: var(--green-dark); }

.ot-indicator__title { font-weight: 700; color: var(--navy); margin: 0; font-size: .9375rem; }
.ot-indicator__sub { color: var(--text-muted); font-size: .8125rem; margin: .15rem 0 0; }

/* Candados checklist */
.candado-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.candado-item {
  display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; padding: .25rem .65rem;
  border-radius: 100px;
  background: var(--bg); color: var(--text-muted);
  border: 1px solid var(--bg-2);
  transition: all var(--transition);
}
.candado-item.ok { background: var(--green-bg); color: var(--green-dark); border-color: #a7f3cf; }
.candado-item i { font-size: .8rem; }

/* ── 12. Detalle panels ──────────────────────────────────── */
.detalle-panel {
  background: var(--bg);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all var(--transition);
}
.detalle-panel__title {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .875rem; color: var(--navy);
  margin-bottom: 1rem;
}
.detalle-panel__title .badge-medio {
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(255,102,0,.2);
  border-radius: 100px;
  font-size: .7rem;
  padding: .2em .6em;
  font-weight: 600;
}

/* ── 13. Required labels ─────────────────────────────────── */
.required-label::after { content: ' *'; color: var(--orange); font-weight: 700; }

/* ── 14. Avatar ──────────────────────────────────────────── */
.avatar-circle {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--navy), var(--navy-600));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem;
  flex-shrink: 0;
}

/* ── 15. Audit Timeline ──────────────────────────────────── */
.audit-timeline { padding: .5rem 1.25rem 1rem; }
.audit-entry {
  display: flex; gap: .85rem;
  padding: .6rem 0;
  position: relative;
}
.audit-entry + .audit-entry { border-top: 1px solid var(--bg-2); }
.audit-entry__dot {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: .35rem;
  flex-shrink: 0;
}
.audit-entry__body { font-size: .8125rem; color: var(--text); }
.audit-entry__body small { color: var(--text-muted); }

/* ── 16. Status badges ───────────────────────────────────── */
.badge-borrador     { background: var(--bg-2); color: var(--text-muted); }
.badge-pendiente    { background: #fef9c3; color: #854d0e; border: 1px solid #fde047; }
.badge-en_revision  { background: #dbeafe; color: #1d4ed8; border: 1px solid #93c5fd; }
.badge-en_ejecucion { background: var(--orange-light); color: var(--orange); border: 1px solid rgba(255,102,0,.3); }
.badge-completada   { background: var(--green-bg); color: var(--green-dark); border: 1px solid #a7f3cf; }
.badge-cancelada    { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── 17. Breadcrumb ──────────────────────────────────────── */
.breadcrumb { font-size: .8125rem; }
.breadcrumb-item a { color: var(--orange); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray-400); }

/* ── 18. Filters bar ─────────────────────────────────────── */
.filters-bar {
  background: var(--white);
  border: 1px solid var(--bg-2);
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-xs);
}

/* ── 19. Empty states ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.empty-state__icon {
  width: 72px; height: 72px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gray-400);
  margin: 0 auto 1.25rem;
}
.empty-state h6 { color: var(--navy); font-weight: 700; }
.empty-state p  { color: var(--text-muted); font-size: .875rem; }

/* ── 20. Mobile Sidebar overlay ──────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(11,28,63,.5);
  backdrop-filter: blur(2px);
  z-index: 1040;
}
.sidebar-overlay.active { display: block; }

/* ── 21. Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sidebar-w: 220px; }
}

@media (max-width: 768px) {
  .app-main { padding: 1.25rem 1rem; }
  .admin-main { padding: 1.25rem 1rem; }
  .section-card__body { padding: 1.1rem; }
  .stat-card__value { font-size: 1.75rem; }

  /* Mobile sidebar: off-canvas */
  .admin-sidebar {
    position: fixed;
    top: 0; left: 0;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform .3s ease;
    height: 100vh;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { width: 100%; }

  /* Medio toggles: 2 cols on mobile */
  .medio-grid { grid-template-columns: 1fr 1fr !important; }

  /* Table: horizontal scroll */
  .table-responsive { -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  .auth-card { padding: 1.75rem 1.25rem; }
  .page-header { flex-direction: column; align-items: flex-start; }
  .stat-card { padding: 1rem; }
}

/* ── 22. Utilities ───────────────────────────────────────── */
.text-navy   { color: var(--navy) !important; }
.text-orange { color: var(--orange) !important; }
.bg-navy     { background: var(--navy) !important; }
.bg-orange   { background: var(--orange) !important; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.gap-btn { gap: .65rem; }
.letter-spacing { letter-spacing: .07em; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Focus visible para accesibilidad */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
