/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 03 2026 | 20:39:11 */
.exam-access{
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(13,31,60,.08);
}

.exam-access__title{
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: rgb(5,120,132);
}

.exam-access__subtitle{
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #8a94a6;
}

.exam-access__actions{
  display: grid;
  gap: 14px;
}

.exam-access__btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.exam-access__btn:hover{
  transform: translateY(-2px);
}

.exam-access__btn:active{
  transform: translateY(0);
}

.exam-access__btn:focus-visible{
  outline: 3px solid rgba(8,180,193,.18);
  outline-offset: 3px;
}

/* botão exames até 05/04/2026 */
.exam-access__btn--past{
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #1a202c;
  box-shadow: 0 4px 20px rgba(13,31,60,.05);
}

.exam-access__btn--past:hover{
  border-color: rgb(72,210,220);
  box-shadow: 0 8px 24px rgba(13,31,60,.08);
}

/* botão exames a partir de 06/04/2026 */
.exam-access__btn--current{
  background: linear-gradient(135deg, rgb(6,152,165), rgb(8,180,193));
  border: 1.5px solid transparent;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(8,180,193,.22);
}

.exam-access__btn--current:hover{
  opacity: .96;
  box-shadow: 0 16px 30px rgba(8,180,193,.28);
}

.exam-access__icon{
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.exam-access__btn--past .exam-access__icon{
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: rgb(6,152,165);
}

.exam-access__btn--current .exam-access__icon{
  background: rgba(255,255,255,.16);
  color: #ffffff;
}

.exam-access__svg{
  width: 24px;
  height: 24px;
  display: block;
}

.exam-access__text{
  display: grid;
  gap: 4px;
  min-width: 0;
  line-height: 1.2;
}

.exam-access__text strong{
  font-size: 15px;
  font-weight: 700;
  color: inherit;
}

.exam-access__btn--past .exam-access__text small{
  font-size: 12px;
  line-height: 1.4;
  color: #4a5568;
}

.exam-access__btn--current .exam-access__text small{
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
}

.exam-access__arrow{
  margin-left: auto;
  font-size: 20px;
  line-height: 1;
  opacity: .9;
  transition: transform .18s ease, opacity .18s ease;
}

.exam-access__btn:hover .exam-access__arrow{
  transform: translateX(3px);
  opacity: 1;
}

@media (max-width: 480px){
  .exam-access{
    padding: 18px 16px;
  }

  .exam-access__title{
    font-size: 21px;
  }

  .exam-access__btn{
    padding: 14px;
    gap: 12px;
  }

  .exam-access__icon{
    width: 44px;
    height: 44px;
  }

  .exam-access__text strong{
    font-size: 14px;
  }
}