/* Autor: Reges Magalhães*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=KoHo:wght@200;300;400;500;600;700&display=swap');

:root {
  
  /* Cores */
   --cor-principal: #12294C;
   --cor-secundaria: #1A45A7;
   --cor-complementar: #27DCEB;
   --cor-suave: #F7F9FF;
   --cor-escura: #20385D;
   --cor-sombra: #284065;
   --cor-clara: #5F81CB;
   --cor-diferencial: #446BC4;
   --cor-clara-titulos: #B2BFE2;
   --cor-cinza-titulos: #BEBEBE;
 
   
   /* Texto */
   --fonte-principal: Outfit;
   
   /* Media Querys */
   --media-tablet: ;
   --media-mobile: 600px;

   /* Slide */

  --no-of-slides: 25;
  --slides-in-view: 5;
  --slide-width: 200px;
  --slide-height: 100px;
  --iteration-time: 60s;
 }
 
.parceiros-inner {
  display: flex;
  -ms-overflow-style: none;
  scrollbar-width: none;
  animation: sliderPrimeiro 25s linear infinite;
}
.parceiros-inner::-webkit-scrollbar {
  display: none;
}

/* .parceiro {
  width: 250px;
  margin: 0 35px;
  height: 100%;
  display: flex;
  justify-content: center;
}

.parceiros-slideshow {
  display: flex;
  width: calc(250px * 8);
  position: relative;
  animation: sliderPrimeiro 25s linear infinite;
}

@keyframes sliderPrimeiro {
  0% {
    opacity: 1; 
    right: -25%;  
  }
  100% {
    right: 100%;
  }
} */


/* Teste 2 */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--slide-width) * var(--no-of-slides)* -1));
  }
}

.carousel__wrapper {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  
  width: 100%;
  overflow: hidden;
  border: 0;
  margin: 0 auto;
}

.carousel {
  padding: 10px 0;
  background: lightblue;
  
  overflow: hidden;
  width: calc(2 * var(--no-of-slides));
}

.carousel__slide {
  animation: scroll var(--iteration-time) linear infinite;
  display: flex;
  flex-direction: column;
  
  flex: 0 0 auto;
  width: var(--slide-width);
  height: var(--slide-height);
  box-sizing: border-box;
  /*border: 1px dotted darkblue;*/
}

.carousel__image {
  position: absolute;
  background-size: auto;
  background-repeat: no-repeat;
  height: inherit;
  width: inherit;
  margin: 15px 20px;
  top: 0;
  background-position: center center;
}

/* Home - Fotos */

.bloco-fotos {
  background-color: var(--cor-principal);
  height: 300px;
  margin-bottom: 150px;
}
  .bloco-fotos img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
  }
.grid-fotos {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 30px;
}
  .grid-fotos > div {
    background-color: var(--cor-secundaria);
    border-radius: 5px;
    padding: 50px;
    height: 220px;
  }
  .grid-fotos > div:nth-child(3) {
    background-color: var(--cor-complementar);
  }

/* Home - Corpo Docente */
.corpo-docente {
  background: var(--cor-principal);
  color: #fff;
  font-family: var(--fonte-principal);
  padding: 75px 0;
}
  .corpo-docente > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 45%;
  }
  .corpo-docente p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 25px;
  }

/* Home - Destaques */
.destaques {
  background-color: var(--cor-principal);
}
  .destaques > div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
  .destaques > div > div {
    font-family: Outfit;
    background: #274774;
    padding: 45px;
    border-radius: 20px;
    color: #fff;
  }
  .destaques h3 {
    font-size: 25px;
    line-height: 1.4;
    font-weight: 400;
  }
  .destaques p {
    font-size: 15px;
    line-height: 1.67;
    font-weight: 300;
  }

/* Cursos - Grade */

.titulos {
  display: flex;
  margin-bottom: 50px;
  align-items: flex-end;
  justify-content: space-between;
}
  .titulos > div:nth-child(2) {
    width: 50%;
    color: #989898;
    font-weight: 300;
  }
  .titulos p {
    font-size: 15px;
    line-height: 28px;
  }
  .titulos h2 {
    font-size: 80px;
    text-transform: lowercase;
    color: var(--cor-clara-titulos);
    margin-right: 25px;
    line-height: 80px;
    margin-bottom: 0;
  }
  .titulos.branco h2 {
    color: white;
  }

.grade-cursos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
  margin-bottom: 50px;
}
.cursos-arquivo {
  background-color: #EFF2FA;
}
.curso-box {
  background-color: var(--cor-principal);
  color: white;
  border-radius: 5px;
  z-index: 10;
}
.woocurso-local {
  padding: 15px 15px;
  border-bottom: 1px solid var(--cor-sombra);
  text-transform: uppercase;
  text-align: center;
}
  .woocurso-local span {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 300;
    opacity: .4;
  }
 
/* Home - Quem participou */

.participantes-section h2 {
  color: #e8e8e8;
}
.participantes-section p {
    color: #959595;
    width: 729px;
    margin: auto;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
}
.slider.depoimentos.slide {
  flex-direction: column;
}
.depoimentos.slide {
  flex-direction: column;
}
.depoimentos.slide:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: none;
}

.control {
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: absolute;
  padding: 20px;
  top: 0;
  background-color: transparent;
}
.control:hover {
  transform: scale(1.25);
}
.left {
  transform: rotate(360deg);
  left: 30px;
}
.right {
  right: 30px;
}
  .right > svg {
    transform: rotate(180deg);
  }
.participantes-comentarios{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}
.participantes-dados {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
  .participantes-dados > div {
    padding-top: 45px;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 20px;
    font-size: 17px;
  }
  .participantes-dados > div:nth-child(1) {
    color: var(--cor-principal);
    border-right: 1px solid #E8E8E8;
  }
  .participantes-dados > div:nth-child(2) {
    color: var(--cor-secundaria);
  }


  /* Mobile */

  @media (max-width:700px){
    .participantes-section p {
      width: 75%;
      font-size: 16px;
      line-height: 28px;
    }
  }

/* Home - Newsletter */

.home-newsletter {
  background-color: #3B3B3B;
  color: white;
}
  .home-newsletter > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 75px;
  }
  .home-newsletter h3 {
    font-size: 30px;
    line-height: 55px;
  }
  .home-newsletter p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
  }
.newsletter-formulario {
  display: flex;
  align-items: center;
  width: 100%;
}
  .newsletter-formulario input {
    border-radius: 110px;
    width: 100%;
    font-size: 22px;
    padding: 25px 45px;
  }
  .newsletter-formulario .botao-redondo {
    position: absolute;
    right: 40px;
  }

/* Páginas Simples */

.titulo-pagina {
  font-size: 50px;
  line-height: 55px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--cor-principal);
  border-bottom: 1px solid var(--cor-clara-titulos);
  padding-bottom: 15px;
}

/* Página - Cursos */

.cursos-menu {
  background-color: var(--cor-sombra);
  position: sticky;
  top: 90px;
  display: flex;
  z-index: 99;
  color: white;
  padding: 20px 0;
}
  .cursos-menu > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .cursos-menu .curso-separador {
    margin: 0 15px;
  }
.cursos-menu-botoes a {
  color: white;
}
.cursos-menu-botoes li {
  margin: 0 15px;
  border-bottom: 1px solid var(--cor-diferencial);
}
.cursos-menu-botoes li:hover {
  color: var(--cor-complementar);
  border-bottom: 1px solid var(--cor-complementar);
}

.curso-hero {
  padding: 75px 0;
  background-color: var(--cor-principal);
  position: relative;
}
  .curso-hero > div > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .curso-box-descricao h1 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .curso-box-descricao p {
    font-weight: 300;
    margin-bottom: 25px;
  }
.curso-imagem-destaque {
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  top: 0;
}
.botao-redondo.baixar {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: var(--cor-sombra);
  padding: 3px 25px;
  font-size: 11px;
  letter-spacing: .5px;
}
  .botao-redondo.baixar:hover {
    background-color: var(--cor-clara);
  }

.curso-sobre {
  background-color: #EFF2FA;
}
.curso-sobre-apresentacao > div {
  margin-bottom: 25px;
}
.curso-sobre-grade {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 50px;
}
.curso-sobre-grade h3 {
  font-size: 30px;
  line-height: 45px;
  text-transform: lowercase;
}
.curso-sobre hr {
  border-bottom: 1px solid #CDD2DE;
  border-top: 0;
  margin: 25px 0;
}
.curso-sobre-sidebar {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.08);
}
.curso-sobre-sidebar > div {
  padding: 35px;
}
.curso-sobre-sidebar .programacao {
  background-color: var(--cor-clara);
  color: white;
}
.curso-sobre-sidebar .programacao h3 {
  text-transform: lowercase;
}
 
