@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #000000;
  --font-family-sans-serif: "Ubuntu", sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  --border-radius: 0.375rem;
  --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --container-max-width: 1200px;
  --grid-gutter-width: 1.5rem;
  --header-height: 80px;
  --footer-height: 343px;
  --branco: #ffffff;
  --azul: #0c4da1;
  --azul-claro: #0094da;
  --verde-claro: #8ac865;
  --turquesa: #009ba4;
  --cinza: #1c1c1c;
  --verde-petr-leo: #016363;
  --laranja: #ff9437;
  --amarelo: #f6b827;
  --vermelho: #d2232a;
  --rosa: #a71680;
  --roxo: #7a086a;
  --cinza-claro: #ebebeb;
  --cinza-m-dio: #bfbfbf;
}

html {
  box-sizing: border-box;
  font-size: var(--font-size-base);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--cinza);
  background-color: var(--branco);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

strong {
  font-weight: bold;
}

h1 {
  font-size: 64px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 48px;
  font-weight: bold;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
}

a {
  color: var(--azul);
  text-decoration: none;
  font-weight: 400;
}
a:hover {
  text-decoration: underline;
}

.btn.btn-primary {
  background-color: #7a086a;
  border: 3px solid #7a086a;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 22px;
  border-radius: 18px;
  border: 3px solid var(--roxo);
}
.btn.btn-primary:hover {
  color: #7a086a;
  background-color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btn.btn-primary {
    width: 100%;
  }
}
.btn.btn-primary:hover {
  background-color: var(--branco);
  color: var(--roxo);
  border: 3px solid var(--roxo);
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#site-header {
  background-color: var(--azul);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1030;
}
#site-header .navbar {
  min-height: var(--header-height);
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  #site-header .navbar {
    justify-content: start;
  }
  #site-header .navbar .search-button {
    margin-left: auto;
  }
  #site-header .navbar .search-button i::before {
    color: var(--branco);
  }
}
@media screen and (max-width: 767px) {
  #site-header .navbar-collapse {
    width: 100%;
    margin-top: 12px;
  }
}
#site-header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  text-decoration: none;
}
#site-header .navbar-brand:hover {
  text-decoration: none;
  color: var(--primary-color);
}
#site-header .navbar-brand .site-title {
  font-size: 1.5rem;
  font-weight: 700;
}
#site-header .custom-logo {
  height: auto;
  width: 245px;
}
#site-header .navbar-nav .nav-link {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
#site-header .navbar-nav .nav-link:hover, #site-header .navbar-nav .nav-link:focus {
  font-weight: 600;
  text-decoration: underline;
}
#site-header .navbar-nav .nav-link.active {
  background-color: var(--branco);
  border-radius: 30px;
  color: var(--azul);
  font-weight: 600;
}
#site-header .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}
#site-header .navbar-nav .dropdown-menu .dropdown-item {
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
#site-header .navbar-nav .dropdown-menu .dropdown-item:hover, #site-header .navbar-nav .dropdown-menu .dropdown-item:focus {
  background-color: var(--light-color);
  color: var(--primary-color);
}
#site-header .navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  border-color: rgb(255, 102, 203);
}
#site-header .navbar-toggler:focus {
  box-shadow: none;
}
#site-header .navbar-toggler .navbar-toggler-icon {
  background-image: url(../img/icon-close.svg);
  width: 30px;
}
#site-header .navbar-toggler[aria-expanded=false] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 30px;
}
#site-header .navbar-toggler.search-button i {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  #site-header .navbar-toggler i::before,
  #site-header .navbar-toggler span::before {
    color: var(--branco);
  }
}
#site-header .search form {
  display: flex;
  background-color: var(--branco);
  border-radius: 12px;
  border: 1px solid black;
}
#site-header .search form input {
  height: 40px;
  border: none;
}
#site-header .search form button {
  background: var(--branco);
  border: none;
  padding: 0;
  cursor: pointer;
  padding-right: 12px;
  border-radius: 7px;
}
@media screen and (max-width: 767px) {
  #site-header .search {
    margin-top: 12px;
    width: 100%;
  }
}

#site-footer {
  background-color: var(--azul);
  color: var(--branco);
  margin-top: auto;
  padding: 0;
  position: relative;
  z-index: 2;
}
#site-footer .main-footer {
  padding: 40px 0 30px;
}
#site-footer .main-footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #site-footer .main-footer .footer-logo:nth-child(2) {
    display: none;
  }
}
#site-footer .main-footer .footer-logo img {
  max-height: 80px;
  width: auto;
}
#site-footer .main-footer .footer-site-title {
  text-align: center;
}
#site-footer .main-footer .footer-site-title a {
  color: var(--branco);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
#site-footer .main-footer .footer-site-title a:hover {
  font-weight: bold;
  text-decoration: underline;
}
#site-footer .footer-menu {
  padding-bottom: 30px;
}
#site-footer .footer-menu .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 991.98px) {
  #site-footer .footer-menu .footer-nav {
    gap: 1.5rem;
  }
}
#site-footer .footer-menu .footer-nav li {
  margin: 0;
}
#site-footer .footer-menu .footer-nav li a {
  color: var(--branco);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
}
#site-footer .footer-menu .footer-nav li a:hover {
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 767px) {
  #site-footer .footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #site-footer .footer-menu .footer-nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  #site-footer .footer-menu .footer-nav li {
    text-align: left;
  }
}
#site-footer .rights {
  background-color: var(--dark-color);
  padding: 20px 0;
}
#site-footer .rights .row {
  align-items: center;
}
#site-footer .rights .footer-info p {
  margin-bottom: 0;
  color: var(--branco);
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  #site-footer .rights .footer-info p {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
#site-footer .rights .footer-info a {
  color: var(--branco);
  text-decoration: none;
  transition: all 0.3s ease;
}
#site-footer .rights .footer-info a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  #site-footer .rights .col-md-6:first-child {
    text-align: left;
  }
}
@media (min-width: 768px) {
  #site-footer .rights .col-md-6:last-child {
    text-align: right;
  }
}
@media (max-width: 767px) {
  #site-footer .rights {
    background-color: transparent;
    border-top: 1px solid #fff;
  }
}

