/* =====================================================
   DROGUERÍA GENERAL PAZ — Sistema de diseño
   Basado en mockup refactor/mockup.html
   Paleta institucional:
     #004398  Azul principal
     #1a4c8f  Azul medio
     #4e7db1  Azul claro
     #b6c6d3  Azul grisáceo
     #002d6b  Azul oscuro
     #001f4d  Azul muy oscuro
     #F5F8FC  Casi blanco
     #EEF3FA  Azul ultraclaro
   Tipografía: DM Sans (Google Fonts)
   ===================================================== */

/* =====================================================
   SVG ICON HELPERS
   ===================================================== */
.dg-trust-icon svg, .dg-service-icon svg,
.dg-benefit-icon svg { width: 20px; height: 20px; }
.dg-contact-icon svg { width: 20px; height: 20px; }
.dg-mini-icon svg    { width: 18px; height: 18px; }
.dg-whatsapp-float svg { display: block; }
.dg-about-badge svg  { width: 14px; height: 14px; }
nav svg, .dg-topbar svg, .dg-inner-header h1 svg,
.dg-system-title svg, .dg-form-box h2 svg { vertical-align: middle; }

/* =====================================================
   RESET Y BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  background: #E4E9F5;
  color: #002d6b;
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =====================================================
   TOPBAR
   ===================================================== */
.dg-topbar {
  background: #002d6b;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.dg-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.dg-topbar-item a {
  color: rgba(255,255,255,.72);
  transition: color .15s;
}

.dg-topbar-item a:hover { color: #fff; }

/* =====================================================
   NAVEGACIÓN
   ===================================================== */
.dg-nav {
  background: #E4E9F5;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5edf5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,67,152,.06);
}

.dg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dg-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.dg-logo-text {
  font-size: 15px;
  font-weight: 800;
  color: #004398;
  letter-spacing: -.4px;
  line-height: 1.15;
}

.dg-logo-sub {
  font-size: 10px;
  color: #4e7db1;
  font-weight: 400;
  display: block;
  margin-top: 1px;
}

.dg-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.dg-nav-links a {
  font-size: 13px;
  color: #4e7db1;
  font-weight: 500;
  transition: color .15s;
}

.dg-nav-links a:hover { color: #004398; }

.dg-nav-cta {
  background: #004398;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s;
}

.dg-nav-cta:hover { background: #003070; color: #fff !important; }

/* Chip de usuario logueado (sistema) */
.dg-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4e7db1;
  background: #EEF3FA;
  padding: 7px 12px;
  border-radius: 8px;
  max-width: 230px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dg-user-badge svg { flex-shrink: 0; color: #004398; }

/* Botón Salir (compacto, rojo) */
.dg-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c0392b;
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background .15s;
}

.dg-logout-btn:hover { background: #a93226; color: #fff !important; }

/* Botón de logout animado (Uiverse.io — vinodjangid07), paleta institucional */
.logout-Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(255, 65, 65);
  flex-shrink: 0;
  padding: 0;
}

.logout-sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logout-sign svg { width: 17px; }
.logout-sign svg path { fill: white; }

.logout-text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: .3s;
  white-space: nowrap;
}

.logout-Btn:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}

.logout-Btn:hover .logout-sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}

.logout-Btn:hover .logout-text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}

.logout-Btn:active { transform: translate(2px, 2px); }

/* Botón animado "Ingresar al sistema" (azul, candado) — nav público */
.login-Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #004398;
  flex-shrink: 0;
  padding: 0;
}

.login-sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-sign svg { width: 16px; }
.login-sign svg path { fill: white; }

.login-text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition-duration: .3s;
  white-space: nowrap;
}

.login-Btn:hover {
  width: 210px;
  border-radius: 40px;
  transition-duration: .3s;
}

.login-Btn:hover .login-sign {
  width: 22%;
  transition-duration: .3s;
  padding-left: 16px;
}

.login-Btn:hover .login-text {
  opacity: 1;
  width: 78%;
  transition-duration: .3s;
  padding-right: 12px;
}

.login-Btn:active { transform: translate(2px, 2px); }

.dg-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #004398;
  font-size: 24px;
}

/* =====================================================
   HERO (solo INDEX.html)
   ===================================================== */
