/* =============================== HEADER =============================== */

/* HEADER */
header {
  background-color: var(--secondary-color);
}

header .logo img {
  display: block;
  margin: 24px 0;
  width: 100%;
  object-fit: contain;
  max-width: 200px;
}

/* TOPO */
header .topo {
  background-color: var(--primary-color);
  padding: 16px 0;
  font-size: 13px;
  color: #fff;
}

header .topo :is(span, a) {
  font: 14px var(--primary-font);
  color: #fff;
  outline: transparent solid 1px;
  outline-offset: 5px;
  border-bottom: 1px solid transparent;
  transition: .3s;
}

header .topo a:hover {
 font-weight: bold;
}

/* MENU */
header #menu {
  text-align: center;
  width: 100%;
  position: relative;
}

header #menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: var(--nav-gap);
  margin: 8px 0
}

header #menu li {
  position: relative;
  display: inline-block;
  margin: 0;
}

header #menu a {
  font-size: var(--nav-size);
  font-family: var(--primary-font);
  color: var(--nav-color);
  font-weight: var(--nav-weight);
  display: block;
  box-sizing: border-box;
  padding: 0px;
  text-align: center;
  transition: .3s;
}

header #menu>ul>li:hover>a,
header #menu>ul>li>a.active-menu-topo {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: bold;
}

/* SUB MENU */
header #menu .dropdown :is(.sub-menu, .sub-menu-info) {
  display: none;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 7;
  width: 230px;
  height: auto;
  background-color: var(--primary-color);
}

header #menu ul>li.dropdown:hover> :is(.sub-menu, .sub-menu-info) {
  display: block;
}

header #menu ul>li.dropdown>:where(.sub-menu, .sub-menu-info)>li.dropdown>:where(.sub-menu, .sub-menu-info) {
  display: none;
  top: 0;
  left: 100%;
}

header #menu>ul>li:nth-last-child(-n+3).dropdown> :is(.sub-menu, .sub-menu-info) {
  left: initial;
  right: 0;
}

header #menu>ul>li:nth-last-child(-n+3).dropdown> :is(.sub-menu, .sub-menu-info) :is(.sub-menu, .sub-menu-info) {
  left: initial;
  right: 100%;
}

header #menu ul>li.dropdown> :is(.sub-menu, .sub-menu-info)>li.dropdown:hover> :is(.sub-menu, .sub-menu-info) {
  display: block;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:first-of-type {
  padding-top: 12px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:last-of-type {
  padding-bottom: 12px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li a {
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 12px;
  text-align: left;
  text-decoration: none;
  color: #fff;
  border-bottom: 2px solid transparent;
}

header #menu .dropdown> :is(.sub-menu, .sub-menu-info)>li:hover>a,
header #menu .dropdown> :is(.sub-menu, .sub-menu-info)>li>a.active-menu-topo {
  border-bottom-color: #fff;
}

/* SUB MENU SCROLL */
header #menu .dropdown :is(.sub-menu, .sub-menu-info).sub-menu-scroll {
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

/* MENU DROPDOWN ARROWS */
header #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  content: "\f107";
  font-family: "FontAwesome";
  color: var(--white);
  margin-left: 4px;
  font-size: 14px;
  transition: 0.3s;
}

header #menu>ul>li.dropdown:not([data-icon-menu])>a.active-menu-topo::after,
header #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
  color: var(--primary-color);
}

/* HEADER HOME */

header.header-home:not(.headerFixed) {
  position: relative;
  max-width: var(--window-width);
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: var(--secondary-color);
}

header.header-home:not(.headerFixed) #menu a {
  color: #fff;
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  color: #fff;
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
  color: var(--primary-color);
}

header.header-home:not(.headerFixed) .search input,
header.header-home:not(.headerFixed) .search input::placeholder,
header.header-home:not(.headerFixed) .search button {
  color: #FFF;
}

/* SEARCH */
.search {
  position: relative;
}

.search input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  color: var(--black);
  background-color: transparent;
  font: normal 12px/normal var(--primary-font);
}

.search input::placeholder {
  font: normal 14px/normal var(--primary-font);
  color: var(--black);
}