.site-main {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  padding: 0;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.page-header {
  margin-bottom: 2rem;
}
.page-header .page-title {
  margin-bottom: 0.5rem;
}
.page-header .archive-description {
  color: var(--secondary-color);
  margin-bottom: 0;
}

.posts-grid article {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.posts-grid article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.entry-header .entry-title {
  margin-bottom: 1rem;
}
.entry-header .entry-title a {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.entry-header .entry-title a:hover {
  color: var(--primary-color);
}
.entry-header .entry-meta {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.entry-header .entry-meta span {
  margin-right: 1rem;
}
.entry-header .entry-meta span:last-child {
  margin-right: 0;
}
.entry-header .entry-meta a {
  color: var(--secondary-color);
  text-decoration: none;
}
.entry-header .entry-meta a:hover {
  color: var(--primary-color);
}

.entry-content {
  margin-bottom: 1.5rem;
}
.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-footer .tag-links {
  font-size: 0.875rem;
}
.entry-footer .tag-links a {
  display: inline-block;
  background-color: var(--light-color);
  color: var(--dark-color);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.entry-footer .tag-links a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.pagination-wrapper {
  margin-top: 3rem;
  text-align: center;
}
.pagination-wrapper .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid #dee2e6;
  background-color: #fff;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}
.pagination-wrapper .page-numbers:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.pagination-wrapper .page-numbers.current {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.post-navigation {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
}
.post-navigation a {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.post-navigation a:hover {
  color: var(--primary-color);
}

.home iframe {
  border-radius: 12px;
}
.home .banner {
  min-height: 700px;
  padding: 60px;
  position: relative;
}
.home .banner:after {
  content: url(../img/grafismo3.svg);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.home .banner .descricao {
  width: 508px;
  max-width: 100%;
}
.home .banner .img-banner {
  position: relative;
  padding: 30px;
  z-index: 2;
}
.home .banner .img-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/assets-img-banner.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .home .banner {
    min-height: auto;
    padding: 0 15px;
  }
  .home .banner:after {
    display: none;
  }
  .home .banner .img-banner {
    padding: 15px;
    margin-top: 20px;
  }
}
.home .principios {
  position: relative;
  background: linear-gradient(180deg, rgb(255, 255, 255) 1%, rgb(255, 255, 255) 30%, rgb(246, 184, 39) 30%, rgb(246, 184, 39) 100%);
}
.home .principios:before {
  content: url(../img/grafismo-1.svg);
  position: absolute;
  left: -10px;
  top: -10%;
  z-index: 1;
}
.home .principios p.descricao,
.home .principios .resumo p {
  width: 304px;
  max-width: 100%;
  font-size: 18px;
}
.home .principios iframe {
  width: 925px;
  max-width: 100%;
  height: 500px;
  margin: 20px auto;
}
.home .principios ul {
  list-style: none;
  padding-left: 0;
}
.home .principios ul li {
  font-size: 18px;
  padding-left: 45px;
  margin-bottom: 40px;
  position: relative;
}
.home .principios ul li::before {
  content: "";
  width: 35px;
  height: 35px;
  background-image: url(../img/seta.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .home .principios {
    padding: 30px 15px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 1%, rgb(255, 255, 255) 20%, rgb(246, 184, 39) 20%, rgb(246, 184, 39) 100%);
  }
  .home .principios:before {
    display: none;
  }
  .home .principios h2 {
    font-size: 1.5rem;
  }
  .home .principios p.descricao {
    font-size: 16px;
  }
  .home .principios iframe {
    height: 300px;
  }
  .home .principios ul li {
    font-size: 16px;
    padding-left: 40px;
    margin-bottom: 25px;
  }
  .home .principios ul li::before {
    width: 28px;
    height: 28px;
  }
  .home .principios .resumo {
    padding-left: 0 !important;
  }
  .home .principios .resumo p {
    width: auto;
  }
}
.home .colecoes {
  padding: 60px 0;
  position: relative;
}
.home .colecoes:before {
  content: "";
  background-image: url(../img/grafismo-colecoes.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  right: 0;
}
.home .colecoes h2 {
  color: #0c4da1;
}
.home .colecoes article {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .colecoes article a,
.home .colecoes article a > h3 {
  color: #0c4da1;
}
.home .colecoes article a:hover,
.home .colecoes article a > h3:hover {
  color: green;
}
.home .colecoes article h3 {
  width: 310px;
  background-color: #ebebeb;
  color: #0c4da1;
  padding: 20px 30px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: -30px;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .home .colecoes {
    padding: 30px 15px;
  }
  .home .colecoes:before {
    width: 110px;
    top: -60px;
    background-image: url(../img/grafismo-colecoes-mobile.svg);
  }
  .home .colecoes h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    width: 190px;
  }
  .home .colecoes article {
    padding: 20px 10px;
    margin-bottom: 20px;
  }
  .home .colecoes article h3 {
    width: 100%;
    max-width: 280px;
    font-size: 18px;
    padding: 15px 20px;
  }
}
.home .podcast small.categoria {
  background-color: #009ba4;
  padding: 2px 12px;
  text-transform: uppercase;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 18px;
  display: inline-block;
}
.home .podcast p.descricao {
  font-size: 18px;
  width: 450px;
  max-width: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .home .podcast {
    position: relative;
    padding: 30px 15px;
  }
  .home .podcast:before {
    content: url(../img/grafismo-podcast-home.svg);
    position: absolute;
    top: 0;
    right: 0;
  }
  .home .podcast h2 {
    font-size: 26px;
  }
  .home .podcast p.descricao {
    font-size: 16px;
  }
  .home .podcast small.categoria {
    font-size: 12px;
    padding: 4px 10px;
  }
  .home .podcast .img-desktop {
    display: none;
  }
}

.contato {
  padding: 50px 0 0;
}
.contato::before {
  content: "";
  background-image: url(../img/contact-top-grafism.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  width: 572px;
  height: 114px;
  opacity: 1;
  z-index: -1;
}
.contato .info {
  background-image: url(../img/grafismo-contato.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-bottom: 250px;
}
.contato .wrapper-title {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.contato .wrapper-title h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .contato .wrapper-title h1 {
    font-size: 2rem;
  }
}
.contato .wrapper-title::after {
  content: "";
  position: absolute;
  bottom: 22px; /* alinha a linha com a metade do círculo */
  left: calc(-50vw + 50%); /* alinha ao canto esquerdo da tela */
  width: 65vw; /* 35% menor que o original */
  height: 4px;
  background: var(--laranja);
  z-index: -1;
}
.contato .wrapper-title::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: calc(-50vw + 50% + 65vw - 25px);
  width: 0;
  height: 0;
  border-left: 39px solid transparent;
  border-right: 24px solid transparent;
  border-top: 33px solid var(--laranja);
  z-index: 1;
  transform: rotate(-39deg);
}
@media (max-width: 1799px) {
  .contato .wrapper-title::after {
    width: 75vw;
  }
  .contato .wrapper-title::before {
    left: calc(-50vw + 50% + 75vw - 25px);
  }
}
@media (max-width: 1399px) {
  .contato .wrapper-title::after {
    width: 85vw;
  }
  .contato .wrapper-title::before {
    left: calc(-50vw + 50% + 85vw - 25px);
  }
}
@media (max-width: 1199px) {
  .contato .wrapper-title::after {
    width: 95vw;
  }
  .contato .wrapper-title::before {
    left: calc(-50vw + 50% + 95vw - 25px);
  }
}
@media (max-width: 767px) {
  .contato .wrapper-title {
    margin-bottom: 1rem;
  }
  .contato .wrapper-title::after {
    width: 95vw;
    left: -20px;
  }
  .contato .wrapper-title::before {
    left: calc(-39vw + 92% + 100vw - 25px);
  }
}
.contato p.descricao {
  width: 400px;
  max-width: 100%;
}
.contato .contatos p {
  padding-left: 20px;
  position: relative;
}
.contato .contatos a {
  color: #000;
}
.contato .contatos .mail:before {
  content: "";
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: -10px;
  background-image: url(../img/mail.svg);
}
.contato .contatos .phone:before {
  content: "";
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: -10px;
  background-image: url(../img/call.svg);
}
.contato .contatos .address:before {
  content: "";
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: -10px;
  background-image: url(../img/address.svg);
}
.contato form {
  padding-bottom: 50px;
}
.contato form label {
  margin-bottom: 8px;
  font-weight: 600;
}
.contato form input,
.contato form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #000;
  padding: 12px 20px;
  margin-bottom: 20px;
}
.contato form textarea {
  margin-bottom: 0;
  height: 220px;
  resize: vertical;
}
.contato form small {
  display: block;
  font-size: 16px;
  margin-top: 8px;
}
.contato form button.btn {
  margin-top: 30px;
  background-color: var(--roxo);
  border-color: var(--roxo);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  width: auto;
}
@media screen and (max-width: 768px) {
  .contato {
    background-image: none;
    padding: 0;
  }
  .contato::before {
    display: none;
  }
  .contato .info {
    background-image: none;
    padding-bottom: 40px;
  }
  .contato h1 {
    font-size: 2rem;
  }
  .contato h1:after {
    width: 200px;
    height: 20px;
    bottom: -15px;
    right: -30px;
  }
  .contato p.descricao {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .contato .contatos {
    margin-bottom: 40px;
  }
  .contato .contatos p {
    font-size: 14px;
    padding-left: 35px;
    margin-bottom: 20px;
    word-break: break-word;
  }
  .contato .contatos p:last-child {
    margin-bottom: 0;
  }
  .contato .contatos a {
    text-decoration: none;
  }
  .contato .contatos a:hover {
    text-decoration: underline;
  }
  .contato .contatos .mail:before,
  .contato .contatos .phone:before,
  .contato .contatos .address:before {
    width: 24px;
    height: 24px;
    left: 0;
    background-size: contain;
  }
  .contato form {
    padding-bottom: 30px;
  }
  .contato form label {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .contato form input,
  .contato form textarea {
    font-size: 14px;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
  }
  .contato form textarea {
    height: 180px;
  }
  .contato form small {
    font-size: 11px;
    margin-top: 6px;
  }
  .contato form button.btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 12px;
  }
}

.historia {
  padding: 50px 0 0;
}
.historia .wrapper-title {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.historia .wrapper-title h1 {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  font-weight: 900;
  color: #333333;
}
.historia .wrapper-title::after {
  content: "";
  position: absolute;
  bottom: 22px; /* alinha a linha com a metade do círculo */
  left: calc(-50vw + 50%); /* alinha ao canto esquerdo da tela */
  width: 65vw; /* 35% menor que o original */
  height: 4px;
  background: var(--vermelho);
  z-index: -1;
}
.historia .wrapper-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(-50vw + 50% + 65vw - 25px); /* no final da linha de 65vw */
  width: 50px;
  height: 50px;
  background: #fff;
  border: 12px solid var(--vermelho);
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 1799px) {
  .historia .wrapper-title::after {
    width: 75vw;
  }
  .historia .wrapper-title::before {
    left: calc(-50vw + 50% + 75vw - 25px);
  }
}
@media (max-width: 1399px) {
  .historia .wrapper-title::after {
    width: 85vw;
  }
  .historia .wrapper-title::before {
    left: calc(-50vw + 50% + 85vw - 25px);
  }
}
@media (max-width: 1199px) {
  .historia .wrapper-title::after {
    width: 95vw;
  }
  .historia .wrapper-title::before {
    left: calc(-50vw + 50% + 95vw - 25px);
  }
}
@media (max-width: 767px) {
  .historia .wrapper-title::after {
    width: 100vw;
  }
  .historia .wrapper-title::before {
    left: calc(-50vw + 50% + 100vw - 25px);
  }
}
.historia .text {
  width: 550px;
  max-width: 100%;
  padding: 50px 0;
}
.historia .grafismo-1 {
  position: relative;
}
.historia .grafismo-1:before {
  content: "";
  background-image: url(../img/grafismo-historia.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50px;
  right: 0;
  width: 40%;
  height: 100%;
}
.historia .grafismo-2 {
  position: relative;
}
.historia .grafismo-2:before {
  content: "";
  background-image: url(../img/grafismo-historia-2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0px;
  left: 0;
}
.historia .img-mobile {
  display: none;
  width: 100%;
}
@media (max-width: 767px) {
  .historia {
    padding: 0;
  }
  .historia .img-mobile {
    display: block;
  }
  .historia .grafismo-1:before, .historia .grafismo-2:before {
    display: none;
  }
  .historia .wrapper-title {
    margin-bottom: 0;
  }
  .historia .wrapper-title h1 {
    font-size: 2rem;
  }
  .historia .wrapper-title h1:after {
    width: 200px;
    height: 20px;
    bottom: -15px;
    right: -30px;
  }
  .historia .text {
    width: auto;
  }
}

.integrantes-historia article {
  margin-bottom: 49px;
  padding-right: 30px;
}
.integrantes-historia article h3 {
  color: #0070aa;
  font-weight: bold;
  font-size: 21px;
}
.integrantes-historia article h4 {
  font-size: 14px;
  text-transform: uppercase;
}
.integrantes-historia article p {
  font-size: 16px;
}

.formacao .breadcrumbs {
  margin-bottom: 0;
}
.formacao .banner {
  padding: 50px 0;
  background-image: url(../img/grafismo3-formacao.svg);
  background-position: 100% 85%;
  background-repeat: no-repeat;
  background-size: 40%;
}
.formacao .banner .wrapper-title {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.formacao .banner .wrapper-title h1 {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  font-weight: 900;
  color: #333333;
}
.formacao .banner .wrapper-title::after {
  content: "";
  position: absolute;
  bottom: 22px; /* alinha a linha com a metade do círculo */
  left: calc(-50vw + 50%); /* alinha ao canto esquerdo da tela */
  width: 65vw; /* 35% menor que o original */
  height: 4px;
  background: var(--verde-claro);
  z-index: -1;
}
.formacao .banner .wrapper-title::before {
  content: "";
  position: absolute;
  bottom: 22px; /* alinha com a linha */
  left: calc(-50vw + 50% + 65vw - 25px); /* no final da linha de 65vw */
  width: 50px;
  height: 25px;
  background: var(--verde-claro);
  border-radius: 25px 25px 0 0; /* meia lua */
  z-index: 1;
}
@media (max-width: 1799px) {
  .formacao .banner .wrapper-title::after {
    width: 75vw;
  }
  .formacao .banner .wrapper-title::before {
    left: calc(-50vw + 50% + 75vw - 25px);
  }
}
@media (max-width: 1399px) {
  .formacao .banner .wrapper-title::after {
    width: 85vw;
  }
  .formacao .banner .wrapper-title::before {
    left: calc(-50vw + 50% + 85vw - 25px);
  }
}
@media (max-width: 1199px) {
  .formacao .banner .wrapper-title::after {
    width: 95vw;
  }
  .formacao .banner .wrapper-title::before {
    left: calc(-50vw + 50% + 95vw - 25px);
  }
}
@media (max-width: 767px) {
  .formacao .banner .wrapper-title {
    background-image: none;
  }
  .formacao .banner .wrapper-title::after {
    width: 100vw;
  }
  .formacao .banner .wrapper-title::before {
    left: calc(-50vw + 50% + 100vw - 25px);
  }
}
.formacao .banner .descricao {
  width: 600px;
  max-width: 100%;
  font-size: 18px;
}
.formacao .banner .descricao .img-mobile {
  display: none;
  width: 100%;
}
@media (max-width: 767px) {
  .formacao .banner .descricao {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 15px;
  }
}
.formacao .banner .descricao .creditos {
  font-size: 14px;
  color: #666666;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .formacao .banner {
    padding: 30px 0;
    background-image: none;
  }
  .formacao .banner .descricao .img-mobile {
    display: block;
  }
  .formacao .banner .img-desktop {
    display: none;
  }
  .formacao .banner .wrapper-title {
    padding-bottom: 2rem;
    margin-bottom: 0;
  }
  .formacao .banner .wrapper-title h1 {
    font-size: 2rem;
    padding: 0 15px;
  }
  .formacao .banner .wrapper-title::after {
    bottom: 15px;
  }
  .formacao .banner .wrapper-title::before {
    width: 35px;
    height: 17.5px;
    left: calc(-50vw + 50% + 100vw - 17.5px);
    bottom: 15px;
    border-radius: 17.5px 17.5px 0 0;
  }
  .formacao .banner .row .col-md-6 {
    margin-bottom: 20px;
  }
  .formacao .banner .row .col-md-6.info {
    order: 2;
  }
  .formacao .banner .row .col-md-6:not(.info) {
    order: 1;
  }
  .formacao .banner .row .px-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.formacao .modulos {
  background: linear-gradient(0deg, rgb(255, 255, 255) 80%, rgb(246, 184, 39) 10%);
  padding: 80px 0 100px;
  position: relative;
}
.formacao .modulos * {
  z-index: 1;
}
.formacao .modulos:before {
  content: "";
  background-image: url(../img/grafismo-modulos.svg);
  width: 70px;
  height: 1000px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  position: absolute;
  top: 10%;
  left: 0;
}
.formacao .modulos:after {
  content: "";
  background-image: url(../img/grafismo-modulos-2.svg);
  width: 200px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  top: 20%;
  right: 0;
}
.formacao .modulos h2,
.formacao .modulos h2 p {
  width: 670px;
  max-width: 100%;
  font-size: 32px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 15px;
}
.formacao .modulos h2 strong,
.formacao .modulos h2 p strong {
  font-weight: bold;
}
.formacao .modulos h3 {
  color: #7a086a;
  font-weight: bold;
  font-size: 48px;
}
.formacao .modulos iframe {
  width: 925px;
  max-width: 100%;
  height: 500px;
  margin: 20px auto;
}
.formacao .modulos article {
  width: 452px;
  max-width: 100%;
  padding: 32px 25px;
  background-color: #ebebeb;
  border-radius: 16px;
  position: relative;
  margin-bottom: 45px;
}
.formacao .modulos article h4 {
  position: absolute;
  top: -20px;
  left: 0;
  background-color: #ff9437;
  color: #1c1c1c;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 8px;
}
.formacao .modulos article p {
  color: #1c1c1c;
  font-size: 18px;
}
@media (max-width: 767px) {
  .formacao .modulos {
    padding: 0;
    background: none;
  }
  .formacao .modulos:before, .formacao .modulos:after {
    display: none;
  }
  .formacao .modulos .container {
    padding: 0;
  }
  .formacao .modulos .row:first-child {
    background-color: #f6b827;
    padding: 30px 20px;
    margin: 0;
  }
  .formacao .modulos h2 {
    font-size: 26px;
    margin-bottom: 20px;
    padding: 0;
    text-align: left;
    color: #1c1c1c;
    line-height: 1.5;
  }
  .formacao .modulos h2 strong {
    font-weight: bold;
  }
  .formacao .modulos h3 {
    font-size: 28px;
    padding: 30px 15px 0;
  }
  .formacao .modulos iframe {
    height: 200px;
    margin: 0;
    border-radius: 0;
  }
  .formacao .modulos article {
    width: 100%;
    padding: 30px;
    margin-bottom: 35px;
  }
  .formacao .modulos article h4 {
    font-size: 18px;
    top: -15px;
  }
  .formacao .modulos article p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .formacao .modulos .row:last-child {
    padding: 30px 15px;
  }
}
.formacao .curso {
  background-color: #ebebeb;
  padding: 70px 0;
  position: relative;
}
.formacao .curso:before {
  content: "";
  background-image: url(../img/grafismo-curso.svg);
  width: 350px;
  height: 350px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  top: -220px;
  right: 0;
}
.formacao .curso:after {
  content: "";
  background-image: url(../img/grafismo-curso-2.svg);
  width: 500px;
  max-width: 100%;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  position: absolute;
  bottom: -30px;
  left: 0;
}
.formacao .curso h2 {
  color: #016363;
}
.formacao .curso .link {
  color: #7a086a;
  text-decoration: underline;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 8px;
  border-radius: 30px;
}
.formacao .curso .link:hover {
  color: #fff;
  background-color: #7a086a;
}
.formacao .curso .link:hover img {
  filter: invert(1) brightness(5);
}
.formacao .curso .link img {
  margin-right: 10px;
}
.formacao .curso ol {
  width: 450px;
  max-width: 100%;
  list-style: none;
  counter-reset: my-awesome-counter;
  padding-left: 0;
}
.formacao .curso ol li {
  counter-increment: my-awesome-counter;
  margin: 0 0 30px;
  position: relative;
  padding-left: 50px;
  min-height: 50px;
}
.formacao .curso ol li::before {
  content: counter(my-awesome-counter);
  background: #f6b827;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-block;
  line-height: 2rem;
  color: #000;
  text-align: center;
  margin-right: 0.5rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .formacao .curso {
    padding: 40px 15px;
  }
  .formacao .curso:before {
    width: 200px;
    height: 200px;
    top: -120px;
    right: 0px;
  }
  .formacao .curso:after {
    display: none;
  }
  .formacao .curso h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .formacao .curso .link {
    font-size: 16px;
    display: inline-block;
    margin: 20px 0;
  }
  .formacao .curso ol {
    width: 100%;
  }
  .formacao .curso ol li {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
    padding-left: 45px;
  }
  .formacao .curso ol li::before {
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 16px;
  }
}
.formacao .principios {
  position: relative;
  padding: 75px 0;
}
.formacao .principios:before {
  content: "";
  background-image: url(../img/grafismo-colecao-1.svg);
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  bottom: 0;
  right: 0;
}
.formacao .principios h2 {
  color: #0c4da1;
}
.formacao .principios .link {
  color: #7a086a;
  text-decoration: underline;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px;
  border-radius: 30px;
}
.formacao .principios .link:hover {
  color: #fff;
  background-color: #7a086a;
}
.formacao .principios .link:hover img {
  filter: invert(1) brightness(5);
}
.formacao .principios .link img {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .formacao .principios {
    padding: 40px 15px;
  }
  .formacao .principios:before {
    width: 80px;
    height: 80px;
  }
  .formacao .principios h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .formacao .principios .link {
    font-size: 16px;
    display: inline-block;
    margin: 20px 0;
  }
  .formacao .principios .row .col-md-6 {
    margin-bottom: 20px;
  }
  .formacao .principios .row .col-md-6 .py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    padding-right: 0 !important;
    font-size: 16px;
    line-height: 1.6;
  }
  .formacao .principios .row .col-md-6 img {
    max-width: 80%;
    height: auto;
  }
}

.sidebar .widget {
  background-color: var(--light-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
}
.sidebar .widget .widget-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--dark-color);
}
.sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .widget ul li {
  margin-bottom: 0.75rem;
}
.sidebar .widget ul li:last-child {
  margin-bottom: 0;
}
.sidebar .widget ul li a {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar .widget ul li a:hover {
  color: var(--primary-color);
}
.sidebar .search-widget .search-form {
  display: flex;
  gap: 0.5rem;
}
.sidebar .search-widget .search-form .search-field {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius);
}
.sidebar .search-widget .search-form .search-field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color), 0.25);
}
.sidebar .search-widget .search-form .search-submit {
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .search-widget .search-form .search-submit:hover {
  background-color: color-mix(in srgb, var(--primary-color) 90%, black);
}

.search-form .search-field {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius);
  font-size: 1rem;
}
.search-form .search-field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color), 0.25);
}
.search-form .search-submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form .search-submit:hover {
  background-color: color-mix(in srgb, var(--primary-color) 90%, black);
}

.error-404 {
  text-align: center;
  padding: 3rem 0;
}
.error-404 .page-title {
  font-size: 6rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.error-404 .page-subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}
.comments-area .comments-title {
  margin-bottom: 2rem;
}
.comments-area .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comments-area .comment-list .comment {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}
.comments-area .comment-list .comment .comment-meta {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.comments-area .comment-list .comment .comment-meta .comment-author {
  font-weight: 500;
  color: var(--dark-color);
}
.comments-area .comment-list .comment .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-respond {
  margin-top: 2rem;
}
.comments-area .comment-respond .comment-form .form-group {
  margin-bottom: 1rem;
}
.comments-area .comment-respond .comment-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.comments-area .comment-respond .comment-form .form-group input[type=text],
.comments-area .comment-respond .comment-form .form-group input[type=email],
.comments-area .comment-respond .comment-form .form-group input[type=url],
.comments-area .comment-respond .comment-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius);
}
.comments-area .comment-respond .comment-form .form-group input[type=text]:focus,
.comments-area .comment-respond .comment-form .form-group input[type=email]:focus,
.comments-area .comment-respond .comment-form .form-group input[type=url]:focus,
.comments-area .comment-respond .comment-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color), 0.25);
}
.comments-area .comment-respond .comment-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.breadcrumbs {
  margin-bottom: 1rem;
  padding: 1rem 0;
  background-color: transparent;
  width: 80%;
}
.breadcrumbs .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.breadcrumbs .breadcrumb .breadcrumb-item {
  color: #6c757d;
}
.breadcrumbs .breadcrumb .breadcrumb-item a {
  color: #495057;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: #007bff;
  text-decoration: underline;
}
.breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: #6c757d;
  font-weight: 500;
  padding-left: 0;
}
.breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  color: #6c757d;
}
.breadcrumbs .breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: "\f285";
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
  color: #6c757d;
  padding-left: 4px;
  top: 1px;
  position: relative;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