.dg-hero {
  background: linear-gradient(135deg, #0050b8 0%, #004398 45%, #002d6b 100%);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dg-hero-left { max-width: 520px; }

.dg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.92);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.22);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dg-hero h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.7px;
  margin-bottom: 14px;
}

.dg-hero-sub {
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.dg-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dg-btn-primary {
  background: #fff;
  color: #004398;
  padding: 12px 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: opacity .15s;
  border: none;
}

.dg-btn-primary:hover { opacity: .88; }

.dg-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,.88);
  padding: 12px 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.38);
  transition: background .15s, border-color .15s;
}

.dg-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

.dg-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.dg-hero-stat {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 14px 22px;
  text-align: center;
  min-width: 120px;
}

.dg-hero-stat-num {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.7px;
  line-height: 1;
}

.dg-hero-stat-lbl {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.dg-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e5edf5;
  background: #E4E9F5;
}

.dg-trust-item {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid #e5edf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.dg-trust-item:last-child { border-right: none; }

.dg-trust-icon {
  width: 34px;
  height: 34px;
  background: #EEF3FA;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004398;
  font-size: 17px;
}

.dg-trust-num {
  font-size: 18px;
  font-weight: 800;
  color: #004398;
  letter-spacing: -.5px;
  line-height: 1.1;
}

.dg-trust-lbl {
  font-size: 11px;
  color: #4e7db1;
  font-weight: 500;
}

/* =====================================================
   UTILIDADES DE SECCIÓN
   ===================================================== */
.dg-section { padding: 40px; }
.dg-section-alt { padding: 40px; background: #E4E9F5; }

.dg-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #1a4c8f;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dg-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #1a4c8f;
  border-radius: 2px;
  flex-shrink: 0;
}

.dg-section-title {
  font-size: 22px;
  font-weight: 800;
  color: #002d6b;
  letter-spacing: -.5px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.dg-section-sub {
  font-size: 14px;
  color: #4e7db1;
  margin-bottom: 28px;
  line-height: 1.55;
}

/* =====================================================
   CARRUSEL
   ===================================================== */
.dg-carousel-section {
  padding: 40px;
  background: #E4E9F5;
}

.dg-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.dg-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.dg-slide-counter {
  font-size: 13px;
  font-weight: 500;
  color: #4e7db1;
  min-width: 40px;
  text-align: right;
}

.dg-nav-btns { display: flex; gap: 6px; }

.dg-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid #b6c6d3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #004398;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  transition: all .15s;
}

.dg-nav-btn:hover { background: #EEF3FA; border-color: #4e7db1; }
.dg-nav-btn:active { transform: scale(.93); }

.dg-carousel-outer {
  overflow: hidden;
  border-radius: 14px;
}

.dg-carousel-track {
  display: flex;
  transition: transform .44s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.dg-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* --- Tarjeta simple --- */
.dg-card {
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.dg-card:hover { border-color: #4e7db1; }

.dg-card-visual {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  font-size: 42px;
}

.dg-card-visual.bg-azul  { background: #EEF3FA; }
.dg-card-visual.bg-verde { background: #E8F5E9; }
.dg-card-visual.bg-ambar { background: #FFF8E1; }

.dg-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.dg-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dg-badge-oferta { background: #004398; color: #fff; }
.dg-badge-nuevo  { background: #1B5E20; color: #E8F5E9; }
.dg-badge-promo  { background: #7B1FA2; color: #F3E5F5; }
.dg-badge-dest   { background: #1a4c8f; color: #EEF3FA; }

.dg-pct-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  background: #004398;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}

.dg-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dg-card-cat {
  font-size: 10px;
  font-weight: 700;
  color: #4e7db1;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.dg-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #002d6b;
  letter-spacing: -.2px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.dg-card-desc {
  font-size: 12px;
  color: #4e7db1;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.dg-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.dg-price-new {
  font-size: 20px;
  font-weight: 800;
  color: #004398;
  letter-spacing: -.6px;
}

.dg-price-old {
  font-size: 13px;
  color: #b6c6d3;
  text-decoration: line-through;
}

.dg-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #EEF3FA;
  color: #004398;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #dce8f5;
  text-decoration: none;
  transition: background .15s;
}

.dg-card-btn:hover { background: #dce8f5; }

/* --- Tarjeta ancha (ocupa 2 columnas) --- */
.dg-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 13px;
  overflow: hidden;
  transition: border-color .2s;
}

.dg-card-wide:hover { border-color: #4e7db1; }

.dg-wide-left {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dg-wide-left.bg-azul-osc  { background: #004398; }
.dg-wide-left.bg-verde-osc { background: #1B5E20; }

.dg-wide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.92);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.22);
  text-transform: uppercase;
  letter-spacing: .06em;
  width: fit-content;
}

.dg-wide-left h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.4px;
  line-height: 1.22;
  margin-bottom: 10px;
}

.dg-wide-left p {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.dg-wide-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #004398;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  border: none;
  transition: opacity .15s;
}

.dg-wide-cta:hover { opacity: .86; }

.dg-wide-right {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.dg-mini-item {
  background: #F5F8FC;
  border: 1px solid #dce8f5;
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dg-mini-icon {
  width: 34px;
  height: 34px;
  background: #EEF3FA;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004398;
  font-size: 16px;
  flex-shrink: 0;
}

.dg-mini-text { flex: 1; }

.dg-mini-name {
  font-size: 12px;
  font-weight: 700;
  color: #002d6b;
  margin-bottom: 3px;
  line-height: 1.2;
}

.dg-mini-price {
  font-size: 14px;
  font-weight: 800;
  color: #004398;
  letter-spacing: -.4px;
}

.dg-mini-old {
  font-size: 11px;
  color: #b6c6d3;
  text-decoration: line-through;
  margin-left: 6px;
}

.dg-pct-pill {
  background: #004398;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.dg-pct-pill.verde { background: #1B5E20; color: #E8F5E9; }

.dg-timer-bar {
  height: 3px;
  background: #dce8f5;
  border-radius: 3px;
  margin-top: 16px;
  overflow: hidden;
}

.dg-timer-fill {
  height: 100%;
  background: #004398;
  border-radius: 3px;
  width: 0%;
}

.dg-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.dg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b6c6d3;
  cursor: pointer;
  transition: all .22s ease;
  border: none;
  padding: 0;
}

.dg-dot.activo {
  width: 24px;
  border-radius: 4px;
  background: #004398;
}

/* =====================================================
   SERVICIOS
   ===================================================== */
.dg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dg-service-card {
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 13px;
  padding: 20px;
  transition: border-color .2s;
}

.dg-service-card:hover { border-color: #4e7db1; }

.dg-service-icon {
  width: 42px;
  height: 42px;
  background: #EEF3FA;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004398;
  font-size: 20px;
  margin-bottom: 14px;
}

.dg-service-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #002d6b;
  margin-bottom: 6px;
  letter-spacing: -.2px;
}

.dg-service-card p {
  font-size: 12px;
  color: #4e7db1;
  line-height: 1.55;
}

/* =====================================================
   QUIÉNES SOMOS
   ===================================================== */
.dg-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.dg-about-visual {
  background: #EEF3FA;
  border-radius: 16px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #4e7db1;
  font-size: 64px;
}

.dg-about-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #004398;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dg-about-text h2 {
  font-size: 22px;
  font-weight: 800;
  color: #002d6b;
  letter-spacing: -.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.dg-about-text p {
  font-size: 14px;
  color: #4e7db1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.dg-about-link {
  font-size: 13px;
  color: #004398;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #EEF3FA;
  padding-bottom: 2px;
  transition: border-color .15s;
}

.dg-about-link:hover { border-color: #004398; }

/* =====================================================
   BENEFICIOS
   ===================================================== */
.dg-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dg-benefit-item {
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 13px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s;
}

.dg-benefit-item:hover { border-color: #4e7db1; }

.dg-benefit-icon {
  width: 38px;
  height: 38px;
  background: #004398;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.dg-benefit-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #002d6b;
  margin-bottom: 5px;
  letter-spacing: -.2px;
}

.dg-benefit-item p {
  font-size: 12px;
  color: #4e7db1;
  line-height: 1.55;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.dg-cta-banner {
  margin: 0 40px 40px;
  background: #1a4c8f;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dg-cta-banner h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.4px;
  margin-bottom: 5px;
}

.dg-cta-banner p {
  font-size: 13px;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}

.dg-cta-banner-btn {
  background: #fff;
  color: #004398;
  padding: 12px 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: none;
  transition: opacity .15s;
  text-decoration: none;
}

.dg-cta-banner-btn:hover { opacity: .88; }

/* =====================================================
   CONTACTO
   ===================================================== */
.dg-contact {
  background: #002d6b;
  padding: 40px;
}

.dg-contact-eyebrow {
  color: rgba(255,255,255,.45);
}

.dg-contact-eyebrow::before {
  background: rgba(255,255,255,.45);
}

.dg-contact h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.dg-contact-sub {
  font-size: 14px;
  color: rgba(255,255,255,.58);
  margin-bottom: 28px;
  line-height: 1.5;
}

.dg-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dg-contact-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: background .15s;
}

.dg-contact-item:hover { background: rgba(255,255,255,.1); }

.dg-contact-icon {
  font-size: 18px;
  color: #4e7db1;
  flex-shrink: 0;
}

.dg-contact-label {
  font-size: 10px;
  color: rgba(255,255,255,.42);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

.dg-contact-value {
  font-size: 13px;
  color: rgba(255,255,255,.88);
  line-height: 1.35;
  font-weight: 500;
}

.dg-contact-value a {
  color: rgba(255,255,255,.88);
  transition: color .15s;
}

.dg-contact-value a:hover { color: #fff; }

/* =====================================================
   FOOTER
   ===================================================== */
.dg-footer {
  background: #001f4d;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dg-footer-left {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.82);
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dg-anmat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(46,125,50,.22);
  color: #81C784;
  border: 1px solid rgba(46,125,50,.35);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}

.dg-footer-right {
  font-size: 11px;
  color: rgba(255,255,255,.32);
}

/* =====================================================
   WHATSAPP FLOTANTE
   ===================================================== */
.dg-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.dg-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

/* =====================================================
   PÁGINAS INTERNAS — Header de sección
   ===================================================== */
.dg-inner-header {
  background: #004398;
  padding: 32px 40px;
}

.dg-inner-header h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.dg-inner-header p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}

/* =====================================================
   FORMULARIOS — Login, Contacto, Descargar, Lista
   ===================================================== */
.dg-form-section {
  padding: 40px;
  background: #E4E9F5;
}

.dg-form-box {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 14px;
  padding: 32px;
}

.dg-form-box h2 {
  font-size: 18px;
  font-weight: 800;
  color: #002d6b;
  letter-spacing: -.4px;
  margin-bottom: 6px;
}

.dg-form-box p.dg-form-hint {
  font-size: 13px;
  color: #4e7db1;
  margin-bottom: 24px;
  line-height: 1.5;
}

.dg-form-group {
  margin-bottom: 16px;
}

.dg-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #002d6b;
  margin-bottom: 6px;
}

.dg-form-input,
.dg-form-textarea,
.dg-form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #b6c6d3;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #002d6b;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}

.dg-form-input:focus,
.dg-form-textarea:focus,
.dg-form-select:focus {
  outline: none;
  border-color: #004398;
  box-shadow: 0 0 0 3px rgba(0,67,152,.1);
}

.dg-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.dg-form-radios {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.dg-form-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #002d6b;
  cursor: pointer;
}

.dg-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.dg-form-submit {
  background: #004398;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dg-form-submit:hover { background: #003070; }

.dg-btn-online { background: #1B5E20; }
.dg-btn-online:hover { background: #145217; }

/* Acceso al panel administrativo desde el login */
.dg-admin-access {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e5edf5;
  text-align: center;
}

.dg-admin-sep {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9bb0c4;
  margin-bottom: 12px;
}

.dg-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EEF3FA;
  color: #004398;
  border: 1px solid #dce8f5;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  transition: background .15s, border-color .15s;
}

.dg-admin-link:hover { background: #dce8f5; border-color: #4e7db1; }

.dg-form-secondary {
  background: #EEF3FA;
  color: #004398;
  border: 1px solid #dce8f5;
  padding: 12px 24px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}

.dg-form-secondary:hover { background: #dce8f5; }

/* =====================================================
   TABLA DE PRODUCTOS / RESULTADOS — Modern Data Grid
   ===================================================== */
.dg-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #dce8f5;
  box-shadow: 0 1px 4px rgba(0,67,152,.06);
}

.dg-table,
table#rounded-corner {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
}

/* Header */
.dg-table thead,
table#rounded-corner thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.dg-table th,
table#rounded-corner thead th,
table#rounded-corner th {
  background: #003a82;
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.1);
  user-select: none;
}

.dg-table th:last-child,
table#rounded-corner th:last-child { border-right: none; }

.dg-table th a,
table#rounded-corner thead th a,
table#rounded-corner th a {
  color: rgba(255,255,255,.9);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dg-table th a:hover,
table#rounded-corner th a:hover { color: #fff; }

/* Cells */
.dg-table td,
table#rounded-corner td {
  padding: 7px 12px;
  border-bottom: 1px solid #EEF3FA;
  color: #002d6b;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.4;
}

/* Alternating rows */
.dg-table tr:nth-child(even) td,
table#rounded-corner tbody tr:nth-child(even) td {
  background: #F7FAFD;
}

/* Row hover */
.dg-table tr:hover td,
table#rounded-corner tbody tr:hover td {
  background: #EEF3FA;
  transition: background .1s;
}

/* Last row — sin borde inferior */
.dg-table tbody tr:last-child td,
table#rounded-corner tbody tr:last-child td {
  border-bottom: none;
}

/* Código — monospace, color secundario */
table#rounded-corner td:first-child {
  font-size: 11px;
  font-family: 'Courier New', Courier, monospace;
  color: #4e7db1;
  font-weight: 600;
  white-space: nowrap;
  width: 72px;
}

/* Descripción — columna principal, más prominente */
table#rounded-corner td:nth-child(2) {
  font-weight: 600;
  color: #002d6b;
  min-width: 200px;
}

/* Imágenes dentro de tabla — thumbnail compacto */
.dg-table td img,
table#rounded-corner td img {
  height: 36px !important;
  width: auto !important;
  border-radius: 6px;
  display: block;
  object-fit: contain;
}

/* Input de cantidad (Agrega) */
table#rounded-corner td input[type="text"],
table#rounded-corner td input:not([type="submit"]):not([type="image"]):not([type="hidden"]):not([type="button"]) {
  width: 58px;
  padding: 5px 6px;
  border: 1.5px solid #b6c6d3;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #002d6b;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

table#rounded-corner td input[type="text"]:focus,
table#rounded-corner td input:not([type="submit"]):not([type="image"]):not([type="hidden"]):not([type="button"]):focus {
  outline: none;
  border-color: #004398;
  box-shadow: 0 0 0 2px rgba(0,67,152,.12);
}

/* Imágenes-botón de acción (submit tipo image) */
table#rounded-corner td input[type="image"] {
  cursor: pointer;
  border-radius: 6px;
  opacity: .75;
  transition: opacity .15s, transform .1s;
  vertical-align: middle;
  height: 28px !important;
  width: auto !important;
}

table#rounded-corner td input[type="image"]:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Links dentro de tabla (eliminar) */
table#rounded-corner td a img {
  height: 22px !important;
  width: auto !important;
  border-radius: 4px;
  opacity: .7;
  transition: opacity .15s;
}

table#rounded-corner td a:hover img { opacity: 1; }

/* Fila de totales — destacada */
table#rounded-corner tbody tr:last-child td {
  font-weight: 800;
  background: #EEF3FA !important;
  color: #004398;
  font-size: 13px;
  border-top: 2px solid #dce8f5;
}

/* =====================================================
   SISTEMA — Búsqueda de productos (rqlcc_buscav3)
   ===================================================== */
.dg-system-section {
  padding: 28px 40px;
}

.dg-system-title {
  font-size: 16px;
  font-weight: 800;
  color: #002d6b;
  letter-spacing: -.3px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Search bar */
.dg-search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: stretch;
}

.dg-search-input {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid #b6c6d3;
  border-radius: 9px;
  font-family: inherit;
  font-size: 14px;
  color: #002d6b;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

.dg-search-input:focus {
  outline: none;
  border-color: #004398;
  box-shadow: 0 0 0 3px rgba(0,67,152,.1);
}

.dg-search-btn {
  background: #004398;
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dg-search-btn:hover { background: #003070; }
.dg-search-btn:active { transform: scale(.97); }

/* Results container */
.dg-results-wrap {
  max-height: 420px;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid #dce8f5;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,67,152,.06);
  /* Scrollbar personalizado */
  scrollbar-width: thin;
  scrollbar-color: #b6c6d3 transparent;
}

.dg-results-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.dg-results-wrap::-webkit-scrollbar-thumb {
  background: #b6c6d3;
  border-radius: 3px;
}

.dg-results-wrap::-webkit-scrollbar-track {
  background: transparent;
}

/* Cart section */
.dg-cart-section {
  background: #F5F8FC;
  border: 1px solid #dce8f5;
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 28px;
}

.dg-cart-confirm-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.dg-cart-confirm-bar input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1.5px solid #b6c6d3;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13px;
  color: #002d6b;
  background: #fff;
  transition: border-color .15s;
}

.dg-cart-confirm-bar input[type="text"]:focus {
  outline: none;
  border-color: #004398;
  box-shadow: 0 0 0 3px rgba(0,67,152,.08);
}

.dg-confirm-btn {
  background: #1B5E20;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}

.dg-confirm-btn:hover { background: #145217; }

/* Barra de "Agregar seleccionados" */
.dg-add-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #EEF3FA;
  border: 1px solid #dce8f5;
  border-radius: 0 0 12px 12px;
  margin-top: -1px;
  flex-wrap: wrap;
}

.dg-add-bar-hint {
  font-size: 12px;
  color: #4e7db1;
  line-height: 1.4;
}

.dg-add-btn {
  background: #004398;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dg-add-btn:hover { background: #003070; }

/* Sin resultados */
.dg-empty-results {
  padding: 24px;
  background: #F5F8FC;
  border: 1px solid #dce8f5;
  border-radius: 12px;
  font-size: 14px;
  color: #4e7db1;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Carrito vacío */
.dg-empty-cart {
  font-size: 13px;
  color: #4e7db1;
  margin: 8px 0 4px;
  line-height: 1.5;
}

/* =====================================================
   GRID DE PRODUCTOS (productos.html)
   ===================================================== */
.dg-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.dg-product-card {
  border: 1px solid #dce8f5;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.dg-product-card:hover {
  border-color: #4e7db1;
  box-shadow: 0 8px 22px rgba(0,67,152,.1);
  transform: translateY(-3px);
}

.dg-product-card-media {
  height: 190px;
  background: linear-gradient(160deg, #F5F8FC 0%, #EEF3FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-bottom: 1px solid #EEF3FA;
}

.dg-product-card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .3s ease;
}

.dg-product-card:hover .dg-product-card-media img { transform: scale(1.06); }

.dg-product-card-body {
  padding: 14px 16px 16px;
}

.dg-product-card-cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4e7db1;
  background: #F0F4F9;
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 8px;
}

.dg-product-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #002d6b;
  margin-bottom: 4px;
  letter-spacing: -.2px;
  line-height: 1.25;
}

.dg-product-card-desc {
  font-size: 12px;
  color: #4e7db1;
  line-height: 1.5;
}

/* =====================================================
   INTRO destacado de PRODUCTOS
   ===================================================== */
.dg-prod-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #F5F8FC;
  border: 1px solid #dce8f5;
  border-left: 4px solid #004398;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 28px;
}

.dg-prod-intro-main {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 280px;
}

.dg-prod-intro-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: #EEF3FA;
  color: #004398;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dg-prod-intro h2 {
  font-size: 21px;
  font-weight: 800;
  color: #002d6b;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.dg-prod-intro p {
  font-size: 13px;
  color: #4e7db1;
  line-height: 1.55;
  max-width: 560px;
}

.dg-prod-intro p strong { color: #004398; font-weight: 700; }

.dg-prod-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #004398;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}

.dg-prod-intro-btn:hover { background: #003070; transform: translateY(-2px); }

@media (max-width: 600px) {
  .dg-prod-intro-btn { width: 100%; justify-content: center; }
}

/* =====================================================
   PÁGINA QUIÉNES SOMOS — extended
   ===================================================== */
.dg-quienes-content {
  padding: 40px;
  max-width: 820px;
}

.dg-quienes-content h1 {
  font-size: 26px;
  font-weight: 800;
  color: #002d6b;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.dg-quienes-content p {
  font-size: 15px;
  color: #4e7db1;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* =====================================================
   RESPONSIVE — TABLET (≤960px)
   ===================================================== */
@media (max-width: 960px) {
  .dg-topbar { padding: 6px 20px; }
  .dg-nav { padding: 0 20px; }
  .dg-hero { padding: 36px 20px; flex-direction: column; align-items: flex-start; }
  .dg-hero-stats { flex-direction: row; flex-wrap: wrap; }
  .dg-hero-stat { min-width: 100px; }
  .dg-carousel-section, .dg-section, .dg-section-alt { padding: 28px 20px; }
  .dg-cta-banner { margin: 0 20px 28px; padding: 22px 24px; }
  .dg-contact { padding: 28px 20px; }
  .dg-footer { padding: 16px 20px; }
  .dg-services-grid { grid-template-columns: 1fr 1fr; }
  .dg-contact-grid { grid-template-columns: 1fr 1fr; }
  .dg-about { grid-template-columns: 1fr; }
  .dg-nav-links { display: none; }
  .dg-hamburger { display: flex; }
  .dg-inner-header { padding: 24px 20px; }
  .dg-form-section { padding: 28px 20px; }
  .dg-system-section { padding: 20px; }
  .dg-products-grid { grid-template-columns: repeat(2, 1fr); }
  .dg-quienes-content { padding: 28px 20px; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤600px)
   ===================================================== */
@media (max-width: 600px) {
  .dg-topbar { display: none; }
  .dg-trust { grid-template-columns: 1fr 1fr; }
  .dg-trust-item:nth-child(2) { border-right: none; }
  .dg-trust-item:nth-child(3) { border-top: 1px solid #e5edf5; }
  .dg-trust-item:nth-child(4) { border-top: 1px solid #e5edf5; border-right: none; }
  .dg-slide { grid-template-columns: 1fr; }
  .dg-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .dg-services-grid { grid-template-columns: 1fr; }
  .dg-benefits-grid { grid-template-columns: 1fr; }
  .dg-contact-grid { grid-template-columns: 1fr; }
  .dg-cta-banner { flex-direction: column; align-items: flex-start; }
  .dg-hero h1 { font-size: 24px; }
  .dg-section-title { font-size: 18px; }
  .dg-form-box { padding: 20px; }
  .dg-products-grid { grid-template-columns: 1fr 1fr; }
  .dg-search-bar { flex-direction: column; }
  .dg-search-input { width: 100%; }
  .dg-inner-header h1 { font-size: 20px; }
  .dg-system-section { padding: 20px 16px; }
  .dg-add-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dg-cart-section { padding: 16px; }
  table#rounded-corner td:first-child { width: auto; }
}

/* ===== Sesion iniciada en el nav publico ===== */
.dg-session-chip { display: inline-flex; align-items: center; gap: 8px; }
.dg-session-go {
  display: inline-flex; align-items: center; gap: 10px; max-width: 280px;
  background: #1B5E20; color: #fff; padding: 6px 18px 6px 15px; border-radius: 30px;
  text-decoration: none; white-space: nowrap; overflow: hidden;
  transition: background .15s, box-shadow .15s;
}
.dg-session-go svg { flex-shrink: 0; color: #fff; stroke: #fff; }
.dg-session-go:hover { background: #154a18; box-shadow: 0 4px 14px rgba(27,94,32,.35); }
.dg-session-txt { display: flex; flex-direction: column; line-height: 1.15; overflow: hidden; }
.dg-session-hi { font-size: 11px; font-weight: 700; color: #fff; opacity: .9; text-transform: uppercase; letter-spacing: .03em; overflow: hidden; text-overflow: ellipsis; }
.dg-session-cta { font-size: 13.5px; font-weight: 800; color: #fff; }
.dg-session-out {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
  background: rgba(229,57,53,.12); color: #e53935; text-decoration: none;
  transition: background .15s, color .15s;
}
.dg-session-out:hover { background: #e53935; color: #fff; }
