/*##################################################*/
/*##################################################*/

body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.card {
  border-radius: 10px;
}
.card-title {
  font-weight: 600;
  color: #9c0000; /* azul institucional */
}
/*##################################################*/
/*##################################################*/
	 .icon-circle {
      width: 60px;
      height: 60px;
      background-color: #9c0000;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 1rem;
    }
    .section-header {
      text-align: center;
      margin-top: 60px;
      margin-bottom: 40px;
    }
	.section-footer {
      margin-bottom: 40px;
    }
    .section-header h2 {
      font-weight: 700;
      color: #111827;
    }
    .section-header p {
      color: #4b5563;
      font-size: 1rem;
    }
/*##################################################*/
/*##################################################*/
	.service-box {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 12px 15px;
      background-color: #fff;
      display: flex;
      align-items: center;
      transition: all 0.2s ease;
    }
    .service-box:hover {
      border-color: #1e73ff;
      background-color: #f0f7ff;
    }
    .service-box input {
      margin-right: 10px;
    }
    .service-box span {
      font-weight: 500;
      font-size: 0.95rem;
    }
/*##################################################*/
/*##################################################*/
	.file-box {
      border: 2px dashed #d0d7de;
      border-radius: 10px;
      text-align: center;
      padding: 20px;
      transition: all 0.3s ease;
      background-color: #fff;
      height: 100%;
    }
    .file-box:hover {
      background-color: #f0f7ff;
      border-color: #1e73ff;
    }
    .file-box i {
      font-size: 1.8rem;
      color: #003366;
      margin-bottom: 10px;
    }
    .file-box small {
      color: #6b7280;
    }
/*##################################################*/
/*##################################################*/
	.btn-enviar {
      background: linear-gradient(90deg, #cd0000 0%, #ff6e6e 50%, #fff 100%);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      padding: 10px 28px;
      box-shadow: 0 4px 12px rgba(46, 91, 255, 0.3);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-enviar i {
      font-size: 1.1rem;
      margin-right: 8px;
    }

    .btn-enviar:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(46, 91, 255, 0.4);
      color: #fff;
    }