/* === AVTC Consultores - Estilos para documentos oficiales (PDF A4) === */

@page {
  size: A4;
  margin: 25mm;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #000;
  line-height: 1.6;
  background: white;
  -webkit-print-color-adjust: exact;
  margin: 0;
}

/* Encabezado institucional */
header {
  border-top: 6px solid #004e92;
  border-bottom: 2px solid #004e92;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 25px;
}

header h1 {
  color: #004e92;
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}

header .subtitle {
  font-size: 14px;
  font-style: italic;
  color: #333;
}

header .note {
  font-size: 12px;
  margin-top: 6px;
  color: #555;
}

/* Título del documento */
.title {
  color: #004e92;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.subtitle-small {
  text-align: center;
  font-size: 13px;
  color: #444;
  margin-bottom: 20px;
}

/* Campos */
.field {
  display: inline-block;
  background: #f2f2f2;
  border: 1px solid #ccc;
  width: 200px;
  height: 20px;
  margin-left: 5px;
  vertical-align: middle;
}

.field.wide {
  width: 70%;
}

.box {
  width: 100%;
  height: 70px;
  background: #f2f2f2;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

/* Listado */
ul.checks {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px 0;
}

ul.checks li {
  margin-bottom: 5px;
}

/* Instrucciones */
.instructions {
  font-size: 13px;
  margin-top: 15px;
  color: #333;
  text-align: justify;
}

/* Pie de página */
footer {
  border-top: 2px solid #004e92;
  padding-top: 10px;
  margin-top: 30px;
  text-align: center;
  font-size: 11px;
  color: #333;
  line-height: 1.5;
}

footer .version {
  text-align: right;
  font-style: italic;
  margin-top: 5px;
}

/* Botón para guardar PDF */
.pdf-button {
  text-align: center;
  margin: 20px 0;
}

.pdf-button button {
  background-color: #004e92;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pdf-button button:hover {
  background-color: #0074e4;
}

.pdf-button p {
  font-size: 12px;
  color: #444;
  margin-top: 8px;
}

/* Ocultar botón al imprimir */
@media print {
  .pdf-button {
    display: none;
  }
}