/* Card Aplications */

.card-applications {
  width: 100%;
  min-height: 490px;
  background-color: var(--back-gray);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-applications.home {
  min-height: 420px;
}

.card-applications a {
  text-decoration: none;
}

.card-applications .thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1/.7;
  overflow: hidden;
}

.card-applications .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.card-applications .thumb img:hover {
  transform: scale(1.05);
}

.card-applications .title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navbar-txt-hover);
}

.card-applications p {
  font-size: .8rem;
  font-weight: normal;
  color: var(--txt-gray);
}

.card-applications span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navbar-txt-color);
  transition: all .3s ease-in-out;
}

.card-applications span:hover {
  color: var(--txt-red);
}

/* Card Generical */

.card-generical {
  width: 100%;
  background-color: var(--back-gray);
  padding: 32px 24px;
}

.card-generical:not(:last-child) {
  margin-bottom: 16px;
}

.card-generical .title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--top-bar);
}

.card-generical .title2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-black);
  padding: 6px 0 12px;
}

.card-generical .paragraph {
  font-size: .9rem !important;
}

.card-generical .table {
  display: flex;
  flex-direction: column;
}

.card-generical .table .header {
  width: 100%;
  font-size: .8rem;
  font-weight: 700;
  color: var(--txt-black);
}

.card-generical .table .line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: .8rem;
  line-height: 1.5rem;
  color: var(--txt-black);
  padding: 8px 0;
}

.card-generical .table .line:not(:last-child) {
  border-bottom: 1px solid var(--line-gray);
}

.card-generical .table .cell {
  display: flex;
  flex: 1;
  align-items: center;
}

.card-generical .table .cell:nth-child(odd) {
  justify-content: start;
}

.card-generical .table .cell:nth-child(even) {
  justify-content: end;
}

.card-generical .table .cell a {
  line-height: .5rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--txt-link);
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.card-generical .notes {
  display: block;
  font-size: .75rem;
  line-height: 1.5rem;
  font-weight: normal;
  color: var(--txt-black);
}

.card-generical .notes a {
  text-decoration: none;
  color: var(--txt-link);
}

/* Card Staff */

.card-staff {
  width: 100%;
  height: 150px;
  background-color: var(--back-gray);
  display: flex;
}

.card-staff .photo {
  width: 180px;
  height: 100%;
  overflow: hidden;
}

.card-staff .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-staff .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
	width: 100%;
  padding: 12px;
}

.card-staff .content h6 {
  font-size: .9rem;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.card-staff .content .links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  width: 100%;
}

.card-staff .content a {
  font-size: .8rem;
  text-decoration: none;
  color: var(--navbar-txt-color);
  transition: all .3s ease-in-out;
}

.card-staff .content a:hover {
  font-size: .8rem;
  text-decoration: none;
  color: var(--navbar-txt-hover);
}

.card-staff .content a i {
  margin-right: 6px;
}

/* Documentos */

.documents {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.documents a {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-gray);
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.documents a:hover {
  color: var(--login-over);
  text-decoration: underline;
}

.documents a i {
  font-size: 1.2rem;
  margin-right: 8px;
}

/* Sponsors */

.sponsors {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 6px;
  column-gap: 16px;
  width: 100%;
}

.sponsors a {
  padding: 4px;
  text-decoration: none;
  border: none;
}

.sponsors a img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 70px;
}

/* Contact */

.contact p {
  font-size: .9rem !important;
}

.contact .txt-endereco {
	white-space: pre-wrap;
}

.contact form {
/*   display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px; */
}

.contact form input, .contact form textarea {
  font-size: .8rem;
  resize: none;
	color: var(--txt-gray) !important;
}

.contact form .btn {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--txt-white) !important;
  padding: 8px 32px;
  background-color: var(--login-over);
  border: none;
  box-shadow: none;
  transition: all .3s ease-in-out;
}

.contact form .btn:hover {
  background-color: var(--navbar-txt-color_level2);
}

.wpcf7-not-valid-tip {
	font-size: .8rem !important;
	padding-left: 4px !important;
	padding-top: 4px !important;
}

.wpcf7-response-output {
	border: none !important;
	text-align: center !important;
	color: var(--txt-red) !important;
}

/* FAQ */

.faq .col {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
}

.faq .pergunta {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--txt-link);
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.faq .pergunta:hover {
  color: var(--navbar-txt-hover);
}

.faq .resposta {
  font-size: .9rem;
  font-weight: 100;
  color: var(--txt-gray);
  /*padding-left: 8px;*/
  height: 0;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.faq .resposta.active {
  height: 100%;
}