.curso-sobre-sidebar .programacao li:last-child {
  border-bottom: none;
}
.curso-sobre-sidebar button {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  cursor: pointer;
}
.curso-sobre-sidebar button svg {
  transition: transform 0.3s ease-in-out;
  fill: var(--cor-principal);
}
.curso-sobre-sidebar button:hover {
  opacity: .7;
}
.curso-sobre-sidebar button:hover svg {
  transform: translateX(100%);
}

/* Professores */

.curso-professores {
  border-bottom: 1px solid #E3E3E3;
}
  .curso-professores .flex-box {
    gap: 50px;
  }
  .curso-professores-img {
    width: 220px;
    height: 220px;
    border-radius: 300px;
    object-fit: cover;
  }
  .curso-professores .titulos h2 {
    color: var(--cor-cinza-titulos);
  }
.curso-professores-box > div {
  margin-bottom: 35px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 35px;
}
  .curso-professores-box > div:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
.arquivo-loadmore {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

/* Local */
.curso-local {
  border-bottom: 1px solid #E3E3E3;
}
  .curso-local .titulos h2 {
    color: var(--cor-cinza-titulos);
  }
.curso-local-endereco {
  text-align: center;
  margin-bottom: 35px;
}
.curso-local-mapa {
  box-shadow: 0 3px 25px 0 rgb(0 0 0 / 11%);
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(240px,40vw), 1fr));
}
  .curso-local-mapa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

/* Conteúdo Programático */
.curso-conteudo-programatico {

}
  .curso-conteudo-programatico .titulos h2 {
    color: var(--cor-cinza-titulos);
  }
.curso-conteudo-programatico-box {
  width: 60%;
  margin: 0 auto;
}
  .curso-conteudo-programatico-box h2 {
    font-size: 30px;
    line-height: 45px;
    text-transform: lowercase;
  }
  .curso-conteudo-programatico-box h3 {
    font-size: 30px;
    line-height: 45px;
    text-transform: lowercase;
  }
  .curso-conteudo-programatico-box hr {
    border-bottom: 1px solid #CDD2DE;
    border-top: 0;
    margin: 25px 0;
  }

/* Incluso no Curso */

.curso-incluso {
  border-top: 1px solid #E3E3E3;
}

.curso-incluso-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
}
.curso-incluso-box-item {
    display: flex;
    gap: 25px;
    border-top: 2px solid #ccc;
    padding-top: 25px;
}
.curso-incluso-box-item:hover {
    border-top: 2px solid var(--cor-clara-titulos);
    cursor: pointer;
}
.curso-incluso-box-item h3 {
  
}
.curso-incluso-box-item img {
    max-height: 30px;
    width: fit-content;
    /* grey scale filter */
    filter: grayscale(100%);
}

/* Importante */
.curso-importante {
  background-color: #F0F0F0;
}
  .curso-importante .titulos h2 {
    color: var(--cor-cinza-titulos);
  }
.curso-importante-box {
  width: 60%;
  margin: 0 auto;
}
  .curso-importante-box h2 {
    font-size: 30px;
    line-height: 45px;
    text-transform: lowercase;
  }
  .curso-importante-box h3 {
    font-size: 30px;
    line-height: 45px;
    text-transform: lowercase;
  }
  .curso-importante-box hr {
    border-bottom: 1px solid #CDD2DE;
    border-top: 0;
    margin: 25px 0;
  }

/* Próximos Passos */
.curso-proximos-passos {}
  .curso-proximos-passos .titulos h2 {
    color: var(--cor-cinza-titulos);
  }
.curso-proximos-passos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
  padding-top: 45px;
  padding-bottom: 45px;
}
.curso-proximos-passos-box {
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  padding: 20px;
  color: #5C5C5C;
}
  .curso-proximos-passos-box:hover {
    background-color: #e8e8e8;
  }
  .curso-proximos-passos-box.atual {
    background-color: #7B7B7B;
    color: white;
  }
  .curso-proximos-passos-box.atual span {
    color: white;
  }
  .curso-proximos-passos-box span {
    font-size: 55px;
    line-height: 55px;
    color: #BFBFBF;
  }
  .curso-proximos-passos-box hr {
    border-bottom: 1px solid #CDD2DE;
    margin: 15px 0;
  }
  .curso-proximos-passos-box p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
    text-align: left;
  }

/* Curso - Inscreva-se */
.curso-inscreva {
  background-color: var(--cor-sombra);
  color: white;
}
.curso-inscreva-grid {
  display: grid;
  grid-template-areas:
      "b a a"
      "c c c";
  grid-gap: 25px;
}

  .curso-inscreva-grid input[type="number"]::-webkit-inner-spin-button,
  .curso-inscreva-grid input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
  }
  .curso-inscreva-grid input[type="number"] {
    -moz-appearance: textfield;
  }
  
  .quantity-block {
    margin: auto;
    display: flex;
    font-size: 20px;
    margin-right: 25px;
  }
  .woo-quantidade.minus,
  .woo-quantidade.plus {
    cursor: pointer;
    font-size: 35px;
    padding: 0px 15px;
    width: 70px;
    height: 80px;
    border-radius: 5px;
    border: none;
    display: flex;
    color: white;
    margin-left: -5px;
    align-items: center;
    background-color: #35517a;
    line-height: 0;
    justify-content: center;
    margin-right: -5px;
  }
  .woo-quantidade.num {
    font-size: 40px;
    padding: 15px 10px;
    border-radius: 0;
    outline: none;
    width: 115px;
    text-align: center;
    border: none;
  }
  .cart {
    display: flex;
    flex-direction: initial;
    align-items: center;
  } 
  .cart .quantity {
    z-index: 9;
  }
  .botao-comprar {
    margin-left: 50px;
  }

.curso-inscreva .botao-redondo {
  width: 100%;
  padding: 30px 35px;
  font-size: 20px;
}
.curso-inscreva .seletor-sector {
  display: flex;
  align-self: center;
  flex-direction: column;
  grid-area: a;
}
.curso-inscreva .seletor-sector p {
  font-size: 18px;
  line-height: 30px;
}
.curso-inscreva .seletor-box {
  align-items: center;
}
.curso-inscreva-box {
  /* border-right: 1px dotted #577093; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 25px;
}
  .curso-inscreva-box > div {
    padding: 15px 15px 15px 0;
    border-bottom: 1px dotted #577093;
  }
    .curso-inscreva-box > div:last-child {
      color: white;
      opacity: .5;
      border-bottom: none;
    }
  .curso-inscreva-box h3 {
    text-transform: lowercase;
  }
  .curso-inscreva-box h5 {
    font-weight: 600;
  }
  .curso-inscreva-box span {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
  }
  .curso-inscreva-pagamento {
    grid-area: c;
    text-align: center;
    align-items: center;
    display: flex;
    font-size: 11px;
    justify-content: center;
    border-top: 1px dotted #577093;
    padding-top: 20px;
  }

/* CheckOut */

.checkout h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
 
.header-checkout {
  background-color: var(--cor-principal);
}
.checkout_coupon button {
  background-color: var(--cor-principal);
  color: white;
}
  .checkout_coupon button:hover {
    background-color: var(--cor-secundaria);
    color: white;
  }
.botao-passos-checkout {
  margin: 0;
  margin-top: 25px;
  padding: 5px 25px;
}
.paragrafo-checkout {
  text-align: center;
}
.curso-proximos-passos-box.checkout {
  background-color: var(--cor-clara);
  color: white;
}
.curso-proximos-passos-box.checkout > span {
  color: white;
}
.checkout-divisor {
  border-right: 1px solid var(--cor-sombra);
  margin-left: 25px;
  margin-right: 25px;
}
.checkout-titulo h1 {
  font-size: 23px;
  color: white;
  display: flex;
  font-weight: 200;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.woocommerce ul.products li.product .onsale {
  top: 45px;
  right: 25px;
  left: auto;
  margin: -0.5em -0.5em 0 0;
  font-size: 15px;
  padding: 0;
  background-color: var(--cor-complementar);
  color: var(--cor-escura);
}
.woocommerce-input-wrapper input {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  padding: 20px 15px;
  width: 100%;
}
.woocommerce .select2-container .select2-selection--single, .woocommerce select, .woocommerce-page .select2-container .select2-selection--single, .woocommerce-page select {
  border: 1px solid #ddd;
  background: #ededed;
  border-radius: 5px;
  box-shadow: none;
  padding: 20px 10px;
  height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 15px;
  right: 10px;
  width: 20px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 15px 30px;
  font-weight: 400;
  left: auto;
  color: #515151;
  background-color: #fff;
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  border-radius: 100px;
}

/* Woo - Checkout - Correções de Formulário Checkout */
#billing_postcode_field {
  width: 100%;
  box-sizing: border-box;
}
#billing_address_1_field {
  width: 100%;
  box-sizing: border-box;
}
#billing_number_field {
  width: 100%;
  box-sizing: border-box;
}
#billing_address_2_field {
  width: 100%;
  box-sizing: border-box;
}