.search button {
  border: none;
  outline: none;
  text-decoration: none;
  background-color: transparent;
  color: var(--black);
  font-size: 18px;
  width: max-content;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.search--topo {
  margin: 8px 0
}

.search--topo button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: max-content;
}

.search button:hover {
  color: var(--black);
}

.search .button-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-content {
  opacity: 0;
  transition: opacity .2s ease .2s;
}

.search-content.search-active {
  opacity: 1;
}

.search-content .no-results {
  margin: 0 0 32px 0;
  text-align: left;
  font-size: 18px;
}

.search-content ul {
  margin: 0;
}

.search-content ul li {
  margin: 0;
  list-style: none;
}

.search-content ul li a {
  float: left;
  appearance: button;
  background-color: var(--primary-color);
  background-image: none;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: #fff 4px 4px 0 0, var(--primary-color) 4px 4px 0 1px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 6px 6px 12px 6px;
  overflow: visible;
  padding: 12px 40px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  transition: .3s;
}

.search-content ul li a:focus {
  text-decoration: none;
}

.search-content ul li a:not([disabled]):active,
.search-content li a:not([disabled]):hover {
  box-shadow: unset;
  transform: translate(3px, 3px);
}


/* BREADCRUMB BASE */
.bread {
  padding: 4rem 0;
  background-image: url('<?=$url?>imagens/bread.webp');
  background-size: cover;
}

.bread__title {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-family: var(--secondary-font);
  font-weight: 600;
}

#breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  clear: both;
  margin: 0;
}

#breadcrumb * {
  -webkit-transition: .3s;
  transition: .3s;
}

#breadcrumb a {
  display: inline-flex;
  align-items: center;
  height: fit-content;
}

#breadcrumb a:hover * {
  color: var(--primary-color);
}

#breadcrumb .bread__column {
  display: inline-flex;
  align-items: center;
}

#breadcrumb .bread__column,
#breadcrumb .bread__column a {
  font: 10px var(--primary-font);
  color: #fff;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:first-child:before {
  content: "\e3af";
  font-family: "FontAwesome";
  font-size: 12px;
  margin-right: 4px;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:not(:last-child)::after {
  content: "❱";
  margin-left: 6px;
  font-size: 14px;
}


/* SMALL DEVICE */
@media (max-width: 767.98px) {

  #breadcrumb .bread__column,
  #breadcrumb .bread__column a {
    display: flex;
    max-width: 82px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

}

/* ASIDE CONFIG*/

aside nav {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

aside nav ul {
  margin: 0
}

aside nav>ul>li>ul {
  display: none;
}

aside li {
  margin: 6px 0 0 0;
  list-style: none;
}

aside li a {
  font-size: 12px;
  text-transform: uppercase;
}

aside nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold !important;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  aside {
    width: 100%;
    float: none;
    margin: 16px 0;
  }

}

/* ASIDE COMPONENTS */
.aside .aside__btn,
.aside .aside__menu h2,
.aside .aside__contato h2 {
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 12px;
  display: block;
  transition: .3s;
  color: #fff;
  border-radius: var(--border-radius);
}

.aside .aside__btn {
  color: #fff;
  text-align: center;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
}

.aside .aside__btn:hover {
  background-color: var(--black);
}

.aside .aside__menu h2 a {
  color: #fff;
}

.aside .aside__menu nav ul li {
  border-left: 2px solid var(--primary-color);
  margin: 12px 0;
  padding: 6px;
  transition: .2s;
}

.aside .aside__menu nav ul li a {
  color: var(--black);
  font-size: 12px;
  border-left: 0;
  padding: 0;
  transition: .3s;
}

.aside .aside__menu nav ul li:hover {
  border-left-color: var(--black);
  background-color: #f0f0f0;
}

.aside .aside__menu nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold;
}

.aside .aside__contato h2 {
  text-align: center;
}

.aside .aside__contato a {
  color: var(--black);
  text-align: center;
  display: block;
  margin: 12px;
  transition: all .2s ease;
}

.aside .aside__contato a:hover {
  color: #5492c3;
}

.aside .fb-page {
  display: block;
  margin-bottom: 24px;
}


/* FORMULARIO / CONTATO PAGE */
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}