@media (max-width: 1450px) {
  .breadcrumbs {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
  }
  .breadcrumbs .breadcrumb {
    font-size: 0.8125rem;
  }
}
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-muted {
  color: var(--secondary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-danger {
  color: var(--danger-color) !important;
}

.text-warning {
  color: var(--warning-color) !important;
}

.text-info {
  color: var(--info-color) !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.w-50 {
  width: 50% !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
}
.page-404 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  width: 100%;
}
.page-404::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 154px;
  height: 339px;
  background: url(../img/404_grafismo_left.svg) no-repeat center center;
  background-size: contain;
  z-index: -1;
}
.page-404::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 339px;
  background: url(../img/404_grafismo_right.svg) no-repeat center center;
  background-size: contain;
  background-position: bottom right;
  z-index: -1;
}
.page-404 h1 {
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  line-height: 130%;
  letter-spacing: 0%;
}
.page-404 h2 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}
.page-404 .content {
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
}
.page-404 .link {
  color: var(--roxo);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: underline;
  padding: 8px 16px;
  border-radius: 24px;
}
.page-404 .link:hover {
  color: var(--branco);
  background-color: var(--roxo);
}
.page-404 .link:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1100px) {
  .page-404::after {
    width: 75%;
    height: 255px;
    background-size: contain;
  }
}
@media (max-width: 768px) {
  .page-404 {
    padding: 20px;
  }
  .page-404::before {
    width: 80px;
    height: 180px;
    background-size: contain;
    top: 30px;
    left: 0px;
  }
  .page-404::after {
    width: 215px;
    height: 180px;
    top: 0;
    background-size: contain;
    background-image: url(../img/grafismo-404-mobile.svg);
  }
  .page-404 h1 {
    font-size: 40px;
    line-height: 120%;
    text-align: center;
  }
  .page-404 h2 {
    font-size: 20px;
    line-height: 120%;
    margin-top: 20px;
    font-weight: normal;
  }
}
@media (max-width: 480px) {
  .page-404::before {
    width: 60px;
    height: 140px;
  }
  .page-404::after {
    width: 100px;
    height: 140px;
  }
  .page-404 h1 {
    font-size: 32px;
  }
  .page-404 h2 {
    font-size: 18px;
  }
}