/* Woo - Checkout - Box Cobranças */

.woocommerce-billing-fields {
  margin-bottom: 35px;
}
.wc_payment_method {
  align-items: flex-start;
}
.wc_payment_method input {
  width: 13px;
}
#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 1em 0 0 !important;
  box-sizing: border-box;
}
.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox {
  display: flex;
  align-items: flex-start;
}
.woocommerce form .form-row .input-checkbox {
  width: 17px;
  display: inline;
  margin: 10px 15px 0 0;
  text-align: center;
  vertical-align: middle;
}

/* Woo - Checkout - FooEvents */

.fooevents-attendee-number {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* Checkout Mensagens */

.woocommerce-message {
  border-top-color: var(--cor-clara);
}
.woocommerce-info a {
  color: var(--cor-clara-titulos);
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
  background-color: var(--cor-secundaria);
  color: #fff;
  border-top: 3px solid var(--cor-clara-titulos);
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  border-radius: 5px;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: var(--cor-principal);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  padding: 20px 50px;
  font-size: 16px;
}

/* Cursos Boxes - Loja - WooCommerce */
 
/* Bloco de Produto Adicionado */
.wc-block-grid__products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.wc-block-grid__product.wc-block-grid__product {
  background-color: var(--cor-principal);
  color: white;
  border-radius: 5px;
  z-index: 10;
}
.wc-block-grid__product {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  float: none;
  width: auto;
  position: relative;
  text-align: center;
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 0px solid transparent;
  list-style: none;
}
.wc-block-grid__products .wc-block-grid__product-image img {
  display: none;
}
.wc-block-grid.has-3-columns .wc-block-grid__product, .wc-block-grid.has-3-columns .wc-block-grid__product {
  max-width: 100%;
  padding: 25px;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  margin-top: 10px;
  color: var(--cor-principal);
  margin-left: 35px;
  margin-bottom: 25px;
  margin-right: 35px;
  padding: 5px 50px;
  background-color: white;
}
.curso-box-data-wc-bloco {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 300;
  opacity: .4;
  text-transform: uppercase;
  padding: 5px 35px;
}
.wc-block-grid__product .wc-block-grid__product-title {
  font-size: 20px;
    line-height: 28px;
    font-weight: 200;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: white;
    padding: 0 35px;
}

/* Footer */

footer {
    background-image: url("../images/seta-azul-footer.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-color: var(--cor-escura);
    color: white;
    font-size: 13px;
    line-height: 25px;
}
  footer p {
      font-weight: 300;
  }
  footer a {
      text-decoration: none;
      color: white;
  }
  footer a:hover {
      opacity: 0.75;
  }
  footer li {
    list-style: inside;
  }
  footer li a {
    font-size: 15px;
  }
  footer > div > div {
    width: 100%;
    padding: 60px 15px;
  }
  footer .footer-logo {
      margin-bottom: 20px;
  }
  footer .wp-block-separator {
      border: none;
      margin: 15px 0;
  }
  footer .footer-creditos {
    background-color: var(--cor-principal);
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
.footer-logo {
  margin-bottom: 25px;
}
.footer-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 10;
}
.footer-chat-text {
  font-size: 9px;
  background: #4CAF50;
  border-radius: 100px;
  padding: 0 15px;
  margin-bottom: 7px;
  color: #fff;
  font-weight: 400;
  width: auto;
}
.footer-chat-icon {
  width: 50px;
    height: 50px;
    border-radius: 100px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}
.whatsapp-chat-button {

}

  /* Footer - Redes */
  footer .footer-redes {
    background-color: var(--cor-sombra);
  }
  footer .footer-redes h3 {
      text-transform: uppercase;
      font-weight: 300;
      letter-spacing: 3px;
      font-size: 25px;
  }
  footer .footer-redes h3 b {
      font-weight: 600;
  }
  .footer-redes > div {
    display: flex;
    padding: 75px 25px;
  }
  .footer-redes > div > div {
    display: flex;
    align-items: center;
  }
  .footer-redes-box {
    display: flex;
    margin: 0 35px;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 500;
    transition: ease-in-out;
  }
  .footer-redes-box:hover {
    transform: scale(1.1);
  }

.footer_2_menu > div {
  margin-bottom: 15px;  
}
.footer_3_menu > div {
  margin-bottom: 15px;  
}

/* Blog - Single Page */

.blog-header {
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
}
.blog-header-filter {
  background-color: #5C5C5C;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -99;
  mix-blend-mode: multiply;
}
.blog-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -999;
}
.blog-header-define {
  font-size: 25px;
  margin-bottom: 35px;
}
.blog-header-titulos {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}
.blog-header-titulos h1 {
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  width: 70%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.blog-header-meta {
  text-align: center;
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #919191;
}
.blog-header-meta span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}
.blog-content {
  display: flex;
}
.blog-content-texto p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 25px;
  text-align: justify;
}
.blog-content-texto p strong {
  font-weight: 600;
}
.blog-content-texto p:first-child:first-letter {
  font-size: 2rem;
  font-weight: bold;
  color: var(--cor-secundaria);
}
.blog-content-texto ol {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.blog-content > div:nth-child(1) {
  width: 70%;
  padding: 0 35px;
}
.blog-content > div:nth-child(2) {
  width: 30%;
  padding: 0 35px;
}
.blog-categorias {
  background-color: #777777;
  color: white;
  border-radius: 100px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
}
.blog-categorias h5 {
  font-size: 15px;
}
.blog-categorias a {
  background-color: #999999;
  color: white;
  border-radius: 100px;
  padding: 8px 25px;
  font-size: 12px;
  line-height: 15px;
  margin: 10px;
}
.blog-categorias a:hover {
  background-color: #5c5c5c;
}
.blog-comentarios {

}
.blog-comentarios #comments {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 22px;
  font-style: italic;
  font-weight: 300;
}
.comment-respond {
  margin-top: 50px;
}
.blog-comentarios form p {
  overflow: hidden;
}
.blog-comentarios input, textarea {
  border: 0;
  border-radius: 0;
  font-size: 15px;
  padding: 10px 15px;
  width: 100%;
  border-bottom: 1px solid var(--cor-cinza-titulos);
} 
.blog-comentarios textarea {
  padding: 20px;
  width: -webkit-fill-available;
  background: #ebebeb;
  color: inherit;
  resize: none;
}
.blog-comentarios input:focus {
  border-radius: 0;
  background-color: transparent;
  color: var(--cor-secundaria);
  border-bottom: 2px solid;
  border-color: var(--cor-secundaria);
}
.blog-comentarios textarea:focus {
  border-radius: 0;
}
.blog-comentarios .submit {
  font-family: var(--fonte-principal);
  font-size: 15px;
  font-weight: normal;
  color: #fff;
  padding: 20px 25px;
  border: none;
  border-radius: 100px;
  background: var(--cor-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  cursor: pointer;
  margin: 10px 0;
}
  .blog-comentarios .submit:hover {
    color: #FFF;
    background-color: var(--cor-secundaria);
  }
.blog-comentarios .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  margin: 25px 0;
}
.blog-comentarios .comment-form-cookies-consent input {
  width: auto;
  margin-right: 20px;
}
.blog-comentarios .commentlist li {
  list-style: none;
  border: 1px solid #ccc;
  padding: 25px;
}
.blog-comentarios .comment-author {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-comentarios .comment-author a {
  color: #666;
}
.blog-comentarios .commentmetadata {
  border-top: 1px solid #ccc;
  margin-top: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}
  .blog-comentarios .commentmetadata a {
    font-size: 12px;
    color: #939393;
  }
.blog-comentarios .reply {
  margin-top: 15px;
}
.blog-comentarios .comment-reply-link {
  color: #666;
  border: 1px solid #ddd;
  padding: 5px 20px;
  border-radius: 100px;
}

/* Quem Somos - Single Page */

.hero-internas {
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  padding: 85px 25px;
}
.hero-internas:before {
  position: absolute;
  content:"";
  height:100%;
  width:100%;
  top:0;
  left:0;
  background: linear-gradient(to left, rgba(255,0,0,0) 0%, var(--cor-principal) 55%);
}
.hero-internas img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 20%;
  z-index: -999;
}
.hero-internas .imagem-padrao {
	width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 20%;
  z-index: -999999;
}
.hero-internas .woo-cat {
  z-index: -888;
}
.hero-internas-box {
  display: flex;
  padding: 50px 0;
  justify-content: space-between;
  width: 100%;
}
  .hero-internas-box > div {
    width: 50%;
  }
  .hero-internas-pagina {
    font-size: 20px;
    color: var(--cor-complementar);
    margin-bottom: 25px;
  }
  .hero-internas-box h1 {
    font-size: 40px;
    line-height: 55px;
  }
  .hero-internas-box p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 15px;
  }
  .hero-internas .separador {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .hero-internas .botao-redondo {
    background-color: var(--cor-sombra);
    color: white;
  }
    .hero-internas .botao-redondo:hover {
      background-color: var(--cor-escura);
    }
.destaques.quem-somos {
  background-color: white;
  padding: 35px 0;
  padding-bottom: 0;
}
.top-margin {
  margin-top: -85px;
}
.bloco-fotos.quem-somos {
  background-color: white;
}
.quem-cursos {
  background-color: white;
  padding: 75px 0;
}
.quem-cursos-box {
  background-color: var(--cor-secundaria);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
  .quem-cursos-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .quem-cursos-box > div:first-child {
    padding: 75px;
  }
  .quem-cursos-box h2 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 200;
  }
  .quem-cursos-box p {
    font-weight: 200;
    margin-bottom: 25px;
  }
  .quem-somos.grid-fotos {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .quem-somos > div > div i {
    font-size: 30px;
    margin-bottom: 15px;
  }

/* Paginações */

.paginacao {
  width: 100%;
}
  
/* Arquivo - Modelo 1 */

.arquivo-section {
  background-color: white;
  color: white;
}
  .arquivo-section .titulos h2 {
    color: white;
  }
  .arquivo-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
.arquivo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px; 
}
.arquivo-colunas {
  border-radius: 5px;
  background-color: var(--cor-sombra);
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
}
  .arquivo-colunas a {
    color: white;
  }
  .arquivo-colunas:hover {
    transform: scale(1.01);
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
.arquivo-section h5 {
  padding: 25px 25px 0 25px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.arquivo-section p {
  padding: 25px; 
  font-size: 12px;
  line-height: 22px;
  font-weight: 300;
}

/* Galeria - Single */
.galeria-header {
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
}
.galeria-header-filter {
  background-color: #5C5C5C;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -99;
  mix-blend-mode: multiply;
}
.galeria-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -999;
}
.galeria-header-define {
  font-size: 25px;
  margin-bottom: 5px;
}
.galeria-header-titulos {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}
.galeria-header-titulos h1 {
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.galeria-header-meta {
  text-align: center;
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #919191;
}
.galeria-header-meta span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}
.galeria-botao-voltar > svg {
  transform: rotate(180deg);
}
.galeria-botao-voltar:hover svg {
  transform: translateX(-30%);
}


/* Professores - Single */

.professor-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 50px;
  width: 60%;
}
.professor-content p {
  margin-bottom: 25px;
}

.professor-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.08);
  background-color: var(--cor-principal);
}