.form *:focus,
.form *:active {
  outline: unset;
}

.form :is(input, textarea, select) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  margin: 0px 0;
  outline: transparent solid 2px;
  outline-offset: 1px;
  font: 12px/normal var(--primary-font);
  background-color: #fff;
  color: var(--black);
  -webkit-transition: .3s;
  transition: .3s;
}

.form :is(input, textarea, select):hover,
.form :is(input, textarea, select):active,
.form :is(input, textarea, select):focus {
  outline: var(--primary-color) solid 2px;
}

.form label,
.form :is(input, textarea)::placeholder {
  font: 12px/normal var(--primary-font);
  color: var(--black);
}

.form textarea {
  height: 100px;
}

.form [type="submit"] {
  max-width: 200px;
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  outline: transparent solid 2px;
  border-radius: 0;
  outline-offset: 1px;
  border: 1px solid var(--white);
  text-transform: uppercase;
  font-weight: 300;
  -webkit-transition: .3s;
  transition: .3s;
}

.form [type="submit"]:active,
.form [type="submit"]:focus,
.form [type="submit"]:hover {
  background-color: var(--secondary-color);
}

.form__obrigatory {
  display: block;
  margin: 16px 0;
  font-size: 12px;
  color: var(--black);
}

.contato .address {
  font-style: normal;
}

.contato .address :is(span, a) {
  display: block;
  font: 13px/22px var(--primary-font);
  color: var(--black);
}

.contato .address a:hover {
  color: var(--primary-color);
}

.contato .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px
}

.contato .social .social__icons {
  color: var(--black);
  font-size: 18px;
  margin-top: 8px;
  transition: .3s;
}

.contato .social .social__icons:hover {
  color: var(--primary-color);
}

.contato .mapa {
  width: 100%;
  height: 258px;
}

.g-recaptcha {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .form textarea {
    height: auto;
  }

  .form [class*=col-] {
    padding: 0 !important;
  }

}

/* FOOTER */

.logo-footer {
  max-width: 240px;
  margin: 0 auto;
}

.logo-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  background-color: #3f5371;
}

footer .footer__title {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #ffff;
  text-transform: uppercase;
}

footer .footer__link {
  font-size: 12px;
  display: block;
  margin: 0 0 8px 0;
  color: #fff;
  outline: transparent solid 1px;
  outline-offset: 5px;
  transition: .3s;
}

footer .footer__menu nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
}

footer .footer__menu nav ul li {
  display: inline;
  margin: 0;
}

footer .footer__menu nav ul li a {
  color: #ffff;
  font-size: 14px;
  transition: .3s;
}

footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

footer .social .social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius);
  font-size: 18px;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  transition: .3s;
}

footer .social .social__icons:hover {
  background: #fff;
  color: var(--primary-color);
}


/* COPYRIGHT FOOTER */
footer .footer__copyright {
  background-color: var(--primary-color);
}

footer .footer__copyright .copyright__text {
  color: #fff;
  font-size: 10px;
}

footer .footer__copyright .copyright__selos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

footer .footer__copyright .copyright__selos a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

footer .footer__copyright .copyright__selos i {
  font-size: 14px;
  color: #fff;
}

footer .footer__copyright .copyright__selos strong {
  color: #fff;
  padding: 1px 6px;
  font-size: 8px
}

footer .footer__copyright .copyright__selos img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

footer .footer__copyright .row {
  margin-left: -4px;
  margin-right: -4px;
}

footer .footer__copyright [class*=col-] {
  padding: 4px;
}


/* SMALL DEVICE */
@media (max-width: 768.98px) {

  footer * {
    text-align: center;
  }

  footer .footer__link {
    margin-left: auto;
    margin-right: auto;
  }
  
  footer .footer__menu nav ul li {
    width: 100%;
  }

  footer .footer__menu nav ul li a {
    width: 100%;
  }

  footer .social,
  footer .footer__copyright .copyright__selos {
    justify-content: center;
  }

}

/******************** CONTEÚDO PÁGINAS ********************/

/* CATEGORIAS MPI */