#conheca-colecao {
  position: relative;
  overflow: visible;
}
#conheca-colecao .parceiros {
  display: flex;
  flex-direction: column;
  height: 160px;
  justify-content: flex-start;
}
#conheca-colecao .parceiros p {
  margin-left: 12px;
}
#conheca-colecao .creditos {
  font-size: 14px;
  color: #666666;
  margin-top: 8px;
}
#conheca-colecao .wrapper-title {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
#conheca-colecao .wrapper-title h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #333333;
  max-width: 710px;
}
#conheca-colecao .wrapper-title::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: calc(-50vw + 50%);
  width: 65vw;
  height: 4px;
  background: #00aeef;
  z-index: -1;
}
#conheca-colecao .wrapper-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(-50vw + 50% + 65vw - 25px);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 12px solid #00aeef;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 1799px) {
  #conheca-colecao .wrapper-title::after {
    width: 75vw;
  }
  #conheca-colecao .wrapper-title::before {
    left: calc(-50vw + 50% + 75vw - 25px);
  }
}
@media (max-width: 1399px) {
  #conheca-colecao .wrapper-title::after {
    width: 85vw;
  }
  #conheca-colecao .wrapper-title::before {
    left: calc(-50vw + 50% + 85vw - 25px);
  }
}
@media (max-width: 1199px) {
  #conheca-colecao .wrapper-title::after {
    width: 95vw;
  }
  #conheca-colecao .wrapper-title::before {
    left: calc(-50vw + 50% + 95vw - 25px);
  }
}
@media (max-width: 768px) {
  #conheca-colecao .wrapper-title {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  #conheca-colecao .wrapper-title h1 {
    font-size: 2rem;
  }
  #conheca-colecao .wrapper-title::after {
    width: 100vw;
    height: 3px;
  }
  #conheca-colecao .wrapper-title::before {
    left: calc(-50vw + 50% + 100vw - 20px);
    width: 40px;
    height: 40px;
    border-width: 8px;
  }
}
#conheca-colecao .principios-pedagogicos {
  position: relative;
  z-index: 1;
  height: 1260px;
}
#conheca-colecao .principios-pedagogicos::before {
  content: "";
  position: absolute;
  top: -32px;
  right: 0;
  background: url(../img/principios-pedagogicos-grafismo.svg) no-repeat center center;
  background-size: cover;
  width: 470px;
  height: 104px;
  z-index: 2;
}
#conheca-colecao .principios-pedagogicos h2 {
  font-weight: 900;
  font-size: 3rem;
}
#conheca-colecao .principios-pedagogicos h3 {
  color: var(--roxo);
  font-size: 2rem;
  font-weight: 900;
}
#conheca-colecao .principios-pedagogicos .container-orange {
  background-color: var(--laranja);
  padding: 90px 90px 300px 90px;
  position: relative;
  z-index: 1;
}
#conheca-colecao .principios-pedagogicos .container-gray {
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 16px;
  margin-bottom: 4rem;
  position: relative;
  top: -220px;
  z-index: 9;
}
#conheca-colecao .principios-pedagogicos .container-gray .content {
  position: relative;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 10;
  background-color: var(--cinza-claro);
  width: 100%;
  padding: 70px;
  border-radius: 16px;
}
#conheca-colecao .principios-pedagogicos .container-gray::before {
  content: "";
  position: absolute;
  top: 90px;
  left: -40px;
  background: url(../img/collections_left.svg) no-repeat center center;
  background-size: cover;
  width: 104px;
  height: 780px;
  z-index: -1;
}
#conheca-colecao .principios-pedagogicos .container-gray::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  background: url(../img/collections_right.svg) no-repeat center center;
  background-size: contain;
  width: 150px;
  height: 300px;
  z-index: -1;
}
#conheca-colecao .principios-pedagogicos .nav-pills .nav-link {
  font-weight: 400;
  border: 3px solid transparent;
  background: var(--branco);
  color: #0c4da1;
}
#conheca-colecao .principios-pedagogicos .nav-pills .nav-link:hover {
  background-color: var(--branco);
  color: var(--azul);
  border-color: var(--azul);
}
@media screen and (max-width: 767px) {
  #conheca-colecao .principios-pedagogicos .nav-pills .nav-link {
    width: 100%;
    border-radius: 20px;
  }
}
#conheca-colecao .principios-pedagogicos .nav-pills .nav-link.active,
#conheca-colecao .principios-pedagogicos .nav-pills .show > .nav-link {
  background-color: var(--azul);
  color: var(--branco);
  font-weight: bold;
}
#conheca-colecao .principios-pedagogicos .nav-pills .nav-link.active:hover,
#conheca-colecao .principios-pedagogicos .nav-pills .show > .nav-link:hover {
  border: 3px solid var(--azul);
  background-color: var(--branco);
  color: var(--azul);
}
#conheca-colecao .principios-pedagogicos .btn-primary {
  border-color: var(--roxo);
  border-radius: 12px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #conheca-colecao .principios-pedagogicos {
    height: auto;
  }
  #conheca-colecao .principios-pedagogicos::before {
    width: 200px;
    height: 50px;
    top: -20px;
    right: 0;
    background-size: contain;
  }
  #conheca-colecao .principios-pedagogicos h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  #conheca-colecao .principios-pedagogicos h3 {
    font-size: 1.5rem;
  }
  #conheca-colecao .principios-pedagogicos .container-orange {
    padding: 40px 20px 200px 20px;
  }
  #conheca-colecao .principios-pedagogicos .container-gray {
    top: -150px;
    margin-bottom: -110px;
    position: relative;
  }
  #conheca-colecao .principios-pedagogicos .container-gray .content {
    padding: 30px 20px;
    font-size: 14px;
    position: relative;
  }
  #conheca-colecao .principios-pedagogicos .container-gray::before {
    display: none;
  }
  #conheca-colecao .principios-pedagogicos .container-gray::after {
    content: "";
    position: relative;
    background: url(../img/conheca-colecao-mobile.svg);
    background-size: contain;
    width: 104%;
    height: 73px;
    z-index: -1;
    display: block;
    top: -26px;
    left: -11px;
  }
  #conheca-colecao .principios-pedagogicos .nav-pills {
    flex-direction: column;
    gap: 10px;
  }
  #conheca-colecao .principios-pedagogicos .nav-pills .nav-link {
    font-size: 14px;
    padding: 12px 20px;
    text-align: center;
    border-radius: 20px;
  }
  #conheca-colecao .principios-pedagogicos .btn-primary {
    width: 100%;
    font-size: 14px;
    padding: 12px 20px;
  }
  #conheca-colecao .principios-pedagogicos ul li {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
