.elementor-3841 .elementor-element.elementor-element-4b3e3d88{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for html, class: .elementor-element-7091390 */.repo-table{
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}

.repo-table table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid #e7edf3;
  border-radius: 10px;
  overflow: hidden;
}

.repo-table th, 
.repo-table td{
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e7edf3;
  vertical-align: middle;
}

.repo-table th{
  background: #f8f9fb;
  font-weight: 700;
  color: #0a3d62;
}

.repo-table tr:hover td{
  background: #f4f8ff;
}

/* Botón */
.btn--primary{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #27ae60;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap; /* <-- evita que se divida en 2 líneas */
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.btn--primary:hover{
  background: #2ecc71;
}/* End custom CSS */
/* Start custom CSS *//* ====== Paleta ====== */
:root{
  --azul:#0a3d62;
  --verde:#27ae60;
  --verde-light:#2ecc71;
  --borde:#e7edf3;
  --ink:#203047;
  --meta:#5b6775;
}

/* ====== Grid responsive ====== */
.repo{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  gap:22px;
  grid-template-columns:repeat(3,1fr);
}
@media (max-width:1100px){ .repo{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:680px){  .repo{ grid-template-columns:1fr; } }

/* ====== Tarjeta ====== */
.doc{
  position:relative;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--borde);
  border-radius:14px;
  padding:22px;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  transition:transform .12s ease, box-shadow .12s ease;
  min-height: 360px; /* ajusta según tu contenido */
}
.doc:hover{ transform:translateY(-2px); box-shadow:0 8px 20px rgba(0,0,0,.08); }

.doc h3{
  margin:8px 0 10px;
  color:var(--azul);
  font-size:1.25rem;
  line-height:1.2;
}
.meta{
  margin:6px 0;
  color:var(--meta);
  font-size:.95rem;
}
.meta i{ color:var(--verde); margin-right:8px; }
.meta strong{ color:#2d3748; }

.desc{
  margin:12px 0 16px;
  color:#384152;
  line-height:1.5;
}

/* ====== Badge por tipo ====== */
.badge{
  position:absolute;
  top:0; left:22px;
  transform:translateY(-50%);
  padding:6px 12px;
  border-radius:999px;
  font-weight:700; font-size:.8rem;
  color:#fff;
  background:var(--azul);
}
.badge.manual{ background:var(--azul); }     /* puedes definir .guia, .ley, etc. */
.badge.guia{ background:var(--verde); }
.badge.ley{ background:#c0392b; }
.badge.norma{ background:#f39c12; }

/* ====== Botón ====== */
.btn--primary{
  width:100%;
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:var(--verde);
  color:#fff !important;
  padding:14px 16px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none !important;
  border:0;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  margin-top:auto;       /* empuja el botón al fondo de la tarjeta */
}
.btn--primary i, .btn--primary svg{
  color:inherit !important;
  fill:currentColor !important;
}
a.btn--primary:link,
a.btn--primary:visited,
a.btn--primary:hover,
a.btn--primary:focus,
a.btn--primary:active{
  color:#fff !important;
  text-decoration:none !important;
}
.btn--primary:hover,
.btn--primary:focus{
  background:var(--verde-light);      /* hover más claro, no más oscuro */
  transform:scale(1.02);
  box-shadow:0 6px 16px rgba(39,174,96,.25);
}

/* Opcional: info de archivo/fuente bajo el botón */
.file-size{
  display:block;
  margin-top:8px;
  color:#6b7280;
}
.file-size a{ color:var(--azul); text-decoration:underline; }/* End custom CSS */