.card--categorias .card__link {
  position: relative;
  display: block;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.card--categorias .card__link .card__title {
  font-family: var(--quaternary-font);
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  color: white;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
}

.card--categorias .card__link span.btn {
  position: absolute;
  bottom: 20%;
  left: 25%;
  margin: 0 auto;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
}

.card--categorias .card__link:hover .card__title {
  height: 100%;
  background-color: #01AECEa4;
}

.card--categorias .card__link:hover span.btn {
  opacity: 1;
}

.card--categorias .card__link .card__cover {
  width: 90%;
  height: 300px;
  padding-top: 1rem;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: all 0.3s;
  border-radius: 10px;
}

.card--categorias .card__link:hover .card__cover {
  width: 100%;
  padding-top: 0;
}

/* PROVA SOCIAL */

.prova-social .wrapper {
  background-color: var(--light);
  padding-bottom: 3rem;
  border-radius: 0 0 12px 12px;
}

.prova-social .card--prova-social {
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 25rem;
  border-radius: 8px;
  background-color: var(--white);
}


.prova-social .espaco-prova {
  margin-inline: 12px !important;
}

.prova-social .card--prova-social .card__stars {
  color: yellow;
}

.prova-social .card--prova-social img.aspas {
  position: absolute;
  top: 0%;
  left: 5%;
  width: 10%;
  height: 10%;
}

/* FORMULARIO / CONTATO  3 */
.row-form-home-2 {
  overflow: hidden;

}

.form-home-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: transparent;
  justify-content: flex-start;
  align-items: center;
}

.form-home-2 *:focus,
.form-home-2 *:active {
  outline: unset;
}

.form-home-2 :is(input, textarea, select) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 16px;
  width: 100%;
  margin: 4px 0;
  outline: transparent solid 2px;
  outline-offset: 1px;
  font: 12px/normal var(--primary-font);
  border-radius: 75px;
  border: 2px solid #555;
  color: #555;
  background: #EDEDED;
  box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.40) inset;
  -webkit-transition: .3s;
  transition: .3s;
}

.form-home-2 :is(input, textarea, select):hover,
.form-home-2 :is(input, textarea, select):active,
.form-home-2 :is(input, textarea, select):focus {
  outline: currentColor solid 2px;
}

.form-home-2 label {
  color: white;
}

.form-home-2 :is(input, textarea)::placeholder {
  font: 12px/normal var(--primary-font);
  color: rgba(0, 0, 0, 0.829);
}

.form-home-2 textarea {
  height: 55px;
}

.form-home-2 [type="submit"] {
  max-width: 150px;
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  padding: 8px;
  font-weight: 500;
  color: #fff;
  background-color: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  outline: transparent solid 2px;
  outline-offset: 1px;
  border-radius: 12px !important;
  border: 1px solid var(--white);
  -webkit-transition: .3s;
  transition: .3s;
}

.form-home-2 [type="submit"]:active,
.form-home-2 [type="submit"]:focus,
.form-home-2 [type="submit"]:hover {
  outline: var(--primary-color) solid 2px;
}

.form-home-2 .form__obrigatory {
  display: block;
  margin: 16px 0;
  font-size: 12px;
  color: white;
}

.contato .address {
  font-style: normal;
}

.contato .address :is(span, a) {
  display: block;
  font: 13px/22px var(--primary-font);
  color: var(--grey);
}

.contato .address a:hover {
  color: var(--primary-color);
}

.contato .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px
}

.contato .social .social__icons {
  color: var(--dark);
  font-size: 18px;
  margin-top: 8px;
  transition: .3s;
}

.contato .social .social__icons:hover {
  color: var(--primary-color);
}

.contato .mapa {
  width: 100%;
  height: 258px;
}

.g-recaptcha {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .form textarea {
    height: auto;
  }

  .container-form-home-2 iframe {
    width: 100%;
  }
}

/* BANNER PADRÃO */

.slick-banner__content {
  transform: translateY(3rem) !important;
}

.slick-banner .slick-slide:not(a)>div h2 {
  margin: 0;
  color: var(--white);
  font-size: var(--title-banner);
  text-align: center;
}

.slick-banner .slick-slide:not(a)>div p {
  margin: 20px 0;
  color: var(--white);
  font-size: var(--text-banner);
  text-align: center;
  font-weight: 500;
}