#conheca-colecao .casa-de-letras .logos img {
  width: 260px;
  max-width: 100%;
}

#colecao-single .banner {
  background-image: url(../img/grafismo-colecao-2.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 40%;
}
#colecao-single .banner .section-title {
  margin-bottom: 50px;
  max-width: 680px;
}
#colecao-single .banner .descricao {
  width: 640px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #colecao-single .banner {
    background: none;
  }
  #colecao-single .banner .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  #colecao-single .banner .descricao {
    font-size: 14px;
  }
}
#colecao-single .materiais h5 {
  color: var(--azul);
}
@media (max-width: 768px) {
  #colecao-single .materiais h5 {
    font-size: 14px;
  }
}
#colecao-single .materiais .tabs-materiais h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs {
  background-color: #ebebeb;
  border: 1px solid var(--azul);
  border-radius: 30px;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs .nav-pills .nav-link:-moz-any-link {
  color: #0c4da1;
  font-size: 22px;
  border-radius: 0;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs .nav-pills .nav-link:any-link {
  color: #0c4da1;
  font-size: 22px;
  border-radius: 0;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs li button {
  padding: 16px 65px;
  color: #0c4da1;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs li button .icon-white {
  display: none;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs li button .icon-blue {
  display: block;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs li button:hover {
  text-decoration: underline;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs li:first-child button {
  border-radius: 0;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs li:last-child button {
  border-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs .nav-link.active {
  background-color: #0c4da1;
  color: #fff;
  font-weight: bold;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs .nav-link.active .icon-white {
  display: block;
}
#colecao-single .materiais .tabs-materiais #categoriasTabs .nav-link.active .icon-blue {
  display: none;
}
@media screen and (max-width: 768px) {
  #colecao-single .materiais .tabs-materiais h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  #colecao-single .materiais .tabs-materiais h5 {
    font-size: 14px;
  }
  #colecao-single .materiais .tabs-materiais #categoriasTabs {
    display: flex;
  }
  #colecao-single .materiais .tabs-materiais #categoriasTabs li button {
    padding: 12px 20px;
    font-size: 12px;
    flex-direction: column;
  }
}
#colecao-single .card-img-top {
  border: 3px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}
#colecao-single .card-img-top:hover {
  border: 3px solid var(--azul);
}

#material-single .material-header {
  margin-bottom: 40px;
}
#material-single .material-header .material-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--preto);
  margin-bottom: 0;
}
#material-single .material-content {
  margin-bottom: 40px;
  background-image: url(../img/grafismo-volume.svg);
  background-position: top right;
  background-repeat: no-repeat;
}
#material-single .material-content .wrap-intro {
  background-color: #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 100%;
  padding: 80px;
  margin-left: 200px;
  padding-left: 240px;
  border-radius: 16px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
#material-single .material-content .material-cover {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 2;
}
#material-single .material-content .material-cover img {
  width: 380px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#material-single .material-content .material-description {
  width: 400px;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--preto);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#material-single .material-content .material-description p {
  margin-bottom: 15px;
}
#material-single .material-content .material-downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
#material-single .material-content .material-downloads ul li {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #material-single .material-content .material-downloads ul li {
    width: 100%;
  }
}
#material-single .material-content .material-downloads ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 305px;
}
#material-single .material-content .material-downloads ul a.btn-primary {
  background-color: #fff;
  color: var(--roxo);
  border: 2px solid var(--roxo);
  border-radius: 8px;
}
#material-single .material-content .material-downloads ul a.btn-primary:hover {
  background-color: var(--roxo);
  border-color: var(--roxo);
  color: var(--branco);
}
#material-single .material-content .material-downloads ul a.btn-primary:hover img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  #material-single .material-content {
    background-image: none;
    margin-bottom: 40px;
  }
  #material-single .material-content .wrap-intro {
    flex-direction: column;
    padding: 20px;
    padding-top: 220px;
    gap: 20px;
    margin-left: 0;
    margin-top: 80px;
  }
  #material-single .material-content .material-cover {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
  }
  #material-single .material-content .material-cover img {
    width: 100%;
    max-width: 300px;
  }
  #material-single .material-content .material-description {
    width: 100%;
    font-size: 14px;
  }
  #material-single .material-content .material-downloads {
    width: 100%;
  }
  #material-single .material-content .material-downloads ul {
    width: 100%;
  }
  #material-single .material-content .material-downloads ul a {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 10px 20px;
  }
}
#material-single .componentes-curriculares {
  background-color: var(--branco);
  padding: 60px 0;
  margin-top: 60px;
}
#material-single .componentes-curriculares .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cinza);
  margin-bottom: 1.5rem;
  background-color: var(--laranja);
  padding: 0.2em 0.5em;
  padding-left: 0;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  max-width: 100%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #material-single .componentes-curriculares .section-title {
    font-size: 1.7rem;
    margin-left: -20px;
    padding-left: 20px;
    line-height: 60px;
  }
}
#material-single .componentes-curriculares .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-inline: 12px;
}
#material-single .componentes-curriculares .componente-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
#material-single .componentes-curriculares .componente-item .componente-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
}
#material-single .componentes-curriculares .componente-item .componente-icon::before {
  content: "";
  width: 54px;
  height: 54px;
  background: url(../img/componente-icone.svg) no-repeat center center;
  background-size: contain;
  display: block;
}
#material-single .componentes-curriculares .componente-item .componente-content {
  flex: 1;
}
#material-single .componentes-curriculares .componente-item .componente-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--preto);
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.3;
}
#material-single .componentes-curriculares .componente-item .componente-description {
  font-size: 1rem;
  color: var(--preto);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 991px) {
  #material-single .componentes-curriculares .componente-item {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  #material-single .componentes-curriculares {
    padding: 40px 0;
  }
  #material-single .componentes-curriculares .componente-item {
    gap: 15px;
  }
  #material-single .componentes-curriculares .componente-item .componente-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  #material-single .componentes-curriculares .componente-item .componente-icon::before {
    width: 40px;
    height: 40px;
  }
  #material-single .componentes-curriculares .componente-item .componente-title {
    font-size: 1.2rem;
  }
  #material-single .componentes-curriculares .componente-item .componente-description {
    font-size: 14px;
  }
}
#material-single .principios-pedagogicos {
  background-color: var(--cinza-claro);
  padding: 60px 0;
  margin-top: 60px;
  position: relative;
}
#material-single .principios-pedagogicos:after {
  content: "";
  width: 297px;
  height: 950px;
  background-image: url(../img/grafismo-principios.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  bottom: -150px;
  right: 0;
}
#material-single .principios-pedagogicos .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cinza);
  margin-bottom: 1.5rem;
  background-color: var(--laranja);
  padding: 0.2em 0.5em;
  padding-left: 0;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  max-width: 100%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #material-single .principios-pedagogicos .section-title {
    font-size: 1.7rem;
    margin-left: -20px;
    padding-left: 20px;
    line-height: 60px;
  }
}
#material-single .principios-pedagogicos .principios-content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--preto);
  margin-bottom: 40px;
  width: 730px;
  max-width: 100%;
}
#material-single .principios-pedagogicos .principios-content p {
  margin-bottom: 15px;
}
#material-single .principios-pedagogicos .voltar-colecao {
  margin-top: 40px;
}
#material-single .principios-pedagogicos .voltar-colecao .btn-link {
  color: var(--roxo);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