.professor-header {
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
}
.professor-header-filter {
  background-color: #5C5C5C;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -99;
  mix-blend-mode: multiply;
}
.professor-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -999;
}
.professor-header-define {
  font-size: 25px;
  margin-bottom: 5px;
}
.professor-header-titulos {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}
.professor-header-titulos h1 {
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.professor-header-meta {
  text-align: center;
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #919191;
}
.professor-header-meta span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}
.professor-botao-voltar > svg {
  transform: rotate(180deg);
}
.professor-botao-voltar:hover svg {
  transform: translateX(-30%);
}

.destaques.contato {
  background-color: white;
  padding: 35px 0;
  padding-bottom: 50px;
}
.destaques.contato > div {
  grid-template-columns: 2fr 1fr;
}
.destaques.contato > div > div {
  background-color: var(--cor-sombra);
}
.contato-borda {
  border-bottom: 1px solid white;
  opacity: 0.1;
  margin: 25px 0;
}

.contato-complemento {
  display: block;
  width: 60%;
}
.contato-complemento h3 {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 400;
}
.contato-borda-cinza {
  border-bottom: 1px solid rgb(235, 235, 235);
  margin: 25px 0;
}
.contato-form form br {
  display: none;
}
.contato-form form {
  margin-top: 30px;
}
.contato-form form p {
  margin: 15px 0;
}
.contato-campo {
  width: 95%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid;
  border-color: rgb(230, 230, 230);
}
.contato-campo:focus {
  border-radius: 0;
  background-color: transparent;
  color: var(--cor-secundaria);
  border-bottom: 2px solid;
  border-color: var(--cor-secundaria);
}
/* Documentação */
.documentacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}
.documentacao-box {
  margin-bottom: 55px;
}
.documentacao-box .botao-redondo {
  width: 100%;
}

  /* Documentação WP Blocks */

  .wp-block-separator {
    border: 1px solid rgb(235, 235, 235);
    border-left: none;
    border-right: none;
    margin: 25px 0;
  }
  .documentacoes .wp-block-buttons>.wp-block-button {
    width: 100%;
  }
  .documentacoes .wp-block-button__link {
    color: #fff;
    background-color: #12294c;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
    text-align: left;
    width: 100%;
  }
  .documentacoes .wp-block-button__link:hover {
    background-color: #1e385f;
  }


/* Videoteca */

.videoteca-section {
  background-color: var(--cor-sombra);
}
.videoteca-titulos {

}
  .videoteca-titulos h2 {
    font-size: 136px;
    text-transform: lowercase;
    color: var(--cor-clara-titulos);
    margin-right: 25px;
    line-height: 136px;
    margin-bottom: 0;
  }
  .videoteca-titulos.branco h2 {
    color: white;
  }
.videoteca-apresentacao {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.videoteca-descricao {
  margin-bottom: 50px;
}
.videoteca-descricao p {
  color: white;
}

.yotu-playlist .yotu-wrapper-player {
  display: none;
}

/* In Company */

.incomp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 65px;
}
  .incomp-grid form br {
    display: none;
  }
  .incomp-grid form p {
    margin-bottom: 15px;
  }
  .incomp-grid.proposta {
    grid-template-columns: 1fr 2fr;
    
  }
  .incomp-grid .botao-redondo {
    justify-content: center;
  }
.incomp-proposta {
  display: flex;
  flex-direction: column;
}

.incomp-section-vantagens {
  padding: 75px 0;
  background-color: var(--cor-suave);
}
  .incomp-section-vantagens h2 {
      font-size: 35px;
      line-height: 45px;
      font-weight: 200;
      margin-bottom: 15px;
  }
.incomp-box-observacoes {
  background-color: var(--cor-diferencial);
  color: white;
  padding: 50px;
  border-radius: 10px;
}

.incomp-section-proposta {
  padding: 75px 0 0 0;
}



/* Tutor LMS */

.tutor-col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666666%;
  flex: 0 0 59.666666%;
  max-width: 59.666666%;
}
.tutor-col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 65%;
  max-width: 65%;
}
 
.elementor-widget-uael-woo-add-to-cart .uael-button {
  background-color: var(--cor-principal);
}
.elementor-widget-uael-woo-add-to-cart .uael-button:focus, .elementor-widget-uael-woo-add-to-cart .uael-button:hover {
  background-color: var(--cor-diferencial);
}
/* 
    Carrinho 
*/
.widget_shopping_cart_content_box {
  position: fixed;
  right: -450px;
  width: 300px;
  height: 100%;
  background-color: #ccc;
  top: 120px;
  z-index: 999999;
  padding: 35px;
  transition: all .5s ease-out;
}
.woocommerce ul.cart_list, .woocommerce ul.product_list_widget {
  display: flex;
  flex-direction: column;
}
.woocommerce #content table.cart img, .woocommerce table.cart img, .woocommerce-page #content table.cart img, .woocommerce-page table.cart img {
  height: 60px;
  width: 60px;
}
.product-remove {
  width: 2%;
}
.product-thumbnail {
  width: 15%;
}
.product-name {
  width: 40%;
}
.product-price {
  width: 10%;
}
.product-quantity {
  width: 10%;
}
.product-subtotal {
  width: 15%;
  font-weight: 900;
}
.woocommerce-cart-form {
  background-color: #ffffff;
}
.woocommerce-cart-form a {
  color: var(--cor-cinza);
}
.woocommerce .woocommerce-cart-form .quantity .qty {
  border: 1px solid #c6c6c6;
  border-radius: 11px;
  background-color: #F1F1F1;
  font-size: 20px;
}
.cart_totals h2 {
  margin: 0;
  text-align: left;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 15px 30px;
  font-weight: 400;
  left: auto;
  color: #FFFFFF;
  background-color: var(--cor-complementar-sombra);
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  border-radius: 100px;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
  color: inherit;
  cursor: not-allowed;
  opacity: .3;
  padding: 15px 30px;
  background-color: #ffffff;
}
.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 150px;
  font-size: 12px;
}
.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
  float: left;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.woocommerce a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: var(--cor-cinza-titulos) !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}
