/* CSS específico para la página de Presentación del Rector */

/* Ajuste para el contenido principal */
.main-content {
  padding-top: 70px; /* Espacio para el header fijo */
  min-height: calc(100vh - 60px);
}

/* Sección del título */
.titulo-section {
  background-color: #f8f9fa;
  text-align: center;
}

.titulo-principal {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.barra-colores {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.barra-img {
  max-width: 100%;
  height: auto;
  max-height: 15px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sección de requisitos */
.requisitos-section {
  background-color: white;
  padding: 30px 0;
}

.requisitos-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.requisitos-titulo {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #0077b6;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.requisitos-info {
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.inscripcion-info {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #858585;
  margin-bottom: 10px;
  text-align: left;
}

.link-web {
  color: #0077b6;
  text-decoration: none;
  font-weight: normal;
}

.link-web:hover {
  text-decoration: underline;
}

.requisitos-intro {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  color: #858585;
  margin: 20px 0 30px;
  text-align: left;
}

.requisito-item {
  background: transparent;
  padding: 0;
  margin-bottom: 15px;
}

.requisito-numero {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: #0077b6;
  margin-bottom: 5px;
  text-align: left;
}

.requisito-descripcion {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #858585;
  text-align: left;
  margin: 0;
}

/* Estilos para información del voucher */
.voucher-info {
  margin-top: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #0077b6;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.voucher-detalle {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: left;
}

.voucher-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.voucher-imagen {
  flex: 0 0 50%;
  text-align: center;
}

.voucher-datos {
  flex: 1;
  padding-left: 10px;
}

.voucher-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.voucher-lista li {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  border-left: 3px solid #0077b6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.voucher-lista li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voucher-lista li strong {
  color: #0077b6;
  font-weight: bold;
  font-size: 0.9rem;
}

.voucher-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voucher-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Estilos para las imágenes del DNI */
.dni-imagenes-container {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  justify-content: center;
  align-items: flex-start;
}

.dni-imagen {
  flex: 1;
  text-align: center;
  max-width: 300px;
  min-width: 250px;
}

.dni-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

/* Ajuste específico para DNIV1 */
.dni-imagen:first-child .dni-img {
  object-fit: contain;
  background: #f8f9fa;
}

/* Estilos para las imágenes de las fotos pasaporte */
.foto-imagenes-container {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  justify-content: center;
  align-items: flex-start;
}

.foto-imagen {
  flex: 1;
  text-align: center;
  max-width: 250px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.foto-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 3px solid #0077b6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  margin: 0 auto;
  display: block;
}

.foto-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 119, 182, 0.3);
  border-color: #005a8b;
}

.foto-label {
  margin-top: 15px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0077b6;
  text-align: center;
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid #e9ecef;
  display: inline-block;
}

.dni-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.dni-label {
  margin-top: 15px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0077b6;
  text-align: center;
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid #e9ecef;
  display: inline-block;
}

/* Barra de colores final */
.barra-final-container {
  text-align: center;
  padding: 20px 0;
}

.barra-final-img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.barra-final-img:hover {
  opacity: 1;
}

/* Estilos para requisitos de carné y prospecto */
.requisito-carne {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #dee2e6;
}

.requisito-carne-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 3px solid #0077b6;
}

.requisito-carne-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0, 119, 182, 0.12);
}

.requisito-carne-item:last-child {
  margin-bottom: 0;
}

.requisito-numero-carne {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0077b6 0%, #005a8b 100%);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.3rem;
  margin-right: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 119, 182, 0.25);
}

.requisito-contenido-carne {
  flex: 1;
}

.requisito-titulo-carne {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.requisito-detalle-carne {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .titulo-principal {
    font-size: 2.2rem;
  }

  .barra-img {
    max-height: 50px;
  }

  .requisito-carne {
    padding: 20px;
  }

  .requisito-carne-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .requisito-numero-carne {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .titulo-section {
    padding: 30px 0;
  }

  .titulo-principal {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
    padding: 0 20px;
  }

  .barra-img {
    max-height: 40px;
  }

  .voucher-info {
    padding: 15px;
    margin-top: 15px;
  }

  .voucher-img {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .titulo-section {
    padding: 25px 0;
  }
  .dni-imagenes-container {
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .titulo-principal {
    font-size: 1.5rem;
    padding: 0 15px;
  }

  .barra-img {
    max-height: 35px;
  }
}

@media (max-width: 480px) {
  .titulo-section {
    padding: 20px 0;
  }

  .titulo-principal {
    font-size: 1.3rem;
    padding: 0 10px;
    line-height: 1.2;
  }

  .barra-img {
    max-height: 30px;
  }

  .voucher-info {
    padding: 12px;
    margin-top: 12px;
  }

  .voucher-detalle {
    font-size: 0.8rem;
  }

  .voucher-lista li {
    font-size: 0.75rem;
  }

  .voucher-img {
    max-width: 300px;
  }
}

@media (max-width: 360px) {
  .titulo-principal {
    font-size: 1.1rem;
    padding: 0 8px;
  }

  .barra-img {
    max-height: 25px;
  }
}

/* Mejoras adicionales para accesibilidad */
@media (prefers-reduced-motion: reduce) {
}

/* Estilo para impresión */
@media print {
}