#material-single .principios-pedagogicos .voltar-colecao .btn-link:hover {
  color: var(--branco);
  background-color: var(--roxo);
  text-decoration: underline;
  border-radius: 24px;
}
@media (max-width: 768px) {
  #material-single .principios-pedagogicos {
    padding: 25% 0;
  }
  #material-single .principios-pedagogicos:after {
    background-image: url(../img/grafismo-principios-mb.svg);
    width: 100%;
    height: 242px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    position: absolute;
    top: -150px;
    right: 0;
  }
  #material-single .principios-pedagogicos .card-title {
    font-size: 14px;
  }
  #material-single .principios-pedagogicos .principios-content {
    font-size: 14px;
  }
  #material-single .principios-pedagogicos .voltar-colecao .btn-link {
    font-size: 1rem;
    color: var(--roxo);
  }
}
#material-single .modal .modal-dialog {
  height: 90vh;
}
#material-single .modal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
}
#material-single .modal .modal-header {
  border-bottom: none;
  padding: 20px 30px 10px;
  position: relative;
}
#material-single .modal .modal-header .close:hover {
  color: var(--roxo);
  border-color: var(--roxo);
}
#material-single .modal .modal-header .btn-close {
  font-size: 0.6rem;
  border: 1px solid;
  border-radius: 40px;
  font-weight: bold;
  padding: 5px;
}
#material-single .modal .modal-header .btn-close:hover {
  color: var(--roxo);
  border-color: var(--roxo);
}
#material-single .modal .modal-body {
  padding: 20px 40px 40px;
  overflow-y: auto;
}
#material-single .modal .modal-body h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--preto);
  margin-bottom: 10px;
}
#material-single .modal .modal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--roxo);
  margin-bottom: 30px;
}
#material-single .modal .modal-body .sumario-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
#material-single .modal .modal-body .sumario-item:last-child {
  border-bottom: none;
}
#material-single .modal .modal-body .sumario-item .sumario-titulo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--azul);
  margin-bottom: 20px;
  line-height: 1.4;
}
#material-single .modal .modal-body .sumario-item > div {
  margin-bottom: 20px;
  padding-left: 20px;
}
#material-single .modal .modal-body .sumario-item > div:last-child {
  margin-bottom: 0;
}
#material-single .modal .modal-body .sumario-item > div h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 8px;
  line-height: 1.4;
}
#material-single .modal .modal-body .sumario-item > div p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #material-single .modal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  #material-single .modal .modal-content {
    border-radius: 12px;
  }
  #material-single .modal .modal-header {
    padding: 15px 20px 10px;
  }
  #material-single .modal .modal-header .btn-close {
    top: 10px;
    right: 10px;
  }
  #material-single .modal .modal-body {
    padding: 15px 20px 30px;
    max-height: calc(100vh - 100px);
  }
  #material-single .modal .modal-body h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }
  #material-single .modal .modal-body h2 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  #material-single .modal .modal-body .sumario-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  #material-single .modal .modal-body .sumario-item .sumario-titulo {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  #material-single .modal .modal-body .sumario-item > div {
    padding-left: 10px;
    margin-bottom: 15px;
  }
  #material-single .modal .modal-body .sumario-item > div h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  #material-single .modal .modal-body .sumario-item > div p {
    font-size: 0.875rem;
  }
}
#material-single #flipbook-container-aluno,
#material-single #flipbook-container-professor {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1050;
  height: 100%;
}
#material-single #flipbook-container-aluno .flipbook-wrapper,
#material-single #flipbook-container-professor .flipbook-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
#material-single #flipbook-container-aluno #flipbook-aluno,
#material-single #flipbook-container-aluno #flipbook-professor,
#material-single #flipbook-container-professor #flipbook-aluno,
#material-single #flipbook-container-professor #flipbook-professor {
  width: 100% !important;
  height: 100% !important;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#material-single #flipbook-container-aluno #flipbook-aluno .page,
#material-single #flipbook-container-aluno #flipbook-professor .page,
#material-single #flipbook-container-professor #flipbook-aluno .page,
#material-single #flipbook-container-professor #flipbook-professor .page {
  width: 100%;
  height: 100%;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#material-single #flipbook-container-aluno #flipbook-aluno .page canvas,
#material-single #flipbook-container-aluno #flipbook-professor .page canvas,
#material-single #flipbook-container-professor #flipbook-aluno .page canvas,
#material-single #flipbook-container-professor #flipbook-professor .page canvas {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto;
  height: auto;
  border-radius: 4px;
}
#material-single #flipbook-container-aluno #flipbook-aluno .turn-page-number,
#material-single #flipbook-container-aluno #flipbook-professor .turn-page-number,
#material-single #flipbook-container-professor #flipbook-aluno .turn-page-number,
#material-single #flipbook-container-professor #flipbook-professor .turn-page-number {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  z-index: 1000;
}
#material-single #flipbook-container-aluno .flipbook-controls,
#material-single #flipbook-container-professor .flipbook-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#material-single #flipbook-container-aluno .flipbook-controls button,
#material-single #flipbook-container-professor .flipbook-controls button {
  background-color: var(--roxo);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
#material-single #flipbook-container-aluno .flipbook-controls button:disabled,
#material-single #flipbook-container-professor .flipbook-controls button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}
#material-single #flipbook-container-aluno .flipbook-controls .page-info,
#material-single #flipbook-container-professor .flipbook-controls .page-info {
  font-size: 14px;
  font-weight: 600;
  color: var(--roxo);
  min-width: 80px;
  text-align: center;
}
#material-single #flipbook-container-aluno .loading,
#material-single #flipbook-container-professor .loading {
  text-align: center;
  padding: 50px;
  color: var(--roxo);
  font-weight: 600;
}
#material-single #flipbook-container-aluno .error,
#material-single #flipbook-container-professor .error {
  text-align: center;
  padding: 50px;
  color: #dc3545;
}
#material-single #flipbook-container-aluno .error p,
#material-single #flipbook-container-professor .error p {
  margin-bottom: 20px;
}
#material-single #flipbook-container-aluno .error button,
#material-single #flipbook-container-professor .error button {
  background-color: var(--roxo);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}