.slick-banner .slick-slide:not(a)>div a.btn {
  margin: 0;
  font-size: var(--btn-size-banner);
  padding: var(--btn-padding-banner);
  border-radius: var(--btn-radius);
}

/* BANNER PADRÃO */

/******************** CONTEÚDO PÁGINAS ********************/

/* =============================== PERSONALIZADO CSS =============================== */

/* =============================== HOME =============================== */

#cursos .wrapper {
  width: 80%;
  background-color: var(--tertiary-color);
  padding: 2.5rem 6rem;
  border-radius: 12px 12px 0 0;
}

#cursos .grid-col-3 {
  column-gap: 7rem;
  row-gap: 4rem;
}

.card-cursos {
  position: relative;
}

#venha .wrapper {
  position: relative;
  padding-inline: 4rem;
  padding-block: 11.5rem;
  background-image: url('<?=$url?>imagens/venha.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* =============================== HOME =============================== */

/* =============================== QUEM SOMOS =============================== */

/* Aspectos 8 */

.corpo-aspectos figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 180px;
  border-radius: 60px;
  max-width: 90px;
}

.corpo-aspectos figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2.05);
}



@media (max-width: 767.98px) {
  .corpo-aspectos {
    justify-content: flex-start;
    flex-direction: row;
  }

  ul {
    margin: 0 0 20px 10px !important;
  }
}

/* fim Aspectos 8 */

/* =============================== QUEM SOMOS =============================== */


/* =============================== CONTATO =============================== */


/* contato page */

.contato .bread {
  background-image: none;
  padding: 14px 0;
}

.contato {
  background-image: url("<?=$url?>imagens/contato.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#trabalhe-conosco {
  background-image: url("<?=$url?>imagens/trabalhe-conosco.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#trabalhe-conosco .form {
  width: 40%;
}

#trabalhe-conosco .form :is(input, textarea, select) {
  margin: 0;
  background-color: var(--black);
  border: 0;
}

#trabalhe-conosco .form [type="submit"] {
  background-color: var(--primary-color) !important;
}

#trabalhe-conosco .form label,
#trabalhe-conosco .form :is(input, textarea)::placeholder {
  font: 12px/normal var(--primary-font);
  color: var(--white);
}

#trabalhe-conosco .bread__title {
  margin: 0;
  color: #ffff;
  font-size: 1.4rem;
}

#trabalhe-conosco #breadcrumb .bread__column,
#trabalhe-conosco #breadcrumb .bread__column a {
  font: 12px var(--primary-font);
  color: #fff;
}

.contato--page {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.form-contato {
  width: 100% !important;
}

.container-entre-contato {
  border-right: 2px solid var(--primary-color);
}

.contato--page .bread__title {
  margin: 0;
  color: #ffff;
  font-size: 1.4rem;
}

.contato--page #breadcrumb .bread__column,
.contato--page #breadcrumb .bread__column a {
  font: 12px var(--primary-font);
  color: #fff;
}

@media (max-width: 767.98px) {

  .container-entre-contato {
    border-right: none;
    border-bottom: 2px solid var(--primary-color);
  }
}

/* fim contato page */
/* =============================== CONTATO =============================== */


/* =============================== PERSONALIZADO CSS =============================== */


/******************** MEDIA QUERIES (PÁGINAS RESPONSIVAS) ********************/

@media only screen and (min-width: 1600px) {
    #venha .wrapper {
padding-block: 19.5rem;
  }
}

@media only screen and (min-width: 1800px) {
    #venha .wrapper {
padding-block: 19.5rem;
  }
}

@media only screen and (min-width: 1920px) {

  #venha .wrapper {
padding-block: 19.5rem;
  }

}

@media only screen and (max-width: 576px) {

#cursos .wrapper {
    padding: 2rem;
    width: 95%;
}

.fs-44 {
    font-size: 44px !important;
}

#venha .wrapper {
    position: relative;
    padding-inline: 3rem;
    padding-block: 6rem;
}

.card--categorias .card__link span.btn {
left: 0;
}

.form :is(input, textarea, select) {
  margin: 8px 0;
}



}

/******************** MEDIA QUERIES (PÁGINAS RESPONSIVAS) ********************/