/* ===== ESTILO MODERNO UNIVERSITARIO 2026 ===== */

/* VARIABLES GLOBALES */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --background: #f4f7fb;
  --card-background: #ffffff;
  --text-color: #1e293b;
  --border-color: #e2e8f0;
  --shadow-standard: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== RESET Y CONFIGURACIÓN GENERAL ===== */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #eef4ff, #f8fafc);
  color: var(--text-color);
}

* {
  box-sizing: border-box;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
  max-width: 950px;
  width: 95%;
  margin: 30px auto;
  background: var(--card-background);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-standard);
  border: 1px solid var(--border-color);
}

/* ===== TIPOGRAFÍA ===== */
h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 700;
}

h2 {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 1rem;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
}

h3 {
  color: var(--primary);
  margin-top: 15px;
}

/* ===== DISEÑO GRID PARA FORMULARIOS ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 20px;
  }
}

/* ===== ESTILOS DE ENTRADAS, TEXTAREAS Y SELECTS ===== */
input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #ffffff;
  font-size: 14px;
  transition: all 0.25s ease-in-out;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== OPCIONES Y CHECKBOXES ===== */
.opciones {
  margin: 15px 0;
}

.opcion {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 14px;
}

.opcion input {
  width: auto;
}

/* ===== SECCIÓN DE RECLAMOS / NOTIFICACIONES ===== */
.reclamo {
  background: #fafcff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 18px;
  margin-top: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* ===== GALERÍA DE ARCHIVOS ===== */
.files {
  margin-top: 15px;
}

.files img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 10px;
  object-fit: contain;
}

/* ===== BOTONES ===== */
.botones {
  text-align: center;
  margin-top: 25px;
}

button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  margin-top: 30px;
  opacity: 0.8;
}

.footer img {
  max-width: 120px;
}

/* ===== ESTILOS DE IMPRESIÓN ===== */
@media print {

  @page {
    size: A4;
    margin: 12mm;
  }

  body {
    background: #ffffff !important;
  }

  .container {
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  .botones,
  button {
    display: none !important;
  }

  h2 {
    background: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: none;
  }

  .reclamo {
    border: 1px solid #999;
    box-shadow: none;
    background: #ffffff;
  }

  input,
  textarea {
    border: none;
    border-bottom: 1px solid #555;
    border-radius: 0;
    box-shadow: none;
  }
}
/* ===== FORZAR SIN NEGRITAS ===== */
h1,
h2,
h3,
h4,
h5,
h6,
label,
button,
.section-title,
.preview-box p,
.footer,
.footer *,
strong,
b {
  font-weight: 400 !important;
}