#material-single .modal-lg {
  max-width: 90vw !important;
}
#material-single .modal-body {
  padding: 20px 30px 60px;
}
#material-single .modal-body #flipbook-container-aluno .flipbook-wrapper,
#material-single .modal-body #flipbook-container-professor .flipbook-wrapper {
  max-width: 100%;
  height: 60vh;
}
#material-single .modal-body #flipbook-container-aluno,
#material-single .modal-body #flipbook-container-professor {
  overflow: visible;
}
#material-single .modal.show #flipbook-container-aluno,
#material-single .modal.show #flipbook-container-professor {
  pointer-events: auto;
}
#material-single .modal.show #flipbook-container-aluno #flipbook-aluno,
#material-single .modal.show #flipbook-container-aluno #flipbook-professor,
#material-single .modal.show #flipbook-container-professor #flipbook-aluno,
#material-single .modal.show #flipbook-container-professor #flipbook-professor {
  pointer-events: auto;
}
#material-single .modal.show #flipbook-container-aluno #flipbook-aluno .page,
#material-single .modal.show #flipbook-container-aluno #flipbook-professor .page,
#material-single .modal.show #flipbook-container-professor #flipbook-aluno .page,
#material-single .modal.show #flipbook-container-professor #flipbook-professor .page {
  pointer-events: auto;
}
@media (max-width: 768px) {
  #material-single .material-header .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  #material-single .material-header .badges .badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  #material-single .material-header .material-title {
    font-size: 1.75rem;
  }
  #material-single .material-content .row {
    flex-direction: column;
  }
  #material-single .modal .modal-dialog {
    margin: 5px;
    max-width: calc(100vw - 10px) !important;
  }
  #material-single .modal .modal-body {
    padding: 15px 20px 50px;
  }
}
#material-single .wpcf7 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1c1c1c;
}
#material-single .wpcf7 p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  margin: 0;
}
#material-single .wpcf7 p.group-label {
  font-weight: 600;
  margin-bottom: 12px;
}
#material-single .wpcf7 p strong {
  font-weight: 600;
}
#material-single .wpcf7 form .row {
  display: flex;
}
@media (max-width: 767px) {
  #material-single .wpcf7 form .row {
    flex-direction: column;
  }
}
#material-single .wpcf7 form .row .col-md-6,
#material-single .wpcf7 form .row .col-md-4 {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  #material-single .wpcf7 form .row .col-md-6,
  #material-single .wpcf7 form .row .col-md-4 {
    width: 100%;
  }
}
#material-single .wpcf7 form .row .col-md-4 {
  flex: 1;
}
#material-single .wpcf7 form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-color);
}
#material-single .wpcf7 form input[type=text],
#material-single .wpcf7 form input[type=email],
#material-single .wpcf7 form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--dark-color);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background-color: white;
  transition: border-color 0.3s;
}
#material-single .wpcf7 form input[type=text]:focus,
#material-single .wpcf7 form input[type=email]:focus,
#material-single .wpcf7 form select:focus {
  outline: none;
  border-color: var(--dark-color);
}
#material-single .wpcf7 form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
#material-single .wpcf7 form .radio-group {
  margin: 25px 0;
}
#material-single .wpcf7 form .radio-group label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}
#material-single .wpcf7 form .radio-group .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 0 0;
}
#material-single .wpcf7 form .radio-group .wpcf7-list-item label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
#material-single .wpcf7 form .radio-group .wpcf7-list-item input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}
#material-single .wpcf7 form .checkbox-group {
  margin: 25px 0;
}
#material-single .wpcf7 form .checkbox-group > label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}
#material-single .wpcf7 form .checkbox-group .wpcf7-list-item {
  display: block;
  margin: 0 0 12px 0;
}
#material-single .wpcf7 form .checkbox-group .wpcf7-list-item label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#material-single .wpcf7 form .checkbox-group .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}
#material-single .wpcf7 form .checkbox-group .outro-field label {
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
#material-single .wpcf7 form .checkbox-group .outro-field input {
  flex: 1;
  max-width: 300px;
  border: none;
  border-bottom: 1px solid var(--dark-color);
  border-radius: 0;
}
#material-single .wpcf7 form .checkbox-group .outro-field input:focus {
  outline: none;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--dark-color);
}
#material-single .wpcf7 form .btn-primary {
  margin-top: 30px;
  padding: 14px 40px;
  background-color: var(--roxo, #7a086a);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
#material-single .wpcf7 form .btn-primary:hover {
  background-color: rgb(74.1384615385, 4.8615384615, 64.4153846154);
  transform: translateY(-2px);
}
#material-single .wpcf7 form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}
#material-single .wpcf7 form .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
}
#material-single .wpcf7 form .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
#material-single .wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
@media (max-width: 767px) {
  #material-single .wpcf7 form .radio-group .wpcf7-list-item label,
  #material-single .wpcf7 form .checkbox-group .wpcf7-list-item label {
    font-size: 14px;
  }
  #material-single .wpcf7 form .checkbox-group .outro-field {
    flex-direction: column;
    align-items: flex-start;
  }
  #material-single .wpcf7 form .checkbox-group .outro-field input {
    max-width: 100%;
  }
  #material-single .wpcf7 form .btn-primary {
    width: 100%;
  }
}

#audioteca {
  position: relative;
}
#audioteca .wrapper-title {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
#audioteca .wrapper-title h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #333333;
}
@media screen and (max-width: 767px) {
  #audioteca .wrapper-title h1 {
    font-size: 2rem;
  }
}
#audioteca .wrapper-title::after {
  content: "";
  position: absolute;
  bottom: 22px; /* alinha a linha com a metade do círculo */
  left: calc(-50vw + 50%); /* alinha ao canto esquerdo da tela */
  width: 65vw; /* 35% menor que o original */
  height: 4px;
  background: #00aeef;
  z-index: -1;
}
#audioteca .wrapper-title::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: calc(-50vw + 50% + 65vw - 25px);
  width: 0;
  height: 0;
  border-left: 39px solid transparent;
  border-right: 24px solid transparent;
  border-top: 33px solid #00aeef;
  z-index: 1;
  transform: rotate(-39deg);
}
@media (max-width: 1799px) {
  #audioteca .wrapper-title::after {
    width: 75vw;
  }
  #audioteca .wrapper-title::before {
    left: calc(-50vw + 50% + 75vw - 25px);
  }
}
@media (max-width: 1399px) {
  #audioteca .wrapper-title::after {
    width: 85vw;
  }
  #audioteca .wrapper-title::before {
    left: calc(-50vw + 50% + 85vw - 25px);
  }
}
@media (max-width: 1199px) {
  #audioteca .wrapper-title::after {
    width: 95vw;
  }
  #audioteca .wrapper-title::before {
    left: calc(-50vw + 50% + 95vw - 25px);
  }
}
@media (max-width: 767px) {
  #audioteca .wrapper-title {
    margin-bottom: 0;
  }
  #audioteca .wrapper-title::after {
    width: 95vw;
    left: -20px;
  }
  #audioteca .wrapper-title::before {
    left: calc(-50vw + 92% + 100vw - 25px);
  }
}
#audioteca .img-audioteca {
  position: absolute;
  right: 0;
  width: 30%;
}
@media screen and (max-width: 767px) {
  #audioteca .img-audioteca {
    width: 155px;
  }
}
#audioteca .section-subtitle {
  font-size: 1.5rem;
  color: var(--azul);
  margin-bottom: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #audioteca .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
#audioteca #colecaoAccordion {
  border: none;
  border-radius: 12px;
}
#audioteca #colecaoAccordion .accordion-item {
  border: none;
}
#audioteca #colecaoAccordion .accordion-item button {
  padding-block: 30px;
  background-color: var(--cinza-claro);
  font-weight: 600;
  font-size: 1.25rem;
  outline: 0;
  box-shadow: none;
}
#audioteca #colecaoAccordion .accordion-item button .icon {
  margin-left: auto;
}
#audioteca #colecaoAccordion .accordion-item button .icon .expand-icon,
#audioteca #colecaoAccordion .accordion-item button .icon .collapse-icon {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 8px;
  font-weight: 600;
  gap: 12px;
}
#audioteca #colecaoAccordion .accordion-item button .icon .collapse-icon {
  display: flex;
}
#audioteca #colecaoAccordion .accordion-item button .icon .plus-icon,
#audioteca #colecaoAccordion .accordion-item button .icon .minus-icon {
  font-size: 20px;
  line-height: 1;
}
#audioteca #colecaoAccordion .accordion-item button.collapsed .icon .expand-icon {
  display: flex;
}
#audioteca #colecaoAccordion .accordion-item button.collapsed .icon .collapse-icon {
  display: none;
}
#audioteca #colecaoAccordion .accordion-item button::after {
  display: none;
}
#audioteca #colecaoAccordion .accordion-item button .accordion-body {
  border-bottom-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
@media screen and (max-width: 767px) {
  #audioteca #colecaoAccordion .accordion-item button {
    font-size: 1rem;
  }
}
#audioteca .accordion-button.collapsed {
  border-radius: 12px;
  border: 3px solid transparent;
}
#audioteca .accordion-button.collapsed:hover, #audioteca .accordion-button.collapsed:focus {
  border-radius: 12px;
  border-color: var(--roxo);
  color: var(--roxo);
  border-color: var(--roxo);
  transition: all 0.3s ease;
}
#audioteca .accordion-button.collapsed:hover img, #audioteca .accordion-button.collapsed:focus img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(86%) saturate(3456%) hue-rotate(295deg) brightness(78%) contrast(105%);
}
#audioteca .accordion-button:not(.collapsed) {
  border-radius: 12px 12px 0 0;
  border-color: transparent;
}
#audioteca .accordion-button:not(.collapsed) .icon .expand-icon {
  display: none;
}
#audioteca .accordion-button:not(.collapsed) .icon .collapse-icon {
  display: flex;
}
#audioteca .accordion-button:not(.collapsed):hover {
  color: var(--roxo);
}
#audioteca .accordion-button:not(.collapsed):hover img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(86%) saturate(3456%) hue-rotate(295deg) brightness(78%) contrast(105%);
}
#audioteca .accordion-body {
  background-color: var(--cinza-claro);
  border: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