.woocommerce-cart-form input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  
 opacity: 1;
}


/* 

Mobile

Smartphones

*/

@media (max-width: 700px) {
  h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .flex-box {
    flex-direction: column;
  }
  .botao-redondo {
    padding: 8px 20px;
    font-size: 12px;
  }
  .icon {
    display: flex;
    font-size: 30px;
  }
  
  #menu-principal {
    display: none;
    position: fixed;
    top: 80px;
    width: 100%;
    height: 100vh;
    background-color: var(--cor-principal);
    right: 0;
    justify-content: flex-start;
    flex-flow: column nowrap;
    z-index: 99999; 
  }
  .botao-login {
    display: none;
  }
  
  .slide-set {
    height: 70vh;
  }
  .slide img {
    height: 100%;
    object-fit: cover;
  }
  .slide-content {
    width: 80%;
  }
  .bullet-set {
    bottom: 15px;
  }
  .slide-set {
    touch-action: auto;
    -ms-touch-action: auto;
  }
  .slide span {
    margin-bottom: 10px;
  }
  .slider h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .slide p {
    font-size: 12px;
    line-height: 20px;
  }
  .parceiros > div > div {
    flex-direction: column;
  }
  .parceiros > div > div > div {
    padding: 15px;
  }
  .parceiros p {
    text-align: center;
  }
  .bloco-fotos {
    height: 100%;
    margin-bottom: 75px;
  }
  .grid-fotos {
    grid-template-columns: 1fr;
    grid-gap: 25px;
    padding: 25px 25px;
  }
  .corpo-docente > div {
    width: 75%;
  }
  .corpo-docente p {
    font-size: 15px;
    line-height: 25px;
  }
  .destaques > div {
    grid-template-columns: 1fr;
  }
  .destaques > div > div {
    width: auto;
    padding: 30px;
  }
  .titulos {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 25px;
    align-items: flex-start;
  }
  .curso-sobre-grade h3 {
    font-size: 25px;
    line-height: 40px;
    text-transform: lowercase;
  }
  .titulos h2 {
    font-size: 40px;
    line-height: 40px;
    margin-right: 0;
  }
  .titulos > div:nth-child(2) {
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
  .grade-cursos {
    grid-template-columns: 1fr;
  }
  .incompany-grade {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .home-newsletter > div {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .newsletter-formulario input {
    font-size: 15px;
    padding: 15px 20px;
  }
  .newsletter-formulario .botao-redondo {
    right: 35px;
  }
  .cursos-menu {
    display: none;
  }
  .cursos-menu > div {
    justify-content: center;
    padding: 0 25px;
  }
   
  .curso-hero {
    padding: 35px 0;
  }
  .curso-hero > div > div {
    grid-template-columns: 1fr;
  }
  .curso-sobre-grade {
    grid-template-columns: 1fr;
  }
  .curso-professores .flex-box {
      
  }
  .curso-professores-img img {
    width: 100%;
  }
  .curso-professores-img:before {
    margin-left: -25%;
  }
  .curso-conteudo-programatico-box {
    width: 80%;
    margin: 0 auto;
  }
  .curso-importante-box {
    width: 80%;
  }
  .curso-proximos-passos-grid {
    grid-template-columns: 1fr;
    grid-gap: 25px;
    padding-top: 25px;
  }
  .cursos-filtro {
    display: none;
  }
  footer {
    background-image: none;
  }
  footer > div > div {
    width: auto;
    padding: 20px 15px;
  }
  .footer-redes > div {
    flex-direction: column;
  }
  .footer-redes > div > div {
    flex-direction: column;
    text-align: center;
  }
  .footer-redes > div > div > div {
    margin: 25px 0;
  }
  .footer-redes > div > div > div:last-child {
    margin: 0;
    margin-top: 25px;
  }
  .hero-internas {
    padding: 25px 0;
  }
  .hero-internas-box {
    padding: 30px 25px;
    grid-template-columns: 1fr;
  }
  .hero-internas-box > div {
    width: 100%;
  }
  .hero-internas-pagina {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .hero-internas-box h1 {
    font-size: 23px;
    line-height: 30px;
  }
  .hero-internas .separador {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .hero-internas-box p {
    font-size: 12px;
    line-height: 25px;
    font-weight: 300;
  }
  .top-margin {
    margin-top: -55px;
  }
  .quem-cursos-box {
    grid-template-columns: 1fr;
  }
  .quem-cursos-box > div:first-child {
    padding: 25px;
  }
  .quem-cursos-box h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 200;
  }
  .quem-cursos-box p {
    font-weight: 200;
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 25px;
  }
  .arquivo-grid {
    grid-template-columns: 1fr;
  }
  .contato-complemento {
    display: block;
    width: 100%;
  }
  .destaques.contato > div {
    grid-template-columns: 1fr;
  }
  .destaques.contato p {
    font-size: 12px;
  }
  .woo-quantidade.minus,
  .woo-quantidade.plus {
    width: 100%;
    height: 50px;
  }
  .woo-quantidade.num {
    width: 100%;
    box-sizing: border-box;
  }
  .curso-inscreva-grid {
    grid-template-areas:
        "b"
        "a"
        "c";
  }
  .curso-inscreva .seletor-sector p {
    font-size: 15px;
    line-height: 25px;
  }
  .curso-inscreva .seletor-sector {
    margin-top: -25px;
  }
  .woocommerce .products ul, .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  .cart {
    flex-direction: column;
  }
  .botao-comprar {
    margin-top: 25px;
    margin-left: 0;
  }
  .curso-inscreva-box {
    border-right: none;
  }
  footer .footer-creditos {
    width: auto;
    padding: 20px;
  }
  .botao-redondo.baixar {
    position: relative;
    top: 0;
    right: 0;
    background-color: var(--cor-sombra);
    padding: 3px 25px;
    font-size: 11px;
    letter-spacing: .5px;
    margin-top: -15px;
  }
  .curso-box-descricao h1 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .footer-redes-box {
    margin: 25px 15px;
  }
  .footer-redes > div {
    display: flex;
    padding: 35px 25px;
  }
  .control {
    display: none;
  }
  .slide-depoimento {
    height: auto;
  }
  .slide-depoimento p {
    font-size: 16px;
    line-height: 25px;
  }
  .professor-content {
    grid-template-columns: 1fr;
    width: 75%;
  }
  .woocommerce-ordering {
    display: none;
  }
  .woocommerce-result-count {
    display: none;
  }
  .incomp-grid {
    grid-template-columns: 1fr;
  }
  .incomp-grid.proposta {
    grid-template-columns: 1fr;
  }
  .blog-content {
    display: flex;
    flex-direction: column;
  }
  .blog-content > div:nth-child(1) {
    width: auto;
    padding: 0 25px;
  }
  .blog-content > div:nth-child(2) {
    width: auto;
    padding: 35px 25px;
  }
  .blog-categorias {
    background-color: #777777;
    color: white;
    border-radius: 100px;
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
  }
  .blog-categorias h5 {
    display: none;
  }
  .videoteca-titulos h2 {
    font-size: 36px;
    line-height: 36px;
  }
  @keyframes moveSlideshow {
    0% { 
      transform: translateX(50%);  
    }
    85% { 
      transform: translateX(-55%);  
    }
    95% { 
      transform: translateX(-55%);  
    }
    100% { 
      transform: translateX(50%);  
    }
  }
  /* WooCommerce Carrinho */

  .woocommerce table.shop_table_responsive tr td {
    width: 100%;
  }
  .woocommerce table.cart .product-thumbnail {
      display: block;
      width: 100%;
  }

  .woocommerce table.cart img {
      height: 200px;
      width: 200px;
  }
  .woocommerce table.shop_table_responsive tr td::before {
      content: attr(data-title) " ";
  }

  /* WooCommerce Checkout */

  .checkout-divisor {
    display: none;
  }
  .checkout-titulo {
    display: none;
  }
  /* incluso */
  .curso-incluso-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
  }
}

/* 

Mobile

Smartphones Pequenos

*/

@media (max-width: 350px) {
  .slide-set {
    height: 80vh;
  }
}


/* OUT */
 
/* Página Eventos */

/* Slider Página Eventos */

.slider-eventos .slide::before {
  background: linear-gradient(to bottom, rgb(0 0 0 / 35%) 35%, #000000ad 80%);
}
.slider-eventos .slide-content {
  width: 100%;
  max-width: 1140px;
  align-items: flex-start;
  bottom: 150px;
  z-index: 99;
}

.slider-eventos .slide h2 {
  font-size: 30px;
  color: #28DCEB;
  line-height: 30px;
  max-width: 450px;
  text-align: left;
}
.slider-eventos .slide-content p {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 10px 0;
  line-height: 20px;
}
.slider-eventos .slide span {
  text-transform: lowercase;
  letter-spacing: 0;
  margin-bottom: 35px;
  font-size: 25px;
  position: relative;
  top: 0;
}
.slider-eventos .container {
  display: flex;
  justify-content: flex-start;
}
.slider-eventos .bullet-set {
  left: 5%;
  bottom: 90px;
  z-index: 99;
}

/* Slider Boxes */
.slider-eventos-boxes {
  grid-area: b;
}
.slider-eventos-boxes-proximos {
  background-color: white;
    border-radius: 10px;
    padding: 15px 30px;
    margin-bottom: 15px;
}
.slider-eventos-boxes-proximos:hover {
  background-color: #dfe9ff;
  cursor: pointer;
}
.evento-prox-proximos {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5F84D8;
  border-bottom: 1px solid #EAEBEE;
  padding-bottom: 6px;
}
.evento-prox-data {
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #9F9F9F;
  margin-bottom: 10px;
}
.evento-prox-nome {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #284774;
  margin-bottom: 0;
  text-align: left;
}
.slider-eventos-boxes-agenda {
  background-color: #2D53A9;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-transform: uppercase;
}
.slider-eventos-boxes-agenda .botao-redondo {
  font-size: 12px;
  padding: 5px 20px;
  color: #b9cbf4;
}
.slider-eventos-boxes-agenda h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  color: #28DCEB;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #496dbf;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.slider-eventos-boxes-agenda p {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.07em;
  text-transform: initial;
  color: #FFFFFF;
}

/* Eventos Acontece */
.eventos-acontece {
  background-color: #2D53A9;
  padding: 50px 0;
}
.eventos-acontece-video {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
  margin-top: -520px;
  grid-template-areas: "a a b" 
                       "c d e";

}
.eventos-acontece-video-box {
  position: relative;
} 

/* Bloco Agenda */

.eventos-bloco-agenda {
  padding: 50px 0;
}

.agenda-titulo {
  font-size: 80px;
  text-transform: lowercase;
  color: var(--cor-clara-titulos);
  margin-right: 25px;
  line-height: 80px;
  margin-bottom: 35px;
}
.eventos-agenda {
  display: grid;
  gap: 35px;
}
.eventos-agenda-evento {
  border: 1px solid #DBDBDB;
  box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 15px;
}
.eventos-agenda-evento:hover {
  transform: scale(1.01);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.15);
}
.eventos-agenda-evento:hover .eventos-agenda-bg {
  filter: brightness(0.9) saturate(0.5);
}

.eventos-agenda-bg {
  position: absolute;
  object-fit: cover;
  object-position: top;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -9999;
  overflow: hidden;
  left: 0;
  filter: brightness(0.5) saturate(0.3);
}

.eventos-agenda-detalhes {
  background: #FFFFFF;
  border: 1px solid #DBDBDB;
  box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: 30%;
  padding: 10px 30px;
}
.evento-cidade {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5C5C5C;
  margin-bottom: 0;
  border-bottom: 1px solid #DDDDDD;
  padding: 10px 0px;
}
.evento-data {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #12294c;
}
.evento-separador {
  width: 86px;
  height: 0px;
  border: 1px solid #e3e3e3;
  margin-top: 15px;
  margin-bottom: 20px;
}
.evento-imagem {
  margin: 30px 0px;
  max-height: 60px;
}
.evento-resumo {
  text-align: left;
  line-height: 25px;
  font-weight: 300;
}

/* Página Eventos - Mobile */

@media (max-width: 768px) {
  .slider-eventos .slide-content {
    left: 30px;
    width: 65%;
    text-align: left;
  }
  .slider-eventos .slide h2 {
    font-size: 25px;
  }
  .slider-eventos .slide span {
    text-transform: lowercase;
    letter-spacing: 0;
    margin-bottom: 35px;
    font-size: 18px;
    position: relative;
    top: 0;
  }
  .slider-eventos .bullet-set {
    left: 15%;
  }
  .slider-eventos-boxes {
    grid-area: a;
  }
  .eventos-acontece-video {
    grid-template-columns: 1fr;
    grid-template-areas: "a" 
                         "b" 
                         "c" 
                         "d" 
                         "e";
    margin-top: -100px;
  }
  .eventos-acontece-video-box-modal {
    grid-row-start: auto;
  }
  .eventos-acontece-agenda-logos {
    flex-direction: column;
    align-items: baseline;
    gap: 45px;
  }
  .eventos-agenda-detalhes {
    width: auto;
    margin-top: 20px;
  }
  .modal-conteudo iframe {
    width: 90%;
    margin: 15px;
  }
  .close {
    left: 15px;
  }
  .evento-imagem {
    width: 100%;
    max-height: fit-content;
  }
}


/* NOVO EVENTOS - 05 JAN */
.eventos-hero {
  background: transparent linear-gradient(180deg, #28DCEBCC 0%, #023097E6 100%) 0% 0% no-repeat padding-box;
  color: white;
  padding: 100px 0;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}
.eventos-hero-video-background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -999;
}
.eventos-hero-texto-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.eventos-hero-texto {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eventos-hero-texto h1 {
  font-weight: 500;
  font-size: 160px;
  line-height: 180px;
  text-transform: lowercase;
}
.eventos-hero-cta {
  width: 300px;
  margin: 0 auto;
  border-left: 1px solid #69D9E8;
  padding-left: 30px;
  margin-bottom: 100px;
}
.eventos-hero-cta p {
  line-height: 22px;
  text-align: left;
}

.evento-section {
  min-height: 85vh;
  overflow: hidden;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: end;
}
.evento-section-page {
  height: auto;
}
.estatais {
  background: linear-gradient(120.53deg, #5BB2E1 11.4%, #5948D6 82.18%);
}
.controgov {
  background: linear-gradient(120.53deg, #8CBE22 11.4%, #668F0D 82.18%);
}
.conex {
  background: linear-gradient(120.53deg, #4BB3C1 11.4%, #5CB4C5 82.18%);
}
.seminario {
  background: linear-gradient(120.53deg, #094C8D 11.4%, #186BBC 82.18%);
}
.summit {
  background: linear-gradient(120.53deg, #EB6720 11.4%, #91451C 82.18%);
}
.evento-info-box {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  max-width: 600px;
}
.evento-info-resumo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
  "a a"
  "b c"
  "d d";
  grid-gap: 55px;
}
.evento-info-resumo > * {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
}
.evento-info-resumo h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  grid-area: a;
}
.evento-info-resumo h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.evento-info-resumo p {
  text-align: left;
}

.evento-info-logo {
  height: 75px;
  margin-bottom: 35px;
}
.evento-imagem-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.evento-imagem-grande {
  position: relative;
}
.evento-video-play {
  position: absolute;
  bottom: 0;
  right: 0;
  width: -webkit-fill-available;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  flex-direction: column;
  padding: 20px 35px;
  margin: 35px;
}
.evento-video-play:hover {
  background: #2f5999;
}
.evento-video-play h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 130px;
}
.evento-video-play span {
  color: white;
  border-bottom: 1px solid white;
  margin-top: 25px;
  font-weight: 600;
}
.evento-inscreva {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.05));
  background: #0000002b;
}
.evento-formulario {
  grid-area: d;
}
.evento-formulario input, textarea {
  box-sizing: border-box;
}
.evento-formulario input {
  border-radius: 100px;
  background-color: #0000002b;
  color: white;
  border: none;
  padding: 10px 25px;
}
.evento-formulario input[type="submit"] {
  background-color: #00000082;
  cursor: pointer;
}
.evento-formulario input[type="submit"]:hover {
  background-color: #000000a5;
}
.evento-formulario textarea {
  border-radius: 10px;
  background-color: #0000002b;
  color: white;
  border: none;
  padding: 10px 25px;
}
.evento-formulario textarea::placeholder {
  color: white;
  opacity: 0.7;
}
.evento-formulario textarea:focus {
  background-color: #00000069;
}
.evento-formulario input::placeholder {
  color: white;
  opacity: 0.7;
}
.evento-formulario input:focus {
  background-color: #00000069;
}

@media (max-width: 768px) {
  .eventos-hero {
    height: 100%;
  }
  .eventos-hero-texto h1 {
    font-weight: 500;
    font-size: 80px;
    line-height: 100px;
    text-transform: lowercase;
  }
  .eventos-hero-cta {
    width: 100%;
    margin: 0 auto;
    border-left: none;
    padding-left: 0;
    margin-bottom: 100px;
  }
  .eventos-acontece-agenda-logos {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
  .eventos-acontece-agenda-logos li {
    border-top: 1px solid #ffffff33;
    padding-top: 25px;
    width: 100%;
    position: relative;
  }
  .eventos-acontece-agenda-logos li span {
    position: absolute;
    top: 5px;
    left: 0;
  }

  .eventos-acontece-agenda-logos li a {
    display: flex;
    flex-direction: column;
    gap: 35px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 300;
    border-left: none;
    padding-left: 25px;
    align-items: flex-end;
  }
  .evento-section {
    height: 100%;
    overflow: hidden;
    color: white;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
  }
  .evento-info-box {
    padding: 35px;
  }
  .evento-info-logo {
    height: 50px;
  }
  .evento-info-resumo {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "a"
        "b"
        "c"
        "d";
    grid-gap: 30px;
  }
  .evento-imagem-background {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  .evento-video-play {
    top: 0;
    height: fit-content;
  }
}

/* 
////////////////////////////////

Página Estatais + Gutemberg

*/

.estatais-2023 {
  font-family: 'KoHo', sans-serif;
}

.estatais-hero {
  height: 670px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;

  background-color: transparent !important;
  /* background-image in theme folder images/eventos/estatais-2023/jk.png */
  background: url("../images/eventos/estatais-2023/jk.png") no-repeat right, linear-gradient(270deg, #1235a2 0%, #6d3bb5db 75%);
  
}
  .estatais-hero .wp-block-group__inner-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
.estatais-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  gap: 20px;
}
.estatais-video-bg {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 650px;
  object-fit: cover;
  z-index: -1; */
}
.estatais-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: -99;
}
.estatais-2023 .hero-p-destaque {
  font-size: 14px;
    max-width: 455px;
    line-height: 25px;
}
.estatais-2023 .botao-principal {
  text-transform: uppercase;
  font-weight: 600;
}
.estatais-2023 .botao-principal a {
  padding: calc(.667em + 2px) calc(5em + 2px);
}
.estatais-2023 .botao-principal a:hover {
  color: white !important;
  background-color: #502393 !important;
}
.estatais-2023 h2, h3, h4 {
  text-transform: uppercase;
}
.estatais-2023 h3 {
  font-size: 30px;
}
.estatais-2023 h4 {
  font-size: 30px;
  font-weight: bold;
}
.estatais-infos {
  font-size: 25px;
    text-transform: uppercase;
    color: #E1D1FF;
    letter-spacing: 2px;
    display: flex;
    gap: 25px;
}
  .estatais-infos .wp-block-group__inner-container {
    display: flex;
    gap: 25px;
    flex-direction: row;
    padding: 25px;
  }
.estatais-grade {
  height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: end;
    margin-bottom: 0;
}
.estatais-grade .wp-block-image img {
  height: 100%;
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}
.estatais-info-box {
  padding: 55px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.estatais-imagem-grande {
  position: relative;
}
.estatais-imagem-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estatais-padding-section {
  padding: 80px 0;
}

/* destaques */
.estatais-2023 .estatais-destaques {
  background: url(../images/eventos/estatais-2023/geometria.png) no-repeat, #2D1864;
  background-position: center right;
}

.estatais-2023 .estatais-destaques .wp-block-separator {
  border: 1px solid #5D44A0;
  border-left: none;
  border-right: none;
  margin: 25px 0;
}

.estatais-destaques-coluna {
  display: flex;
  gap: 15px;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.estatais-destaques-coluna p {
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 17px;
}
.estatais-destaques-coluna img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}

/* palestrantes */

.estatais-2023 .palestrantes {
  padding: 30px;
}

.estatais-2023 .palestrantes h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 50px;
}

.estatais-palestrante > div:nth-child(2) {
  border-top: 1px solid #512393;
  padding-top: 15px;
}
.estatais-palestrante > div:nth-child(3) {
  border-top: 1px solid #8f8f8f;
  padding-top: 15px;
}

/* fotos eventos anteriores */

.estatais-2023 .eventos-anteriores {
  margin-bottom: -250px;
}

.estatais-2023 .eventos-anteriores img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

/* cronometro */

.estatais-cronometro-box {
  display: flex;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 30px;
  align-items: center;
}
.estatais-cronometro-box .botao-comecar-verde {
  width: 100%;
}
.estatais-cronometro-box > div {
  margin: 15px 25px;
}
.estatais-cronometro-box h5 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 800;
}
.estatais-cronometro {
  padding-left: 0;
  list-style: none;
  display: flex;
}
.estatais-cronometro li {
  display: flex;
  flex-direction: column;
  margin: 0 25px;
  font-size: 80px;
  line-height: 80px;
  font-weight: 800;
  text-align: center;
}
.estatais-cronometro li > span {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 25px;
  font-weight: 400;
}

/* programação */

.estatais-2023 .programacao-section {
    background: url(../images/eventos/estatais-2023/estatais-logo-bg.png) no-repeat;
    background-position: top right;
}

.estatais-2023 .programacao {
  width: 690px;
}

.estatais-2023 .programacao h2 {
  font-weight: 600;
  line-height: 30px;
}
.estatais-2023 .programacao-dia {
    font-weight: 300 !important;
    margin-bottom: 45px;
}


.estatais-2023 .programacao .programa {
  border-top: 1px solid #7CC9E7;
  padding-top: 20px;
  margin-bottom: 20px;
}

.estatais-2023 .programacao .programa h6 {
  font-size: 14px;
  font-weight: bold;
}

/* local */

.estatais-2023 .local-mapa img {
  margin-bottom: -200px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* inscreva-se */

.estatais-2023 .inscreva-section {
  background: url(../images/eventos/estatais-2023/estatais-inscreva-bg.jpg) no-repeat;
  background-size: cover;
}

.estatais-2023 .inscreva-box {
  padding: 30px 50px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.estatais-2023 .inscreva-box h4 {
  font-size: 35px;
  line-height: 35px;
}

.estatais-2023 .inscreva-box h5 {
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
}

.estatais-2023 .inscreva-box h6 {
  color: #A5C7FF;
  font-size: 25px;
  line-height: 25px;
}

.estatais-2023 .inscreva-box .aviso {
  font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
}


.estatais-2023 :where(.wp-block-columns.is-layout-flex) {
  gap: 5em;
}

/* mídia para celular */

@media screen and (max-width:700px) {
  .estatais-hero {
    height: 80vh;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: transparent !important;
    background: linear-gradient(270deg, #1235a2 0%, #6d3bb5db 75%);
    padding: 25px;
  }
  .estatais-2023 .botao-principal a {
    padding: calc(0.667em + 2px) calc(2em + 2px);
    font-size: 13px;
    width: auto;
    box-sizing: border-box;
  }
  .estatais-destaques-coluna {
    justify-content: center;
}
.estatais-2023 .palestrantes h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 35px;
}
.estatais-palestrante > div:nth-child(3) {
  border-top: none;
  padding-top: 0;
}
.estatais-2023 .estatais-palestrante img {
  max-height: 140px;
  object-fit: contain;
  margin-bottom: -50px;
}
.estatais-2023 .programacao-dia {
  font-weight: 600 !important;
  margin-bottom: 25px;
  font-size: 20px;
}
.estatais-2023 .programa > div:nth-child(1) {
  display: none;
}
.estatais-2023 .programacao {
  width: 100%;
}
.estatais-2023 h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/* cronometro */
.estatais-cronometro li {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  text-align: center;
}
.estatais-cronometro li > span {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 15px;
  font-weight: 400;
}
.estatais-infos {
  font-size: 15px;
  text-transform: uppercase;
  color: #E1D1FF;
  letter-spacing: 2px;
  display: flex;
  gap: 25px;
  line-height: 20px;
}
.estatais-infos .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.estatais-hero .wp-block-group__inner-container {
  height: auto;
}
.estatais-infos .wp-block-group__inner-container p {
  text-align: center;
}
.estatais-infos .wp-block-group__inner-container p:nth-child(2) {
  display: none;
}
}

/* Excelência Regiões */

.regioes-2023 {
  font-family: inherit;
}

.regioes-2023 strong {
  font-weight: 700;
}

.regioes-padding-section {
  padding: 80px 0;
}

.regioes-2023 .titulos-sessao {
  text-transform: uppercase;
}

.regioes-2023 .programacao-section {
  background: none;
}

.regioes-2023 .programacao {
  width: 690px;
}

.regioes-2023 .programacao h2 {
  font-weight: 600;
  line-height: 30px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.regioes-2023 .programacao-dia {
    font-weight: 300 !important;
    margin-bottom: 45px;
}

.regioes-2023 .programacao .programa {
  border-top: 1px solid #2BB198;
  padding-top: 20px;
  margin-bottom: 20px;
}

.regioes-2023 .programacao .programa h6 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}
.regioes-2023 .programacao .programa h4 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Professores */

.regioes-2023 .botao-principal a {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
}
.regioes-2023 .botao-principal a:hover {
  background-color: #014d3f !important;
  border-radius: 100px;
  color: white;
}


.regioes-2023 .professores {
  max-width: 850px !important;
  padding: 40px;
}

.regioes-2023 .professores h2 {
  font-size: 40px;
  color: #00836B;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.regioes-2023 .professores h4 {
  font-size: 20px;
  font-weight: bold;
  color: #00836B;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.regioes-2023 .professores p {
  font-size: 14px;
  font-weight: 300;
  color: #5C5C5C;
}

.regioes-2023 .professores .coluna {
  gap: 50px;
  border-bottom: 1px solid #CECECE;
  padding-bottom: 50px;
  margin-bottom: 60px;
}

.regioes-2023 .professores .coluna:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Locais */

.regioes-2023 .locais {
  background-color: #F5F5F5;
  background-image: url("../images/eventos/regioes-2023/estado-goias.png");
  background-position: right center;
  background-repeat: no-repeat;
}

.regioes-2023 .locais h2 {
  font-size: 40px;
  color: #585858;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.regioes-2023 .locais h5 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}
.regioes-2023 .locais strong {
  font-weight: 600;
}
.regioes-2023 .locais .coluna {
  border-bottom: 1px solid #CECECE;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
/* last-child no border */
.regioes-2023 .locais .coluna:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Hero */

.regioes-2023 .hero {
  background: transparent linear-gradient(90deg, #00836B 0%, #005870 100%) 0% 0% no-repeat padding-box !important;
}

.regioes-2023 .hero .coluna {
  gap: 50px;
}

.regioes-2023 p {
  font-size: 14px;
  line-height: 25px;
}

.regioes-2023 .hero h2 {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 35px;
  line-height: 40px;
}
.regioes-2023 .hero h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 25px;
}
.regioes-2023 .hero h6 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 20px;
}

/* Conteúdo Programático */

.regioes-2023 .programatico details {
  text-transform: uppercase;
}

.regioes-2023 .programatico details summary {
  font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    cursor: pointer;
    border-top: 1px solid #7CC9E7;
    padding-top: 30px;
    margin-top: 15px;
}

.regioes-2023 .programatico details summary::marker {
  text-align: end !important;
}

/* Destaques */

.regioes-2023 .destaque-evento {

}

.regioes-2023 .destaque-evento h3 {
  font: normal normal bold 30px/41px Outfit;
  letter-spacing: 0.9px;
  color: #002D75;
  text-transform: uppercase;
  margin-top: 15px;
}

.regioes-2023 .destaque-evento p {
  color: #002D75;
}

/* Apresentacao */

.regioes-2023 .apresentacao-evento h3 {
  font: normal normal bold 30px/41px Outfit;
  letter-spacing: 0.9px;
  color: #00836B;
  text-transform: uppercase;
  opacity: 1;
}

.regioes-2023 .apresentacao-evento p {
  font: normal normal normal 14px/25px Outfit;
  letter-spacing: 0.42px;
  color: #464646;
}

.regioes-2023 .apresentacao-evento .colunas {
  gap: 50px;
}

.regioes-2023 .apresentacao-evento .colunas figure {
  margin: 0;
} 
.regioes-2023 .apresentacao-evento .coluna-publico img {
  border-radius: 10px 10px 0 0 !important;
}
.regioes-2023 .apresentacao-evento .coluna-publico h3 {
  color: white;
}
.regioes-2023 .apresentacao-evento .coluna-publico p {
  color: white;
}
.regioes-2023 .apresentacao-evento .coluna-publico .padding {
  background: #1F57B1 0% 0% no-repeat padding-box;
  padding: 25px;
  border-radius: 0 0 10px 10px;
}

/* Inscreva-se */

.regioes-2023 .inscreva-section {
  
}
.regioes-2023 .inscreva-section h2 {
  font: normal normal 600 40px/46px Outfit;
  letter-spacing: 1.2px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.regioes-2023 .inscreva-section h3 {
  font: normal normal 600 25px/46px Outfit;
  letter-spacing: 1.2px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.regioes-2023 .inscreva-section h4 {
  font: normal normal medium 14px/46px Outfit;
  letter-spacing: 1.4px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.regioes-2023 .inscreva-section h5 {
  font: normal normal bold 50px/50px Outfit;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.regioes-2023 .inscreva-section h6 {
  font: normal normal 600 14px/46px Outfit;
  letter-spacing: 0.42px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.regioes-2023 .inscreva-section .container {
  max-width: 900px !important;
}
.regioes-2023 .inscreva-section .investimento {
  padding: 60px;
  border-radius: 15px;
}
.regioes-2023 .inscreva-section .incluso {
  gap: 50px;
}
.regioes-2023 .inscreva-section .incluso h4 {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 18px;
}


/* Ajustes mobile */

@media screen and (max-width: 768px) {
  .regioes-2023 .logo-img {
    height: auto;
    max-width: 70%;
    vertical-align: bottom;
  }
  .regioes-2023 .hero h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .regioes-2023 .hero img {
    align-self: center;
  }
  .regioes-2023 p {
    font-size: 13px;
    line-height: 20px;
  }
  .regioes-2023:where(.wp-block-columns.is-layout-flex) {
    gap: 1em;
  }
  .regioes-2023 .professores .wp-block-image img {
    max-width: 140px;
  }
  .regioes-2023 .programacao h2 {
    font-size: 25px;
  }
  .regioes-2023 .professores h2 {
    font-size: 25px;
  }
  .regioes-2023 .titulos-sessao {
    font-size: 25px;
  }
  .regioes-2023 .inscreva-section h2 {
    font-size: 30px;
  }
  .regioes-2023 .inscreva-section h5 {
    font: normal normal bold 35px/35px Outfit;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .regioes-2023 .inscreva-section .incluso > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .regioes-2023 .inscreva-section .investimento {
    padding: 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    text-align: center;
  }
}

/* Controgov 2023 */

.controgov-2023 .hero-bg {
  background: url(../images/eventos/controgov-2023/background-controgov.jpg) no-repeat;
  background-size: cover;
}

.controgov-2023 .hero-box {
  position: relative;
}

.controgov-2023 .hero-image {
  bottom: -100px;
  z-index: 9;
  position: absolute;
}

.controgov-2023 .mapa-local {
  margin-bottom: -150px;
}

/* Conex 2023 */

.conex-2023 .hero-bg {
  background: url(../images/eventos/conex-2023/background-conex.png) no-repeat center center;
  background-size: contain;
}

.conex-2023 .hero-bg .box-infos {
  z-index: 9;
  position: relative;
}

.conex-2023 .hero-bg .wp-block-media-text__media {
  margin-left: -100px;
  z-index: 5;
}

.conex-2023 .hero-box {
  position: relative;
}

.conex-2023 .hero-image {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 680px;
}
.conex-2023 .hero-image > img {
  object-fit: cover;
    height: 100%;
}

.conex-2023 .separador {
  background-color: #68c6d5;
  color: #68c6d5;
  width: 70%;
  height: 1px;
  border: none;
  margin-left: -20px;
}

.conex-2023 .botao-quero {
    margin-top: -35px;
}

/* conex-2023 class on mobile screen */
@media screen and (max-width: 600px) {
  .conex-2023 .hero-bg .wp-block-media-text__media {
    display: none;
  }
}