#audioteca .materiais-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#audioteca .materiais-list .material-item {
  max-width: 200px;
}
#audioteca .materiais-list .material-item img {
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #audioteca .materiais-list .material-item {
    max-width: 150px;
  }
}
#audioteca .introducao h2 p {
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  #audioteca .introducao h2 p {
    line-height: 50px;
  }
}
#audioteca .introducao h2 p strong {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cinza);
  margin-bottom: 1.5rem;
  background-color: var(--laranja);
  padding: 0.2em 0.5em;
  padding-left: 0;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  max-width: 100%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #audioteca .introducao h2 p strong {
    font-size: 24px;
    margin-left: -20px;
    padding-left: 20px;
  }
}
#audioteca .lingua-estrangeira .audioteca-item {
  width: 200px;
}
#audioteca .lingua-estrangeira .audio-lingua-estrangeira-capa {
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #audioteca .lingua-estrangeira .audioteca-item {
    width: 210px;
  }
}
#audioteca .audio-capa {
  border: 3px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}
#audioteca .audio-capa:hover {
  border: 3px solid var(--azul);
}

#material-podcasts {
  position: relative;
}
#material-podcasts img {
  width: 260px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 12px;
}
@media screen and (max-width: 960px) {
  #material-podcasts img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 960px) {
  #material-podcasts::before {
    display: none;
  }
}
#material-podcasts::after {
  content: "";
  background-image: url(../img/grafismo-podcast.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 341px;
  position: absolute;
  top: 40%;
  right: 0;
}
@media screen and (max-width: 960px) {
  #material-podcasts::after {
    display: none;
  }
}
#material-podcasts .bg-primary {
  background-color: var(--laranja) !important;
  color: #fff;
}
#material-podcasts .bg-secondary {
  background-color: var(--azul) !important;
  color: #fff;
}
#material-podcasts h1 {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  #material-podcasts h1 {
    font-size: 1.5rem;
  }
}

#podcast-single {
  position: relative;
}
#podcast-single .breadcrumbs {
  padding-right: 100px;
}
#podcast-single .introducao p {
  font-size: 3rem;
}
#podcast-single .introducao h1 {
  font-size: 3rem;
  margin-bottom: 77px;
}
@media screen and (max-width: 768px) {
  #podcast-single .introducao p {
    font-size: 1.5rem;
  }
  #podcast-single .introducao h1 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
#podcast-single .podcast-player {
  width: 80%;
}
@media screen and (max-width: 768px) {
  #podcast-single .podcast-player {
    width: 100%;
  }
}
#podcast-single .transcription {
  max-width: 768px;
  margin: 0 auto;
}
#podcast-single::before {
  content: "";
  width: 297px;
  height: 112px;
  background-image: url(../img/podcast-grafism-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  top: 20px;
  right: 0;
}
@media screen and (max-width: 960px) {
  #podcast-single::before {
    display: none;
  }
}
#podcast-single::after {
  content: "";
  width: 114px;
  height: 625px;
  background-image: url(../img/podcast-grafism-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  #podcast-single::after {
    display: none;
  }
}
#podcast-single .capitulo-title {
  margin-top: 12px;
  color: var(--roxo);
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 16px;
}

#search {
  position: relative;
  padding: 10px 0;
}
#search::before {
  content: "";
  position: absolute;
  top: -200px;
  right: 0;
  width: 427px;
  height: 359px;
  background: url(../img/search-grafismo-top.svg) no-repeat center center;
  background-size: contain;
  z-index: -1;
}
#search .page-header {
  margin-bottom: 3rem;
}
#search .page-header .page-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: #1c1c1c;
  margin-bottom: 2rem;
}
#search .page-header .page-title span {
  display: block;
  color: #1c1c1c;
}
#search .search-box {
  background-color: #ebebeb;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 3rem;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
#search .search-box .search-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: #1c1c1c;
}
#search .search-box .search-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
#search .search-box .search-form .search-field {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 336px;
  border-radius: 12px;
  border: 1px solid var(--cinza);
}
#search .search-box .search-form .search-field:focus {
  outline: none;
  border-color: #7a086a;
}
#search .search-box .search-form .search-form-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
#search .search-box .search-form .search-submit {
  width: auto;
  background-color: #7a086a;
  color: #fff;
  border: none;
  padding: 10px 30px;
  margin: 0;
  border-radius: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}
#search .search-box .search-form .search-submit:hover {
  background-color: #5a0650;
}
#search .results-count {
  font-size: 18px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 2rem;
}
#search .search-results article {
  padding: 25px 0;
  border-bottom: 1px solid var(--cinza);
  margin-bottom: 0;
  transition: background-color 0.2s;
}
#search .search-results article:hover {
  background-color: #f9f9f9;
}
#search .search-results article .entry-header {
  margin-bottom: 10px;
}
#search .search-results article .entry-header .entry-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
#search .search-results article .entry-header .entry-title a {
  color: #1c1c1c;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#search .search-results article .entry-header .entry-title a:hover {
  color: #7a086a;
}
#search .search-results article .entry-header .entry-title a::after {
  content: url(../img/arrow-search.svg);
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}
#search .search-results article .entry-header .entry-meta {
  display: none;
}
#search .search-results article .entry-summary {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
#search .search-results article .entry-summary p {
  margin-bottom: 0;
}
#search .search-results article .entry-footer {
  display: none;
}
#search .pagination-wrapper {
  margin-top: 3rem;
  text-align: center;
}
#search .pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}
#search .pagination-wrapper .pagination .page-numbers {
  display: inline-block;
  padding: 8px 15px;
  color: #1c1c1c;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}
#search .pagination-wrapper .pagination .page-numbers.current {
  background-color: #7a086a;
  color: #fff;
  font-weight: 600;
}
#search .pagination-wrapper .pagination .page-numbers:hover:not(.current) {
  background-color: #ebebeb;
}
#search .pagination-wrapper .pagination .page-numbers.dots {
  padding: 8px 5px;
}
#search .pagination-wrapper .pagination .next,
#search .pagination-wrapper .pagination .prev {
  font-weight: 600;
  color: #7a086a;
  text-transform: uppercase;
  font-size: 14px;
}
#search .pagination-wrapper .pagination .next:hover,
#search .pagination-wrapper .pagination .prev:hover {
  text-decoration: underline;
}
#search .no-results {
  text-align: center;
  padding: 50px 0;
}
#search .no-results .page-header {
  margin-bottom: 2rem;
}
#search .no-results .page-header .page-title {
  font-size: 32px;
  color: #1c1c1c;
}
#search .no-results .page-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 2rem;
}
#search .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #7a086a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 100;
}
#search .back-to-top:hover {
  background-color: #5a0650;
  transform: translateY(-5px);
}
#search .back-to-top span {
  text-align: center;
  line-height: 1.2;
  font-size: 10px;
}
@media (max-width: 767px) {
  #search {
    padding: 30px 0;
  }
  #search::before {
    display: none;
  }
  #search .page-header {
    margin-bottom: 2rem;
  }
  #search .page-header .page-title {
    font-size: 24px;
    padding: 0 15px;
  }
  #search .search-box {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    margin: 0 15px 2rem;
  }
  #search .search-box .search-title {
    font-size: 16px;
  }
  #search .search-box .search-form-wrapper {
    flex-direction: column;
  }
  #search .search-box .search-form {
    flex-direction: column;
  }
  #search .search-box .search-form .search-field {
    width: 100%;
    font-size: 14px;
  }
  #search .search-box .search-form .search-submit {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
  #search .results-count {
    font-size: 16px;
    padding: 0 15px;
  }
  #search .search-results {
    padding: 0 15px;
  }
  #search .search-results article .entry-header .entry-title {
    font-size: 16px;
  }
  #search .search-results article .entry-header .entry-title a::after {
    font-size: 20px;
  }
  #search .search-results article .entry-summary {
    font-size: 13px;
  }
  #search .pagination-wrapper {
    margin-top: 2rem;
    padding: 0 15px;
  }
  #search .pagination-wrapper .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }
  #search .pagination-wrapper .pagination .page-numbers {
    padding: 6px 12px;
    font-size: 14px;
  }
  #search .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  #search .back-to-top span {
    font-size: 9px;
  }
}

* {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #1e1e1e;
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open {
  padding-right: 0 !important;
  overflow-y: scroll !important;
}

.text-justify {
  text-align: justify !important;
}

.scroll-top {
  position: fixed;
  z-index: 999;
  bottom: 70px;
  right: 20px;
  background-color: #ebebeb;
  color: #7a086a;
  border-radius: 18px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px;
  font-size: 14px;
  line-height: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.scroll-top img {
  margin-bottom: 5px;
}

.badges {
  gap: 18px;
  display: flex;
}
.badges .badge {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--preto);
  text-transform: uppercase;
  border-radius: 8px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .badges .badge {
    font-size: 0.9rem;
  }
}
.badges .bg-post {
  background-color: var(--laranja) !important;
}
.badges .bg-collection {
  background-color: var(--azul-claro) !important;
}
.badges .bg-estrangeiro {
  background-color: #e84f57 !important;
}/*# sourceMappingURL=main.css.map */