:root {
  --white-primary: #fff;
  --white-2: #f9f9f9;
  --grey: #d9d9d9;
  --green-primary: #16f9b9;
  --green-light: #69f9de;
  --green-light-2: #f0f8f8;
  --dark-blue: #251d59;
  --dark-blue-strong: #191345;
  --dark-light: #2922f2;
  --black-primary: #212236;
}

/* Estilos para o header */
.top-nav {
  height: 36px;
  display: flex;
  gap: 20px;
  justify-content: end;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white-primary);
}
.top-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--black-primary);
  display: flex;
  align-items: center;
  gap: 7px;
}
.top-nav a:hover {
  color: #6556c7;
}
.pontilhados {
  border-left: 1px dotted #000;
  height: 20px;
}
.nav-area-aluno {
  background: var(--green-primary);
  height: 100%;
  display: flex;
  padding-inline: 20px;
}

.nav-area {
  height: 136px;
}

.navbar {
  background-color: var(--dark-blue);
  color: var(--white-primary);
  padding: 10px 0;
  height: 100px;
  position: fixed !important;
  z-index: 9;
  top: 35px;
  left: 0;
  right: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: nowrap !important;
}
.navbar .logo a {
  color: var(--white-primary);
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}
.navbar .nav-itens .primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .nav-itens .primary-menu li {
  margin-left: 20px;
}
.navbar .nav-itens .primary-menu li a {
  color: var(--white-primary);
  text-decoration: none;
  font-size: 16px;
}
.navbar .nav-itens .primary-menu li a:hover {
  color: var(--green-primary);
}
.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
.menu-item-has-children > a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 12px;
  color: var(--white-primary);
  position: absolute;
  right: 5px;
  top: 65%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}
/*
.menu-item-has-children ul.sub-menu::before {
  top: -12px;
  left: 10px;
  content: "";
  position: absolute;
  border-radius: 0.125rem;
  transform: rotate(180deg);
  border-top: 12px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}*/
.menu-item-has-children ul.sub-menu {
  display: none;
  position: absolute;
  background: var(--white-primary);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  top: 59px;
  z-index: 10;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.menu-item-has-children:hover ul.sub-menu {
  display: block;
}
.menu-item-has-children ul.sub-menu li {
  padding: 10px;
  margin-left: 0 !important;
  position: relative;
  white-space: nowrap;
  border-bottom: 1px solid #e5e5e5;
}
.menu-item-has-children ul.sub-menu li a {
  color: var(--dark-blue-strong) !important;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-left: 10px;
}
.menu-item-has-children ul.sub-menu li:hover {
  background: var(--white-2);
  color: var(--dark-blue);
}
.menu-item-has-children ul.sub-menu li:last-child {
  border-bottom: none;
}

.mobile-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utils {
  display: flex;
  gap: 20px;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -560px;
  width: 560px;
  height: 700px;
  border-radius: 8px;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1;
  color: var(--black-primary);
}

.cart-modal.active {
  right: 0;
}

.cart-modal-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cart-modal-content h2 {
  font-size: 24px;
  color: var(--dark-blue);
  font-weight: bold;
}

#close-cart {
  background: none;
  border: none;
  font-size: 35px;
  position: absolute;
  right: 15px;
  top: 15px;
}

#cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.item-cart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-cart-title p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
}

.cart-item-image {
  max-width: 187px;
  max-height: 87px;
  border-radius: 8px;
  margin-right: 10.21px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0;
  font-size: 18px;
  color: var(--black-primary);
}

.pix-price-cart {
  color: var(--dark-light);
  font-weight: bold;
  font-size: 18px;
  line-height: normal;
}

.card-price-cart {
  color: var(--black-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 111.1%;
}

.installments-cart {
  color: var(--black-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 111.1%;
  display: flex;
  justify-content: space-between;
}

.cart-total-pix {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.cart-total-pix p {
  color: var(--dark-blue);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}

.cart-total-pix p:last-child {
  font-size: 32px;
}

.cart-pix-desc {
  font-size: 18px;
}

a.added_to_cart.wc-forward {
  display: none;
}

.remove-item {
  background: none;
  border: none;
}

.modal-backdrop {
  z-index: 4 !important;
}

.modal.fade.show {
  display: flex !important
  ;
  align-items: center;
  justify-content: center;
  z-index: 2;
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #0000007d;
  --bs-backdrop-opacity: 3.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-content {
  display: block;
  color: var(--black-primary) !important;
  z-index: 9;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black-primary);
  font-weight: bold;
}

.modal-footer button {
  background: var(--green-light);
  width: 45%;
  font-weight: bold;
}

.modal-footer button:hover {
  background: var(--green-primary);
}

.modal-footer button:last-child {
  background: var(--white-primary);
  border: 1px solid #212236;
}

.modal-footer button:last-child:hover {
  background: var(--black-primary);
  border: 1px solid #fff !important;
  color: var(--white-primary);
}

.cart-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.checkout-button {
  display: block;
  font-weight: bold;
  width: 100%;
  padding: 10px;
  background: var(--green-light);
  color: var(--dark-blue);
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}

.checkout-button:hover {
  background: var(--green-primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.cart-button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-line {
  height: 3px;
  background: var(--green-primary);
  position: fixed;
  top: 135px;
  z-index: 8;
  left: 0;
  right: 0;
}
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--dark-blue-strong);
  border-radius: 50px;
  padding: 8px 8px 8px 40px;
  max-width: 250px;
  height: 50px;
  cursor: pointer;
}
#search-trigger {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}
input#search-trigger {
  color: var(--white-primary);
}
input#search-trigger::-webkit-input-placeholder {
  color: var(--white-primary);
}
input#search-trigger::-moz-placeholder {
  color: var(--white-primary);
}
input#search-trigger:-ms-input-placeholder {
  color: var(--white-primary);
}
input#search-trigger::-ms-input-placeholder {
  color: var(--white-primary);
}
.search-icon {
  position: absolute;
  left: 10px;
  width: 24px !important;
  height: 24px !important;
}
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
.close-search {
  position: absolute;
  top: 0px;
  right: 10px;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--black-primary);
  cursor: pointer;
  transition: 0.3s;
  z-index: 9;
}
.close-search:hover {
  color: #191345;
}
.search-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  border-radius: 6px;
}

.search-result-item {
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-block-end: 20px;
}

.search-result-item:hover {
  border: 1px solid var(--green-primary);
}

.search-result-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none;
}

.search-result-item a img {
  border-radius: 8px;
}

.search-result-item-title {
  max-width: 40%;
}

.search-result-item a h3 {
  font-size: 23px;
  color: var(--dark-blue);
  text-align: center;
}

.search-container-2 {
  position: relative;
}
#search-input {
  width: 100%;
  height: 72px;
  padding: 10px;
  font-size: 24px;
  background: #b9fdea;
  border: none;
  border-radius: 6px 6px 0 0;
  color: var(--black-primary);
  padding-inline: 50px;
}
.search-icon-3 {
  position: absolute;
  left: 15px;
  top: 23px;
  width: 24px !important;
  height: 24px !important;
}
input#search-input:focus {
  outline: none;
}
input#search-input:focus-visible {
  border: none;
}
input#search-input {
  color: var(--black-primary);
}
input#search-input ::-webkit-input-placeholder {
  color: var(--black-primary);
}
input#search-input ::-moz-placeholder {
  color: var(--black-primary);
}
input#search-input :-ms-input-placeholder {
  color: var(--black-primary);
}
input#search-input ::-ms-input-placeholder {
  color: var(--black-primary);
}
#search-results {
  background-color: white;
  color: var(--black-primary);
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
  border: none;
  border-radius: 0 0 6px 6px;
}
#search-results p {
  color: var(--black-primary);
  margin-bottom: 0;
  padding: 10px;
}
.nav-mobile-itens {
  display: flex;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease-in-out;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}
.menu-toggle.active .hamburger::after {
  top: 6px;
}
.menu-toggle.active .hamburger {
  background: transparent;
}
.menu-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 769px) {
  .mobile-logo {
    display: none;
  }
}

@media (max-width: 1200px) {
  .desktop-logo {
    display: none;
  }
  .mobile-logo {
    display: block;
  }

  .nav-itens {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #18123f;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
  }

  .nav-itens.active {
    display: flex !important;
    margin-top: 25px;
  }

  .navbar .nav-itens .primary-menu {
    margin: auto;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 915px) {
  .search-content {
    width: 95%;
  }
}

@media (max-width: 768px) {
  #nav-pagina-inicial,
  #nav-blog {
    display: none;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
    margin-left: -50px;
  }

  .navbar .container {
    padding: 0 !important;
    flex-wrap: nowrap !important;
  }

  .logo {
    order: 1;
    flex-basis: 50%;
  }

  .mobile-nav-wrapper {
    order: 2;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-mobile-itens {
    order: 1;
  }

  .utils {
    order: 2;
  }

  .menu-toggle {
    order: 3;
    margin-left: 15px;
  }

  .nav-itens {
    order: 3;
    flex-basis: 100%;
  }
  .pontilhados {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .search-container {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0;
    max-width: none;
    height: auto;
  }

  #search-results {
    max-height: 450px;
  }

  .search-result-item a {
    flex-direction: column;
    gap: 10px;
  }

  .search-result-item a .price-wrapper {
    text-align: center;
  }

  .search-result-item-title {
    max-width: 100%;
  }
  #search-trigger {
    display: none;
  }
  .search-icon {
    position: static;
    width: 39px !important;
    height: 36px !important;
  }
  .nav-itens {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #18123f;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
  }
  .nav-itens.active {
    display: flex !important;
    margin-top: 25px;
  }
  .primary-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .primary-menu li {
    padding: 10px 0;
  }
  .navbar .nav-itens .primary-menu li {
    margin-left: 0;
  }
  .menu-item-has-children ul.sub-menu {
    position: relative;
    background: #100b2f;
    top: 10px;
    width: 95%;
    margin: auto;
  }
  .menu-item-has-children ul.sub-menu li {
    border-bottom: none;
  }
  .menu-item-has-children ul.sub-menu li a {
    color: var(--white-primary) !important;
    margin-left: 0;
  }
  .menu-item-has-children:hover ul.sub-menu {
    display: none;
  }
  .menu-item-has-children > a::after {
    transform: translateY(-50%) !important;
  }

  .menu-item-has-children.open:hover > a::after {
    transform: none;
  }
  .menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg) !important;
  }

  .menu-item-has-children ul.sub-menu::before {
    display: none;
  }
  .menu-item-has-children.open ul.sub-menu {
    display: block;
  }

  .cart-modal {
    width: 390px;
    right: -390px;
  }
}
/* --- */

/* Sidebar */
.product-archive-container {
  display: flex;
}

.product-archive-content {
  flex: 1;
  min-width: 70%;
}

#course-sidebar {
  width: 27%;
  height: fit-content;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.filter-title {
  font-size: 16px;
  color: var(--black-primary);
}

input.search-field {
  padding: 10px;
  border-radius: 8px;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

input.search-field::placeholder {
  color: var(--dark-blue) !important;
  opacity: 0.9 !important;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field {
  width: 100%;
  padding-right: 40px;
}

.search-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

button.search-submit {
  background: var(--green-light);
  height: 35px;
  width: 35px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon-2 {
  width: 20px;
  height: 20px !important;
}

.filters-buttons {
  background: var(--green-light);
  border: none;
  border-radius: 8px;
  padding: 10px;
  padding-inline: 35px;
  font-size: 14px;
}

.filters-buttons:hover {
  background: var(--green-primary);
}

.card-filters {
  padding: 16px;
  border-radius: 8px;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card-filters label {
  color: #848484;
  font-size: 12px;
}

.card-filters li {
  list-style: none;
  margin-top: 20px;
  transition: 0.5s;
}

.card-filters li:hover {
  background-color: #eaf6fe;
  padding-inline: 10px;
  padding: 5px;
  border-radius: 8px;
  transition: 0.3s;
}
.card-filters a {
  text-decoration: none;
  color: var(--black-primary);
  font-size: 14px;
}

.card-filters form {
  display: flex;
  flex-direction: column;
}

.card-filters form .list-professors-items {
  font-size: 14px;
  cursor: pointer;
  display: -webkit-box;
  -webkit-box-align: center;
  gap: 10px;
  margin-top: 8px;
}

.list-professors {
  height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
}

.list-professors-items p {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 14px;
  color: #848484;
}

.card-filters input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #fff;
  border: 0.125rem solid #ccc;
  border-radius: 0.25rem;
}

.card-filters input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  transition: 0.125s transform ease-in-out;
  box-shadow: inset 1rem 1rem #fff;
}

.card-filters input[type="checkbox"]:checked {
  background-color: var(--green-primary);
  border-color: var(--green-primary);
}

.card-filters input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.card-filters input[type="checkbox"]:disabled {
  opacity: 0.25;
}

.card-filters input[type="checkbox"]:focus {
  border-color: var(--green-primary);
}

.card-filters input[type="checkbox"]:focus + label {
  color: var(--green-primary);
}

.price-filter-container {
  background-color: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-range-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
  gap: 2px;
}

.price-range-display-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #848484;
  margin-bottom: 0.5rem;
}

.price-slider-container {
  padding: 1rem 0;
}

.price-slider {
  width: 100%;
  -webkit-appearance: none;
  background: #d8e0f3;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  border-radius: 0.5rem;
  height: 4px;
}

.price-slider:hover {
  opacity: 1;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid var(--green-primary);
  cursor: pointer;
  border-radius: 50%;
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  cursor: pointer;
  border-radius: 50%;
}

.price-filter-text {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0.5rem 0;
}

.price-filter-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price-filter-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}

.price-filter-btn.clear {
  background-color: #eaf6fe;
  color: var(--black-primary);
}

.price-filter-btn.clear:hover {
  background: #d5ebf9;
}

.price-filter-btn.apply {
  background-color: var(--green-light);
  color: var(--black-primary);
}

.price-filter-btn.apply:hover {
  background: var(--green-primary);
}

.price-range-display input[type="number"] {
  width: 70px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .product-archive-container {
    margin-top: 3rem;
  }
  .mobile-filter-buttons {
    display: none;
  }

  .filter-container {
    display: block !important;
  }

  .close-filter {
    display: none;
  }

  .course-search.widget-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .filter-container.active {
    display: block;
  }

  .filter-container .course-ordering.widget {
    display: none;
  }

  .filter-container.active .course-ordering.widget {
    display: block;
  }

  .course-search.widget-mobile {
    display: block;
  }
  .product-archive-container {
    display: block;
    margin-top: 0 !important;
  }

  .close-filter {
    display: block;
  }

  #course-sidebar {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 0;
  }

  .filter-container {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
  }

  .mobile-filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }

  .mobile-filter-btn {
    flex: 1;
    padding: 10px;
    background: #eaf6fe;
    border: none;
    border-radius: 6px;
    color: var(--black-primary);
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .mobile-filter-btn:hover {
    background: #c0fff3;
  }

  .filter-container.active {
    display: block;
  }

  .filter-container .close-filter {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    background: #eaf6fe;
    border: none;
    border-radius: 4px;
    color: var(--black-primary);
  }

  .course-ordering.widget {
    display: none;
  }

  .professor-filters.active .course-ordering.widget {
    display: block;
  }
}

/* --- */

/* BANNER */
.banner-wrapper {
  position: relative;
  width: 100%;
  padding-top: 29.1%;
  overflow: hidden;
}

.banner-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  display: none;
}

.banner-item.active {
  opacity: 1;
  z-index: 1;
  display: block;
}

.banner-desktop {
  width: 100%;
  height: auto;
  display: block;
}

.banner-mobile {
  display: none;
}

.banner-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 40px;
  z-index: 3;
}

.banner-nav-left {
  left: 10px;
}

.banner-nav-right {
  right: 10px;
}

.banner-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.banner-pagination {
  text-align: center;
  margin-top: 30px;
  margin-bottom: -20px;
  position: relative;
  bottom: 15px;
  width: 100%;
  z-index: 8;
}

.banner-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: var(--grey);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.banner-dot.active {
  background-color: var(--green-primary);
}

@media (max-width: 768px) {
  .banner-wrapper {
    padding-top: 100%;
  }
  .banner-desktop {
    display: none;
  }
  .banner-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* --- */

/* Listagem de Produtos */
.title-bar-primary {
  position: absolute;
  width: 140px;
  height: 8px;
  bottom: 25px;
  left: 52%;
  border-radius: 100px;
  transform: translateX(-50%);
  background: var(--green-primary);
}

.custom-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.custom-product-item {
  position: relative;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}

.custom-product-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-product-item a {
  text-decoration: none;
  position: relative;
}

.product-professor {
  gap: 5px;
}

.product-professor span {
  color: var(--dark-blue);
  font-size: 11px;
}

.product-image {
  position: relative;
}

.custom-product-item .product-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-category {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  top: 0;
  left: 0;
  width: 127px;
  border-radius: 3px;
  padding: 4px 16px;
  text-align: center;
  background: var(--green-light);
  font-size: 11px;
  color: var(--dark-blue);
}

.product-category img {
  width: 14px !important;
  height: 14px !important;
}

.product-category-extension {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  top: 0;
  left: 0;
  width: 127px;
  border-radius: 3px;
  padding: 4px 16px;
  text-align: center;
  background: var(--dark-light);
  font-size: 11px;
  color: var(--white-primary);
}

.product-category-extension img {
  width: 14px !important;
  height: 14px !important;
}

.custom-product-item .product-title {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: bold;
  margin: 16px 8px 0;
  cursor: pointer;
}

.custom-product-item .product-title a {
  color: #333;
  text-decoration: none;
}

.price-wrapper {
  margin: 10px 0;
  font-family: Arial, sans-serif;
}

.original-price {
  font-size: 11px;
  color: #951b81;
}

.original-price bdi {
  text-decoration: line-through;
}

.card-price {
  font-size: 16px;
  color: var(--dark-blue);
}

.pix-price {
  font-size: 16px;
  color: var(--dark-light);
  font-weight: bold;
}

.pix-price bdi {
  font-size: 26px;
}

.custom-product-item .product-price {
  font-size: 1.2em;
  color: #e91e63;
  margin-bottom: 15px;
}

.installments {
  font-size: 14px;
  font-weight: bold;
  color: var(--dark-light);
  margin: 5px 0;
}

.product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.custom-product-item .product-button .button {
  background-color: var(--dark-blue);
  display: flex;
  padding: 10px;
  border-radius: 7px;
  height: 35px;
  align-items: center;
  justify-content: center;
}

.product-button .button:hover {
  background-color: #10114e;
}

.saiba-mais {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  /* padding: 10px; */
  border-radius: 7px;
  background: var(--green-light);
  font-size: 14px;
  color: var(--dark-blue);
}

.saiba-mais:hover {
  background: var(--green-primary);
}

.product-details {
  display: flex;
  gap: 3px;
}

.product-details span {
  background: #eaf6fe;
  font-size: 11px;
  border-radius: 7px;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  height: 35px;
  width: 100%;
}

.swiper-button-prev {
  background-image: url(../icons/arrow-circle-left.svg) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 30px !important;
  height: 30px !important;
}

.swiper-button-next {
  background-image: url(../icons/arrow-circle-right.svg) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  width: 30px !important;
  height: 30px !important;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev::after {
  display: none;
}

/* -- Fim listagem de produtos -- */

/* Página de produtos - Interno */

.banner-produto-interno {
  background: var(--dark-blue);
  color: var(--white-primary);
  position: relative;
  height: 600px;
  max-height: 518px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner-produto-interno::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-produto-interno > .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.prod-intern-infos {
  max-width: 50%;
}

#prod-intern-back {
  position: absolute;
  left: -35px;
  top: 50px;
}

.utils-prod-intern span {
  padding: 7px;
  padding-inline: 15px;
  border-radius: 100px;
  font-size: 13px;
}

#prod-intern-type-2 {
  border: 1px solid var(--green-primary);
  color: var(--white-primary);
  font-weight: bold;
}

#prod-intern-type-1:first-child {
  background: var(--green-light);
  color: var(--dark-blue);
  border: none;
  font-weight: 400;
  margin-right: 10px;
}

.prod-intern-data-course h1 {
  font-size: 38px;
  font-weight: bold;
}

#prod-intern-coord {
  font-size: 18px;
}

.card-prod-intern {
  position: fixed;
  right: 66px;
  top: 175px;
  margin-right: 80px;
  /*transition: all 0.3s ease;*/
}

.card-prod-intern.stuck {
  right: 40px;
  margin-right: 0;
}

.product-intern-basic-info {
  background: var(--white-primary);
  padding: 18px 42px 15.55px 40px;
  right: 0;
  top: 0;
  max-width: 416px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.product-intern-media img {
  width: 416px;
  height: 233px;
  border-radius: 8px;
}

.product-intern-course-category {
  font-size: 18px;
  color: var(--dark-blue);
}

.product-intern-title {
  font-size: 19px;
  color: var(--dark-blue);
  font-weight: bold;
}

.product-intern-price .original-price {
  font-size: 16px;
  color: #4e4b59;
  opacity: 0.4;
}

.product-intern-price .pix-price bdi {
  font-size: 30px;
}

.product-intern-price #value-pix-card {
  font-size: 11px;
  text-transform: capitalize;
}

.product-intern-price .pix-price strong {
  font-weight: 400;
  color: var(--dark-blue);
}

.product-intern-price .card-price {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark-blue);
}

.product-intern-price .card-price .installments {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-light);
}

.product-intern-cta a {
  padding: 15px 30px;
  width: 100%;
}

.product-intern-details {
  color: var(--dark-blue);
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.product-intern-details div {
  border: 1px solid var(--green-primary);
  border-radius: 6px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-intern-alert {
  font-size: 12px;
  color: var(--dark-blue);
  gap: 10px;
}

.section-conteudo-prod-intern h1 {
  font-size: 30px;
}

.card-benefits {
  gap: 5px;
}

.card-benefit {
  width: 226px;
  height: 180px;
  padding: 10px 5px 5px;
  background: var(--dark-blue);
  color: var(--white-primary);
  border-radius: 10px;
  border: 1px solid var(--green-primary);
  flex-direction: column;
}

.card-benefit p {
  color: var(--white-primary);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.card-benefit span {
  color: #ffffffbb;
  font-size: 16px;
}

.section-conteudo-prog-prod-intern {
  background: #f8f8f8;
}

.ue-item {
  background: var(--white-primary);
  border-radius: 8px;
}

button.ue-item-btn {
  background: var(--dark-blue);
  color: var(--white-primary);
  padding: 13px;
  border-radius: 8px;
}

button.ue-item-btn:hover {
  background: var(--dark-blue-strong) !important;
  color: var(--white-primary) !important;
}

button.ue-item-btn:active {
  background: var(--dark-blue-strong) !important;
  color: var(--white-primary) !important;
}

button.ue-item-btn:focus-visible {
  background: var(--dark-blue-strong) !important;
  color: var(--white-primary) !important;
}

.ue-item h5 {
  font-size: 16px;
}

.ue-item p {
  padding: 15px;
  font-size: 14px;
  margin-bottom: 0;
}

.ue-item button[aria-expanded="true"] img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.ue-item button img {
  transition: transform 0.3s ease;
}

.title-coord-course {
}

.title-coord-course h4 {
  font-size: 20px !important;
  font-weight: bold !important;
}

.section-coord-course-prod-intern {
  background-color: var(--dark-blue);
  color: var(--white-primary);
}

.section-coord-course-prod-intern h4 {
  font-size: 30px;
  font-weight: bold;
}

#prod-intern-coord-cat {
  background: var(--green-light);
  color: var(--dark-blue);
  border-radius: 100px;
  padding-inline: 15px;
  font-size: 20px;
  font-weight: bold;
}

.prod-intern-coord-prof {
  font-size: 34px;
  font-weight: bold;
}

.prod-intern-coord-prof-video iframe {
  border-radius: 8px;
  width: 50%;
}

.btn-coord-prof-bio {
  background: var(--green-light) !important;
  color: var(--dark-blue) !important;
  font-size: 16px;
  position: relative;
  padding: 10px !important;
  width: 50%;
}

.btn-coord-prof-bio:hover {
  background: var(--green-primary) !important;
}

.btn-coord-prof-bio[aria-expanded="true"] img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.btn-coord-prof-bio img {
  transition: transform 0.3s ease;
}

.coord-prof-bio-collapse {
  background: var(--white-primary);
  color: var(--dark-blue);
  font-size: 16px;
  margin-top: -10px;
  padding: 24px 20px;
  border-radius: 8px;
  width: 50%;
}

.prod-intern-coord-docentes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.prod-intern-corp-docente {
  position: relative;
  gap: 10px;
  border-radius: 8px;
}

.prod-intern-corp-docente img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  max-width: 175px;
}

.corp-docente-info-prof {
  background: linear-gradient(0deg, #000, #0000);
  border-radius: 8px;
  height: 100%;
  width: 100%;
  max-width: 175px;
  position: absolute;
  bottom: 0;
}

.corp-docente-info-prof h6 {
  text-align: start;
  font-size: 13px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  padding: 10px;
  width: 100%;
}

.section-card-checkout-prod-intern {
  background: var(--white-2);
}

.card-oque-aprender-prod-intern {
  background: var(--white-primary);
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  max-width: 296px !important;
  padding: 15px;
}

.card-oque-aprender-prod-intern img {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
  padding: 10px;
}

.card-oque-aprender-prod-intern h5 {
  font-size: 20px;
  font-weight: bold;
}

.card-oque-aprender-prod-intern p {
  font-size: 16px;
  color: #3e3e70;
}

.container-card-checkout-intern .product-intern-basic-info{
max-width: 516px;
}

.container-card-checkout-intern .product-intern-media img{
  width: 100%;
  max-width: 516px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.duvidas-section-2 {
  padding: 10px;
}

.duvidas-section-2 h4 {
  font-size: 25px;
  color: var(--dark-blue);
  font-weight: bold;
  padding: 10px 10px 0px 10px;
}

@media (max-width: 1300px) {
  .card-prod-intern {
    margin-right: 50px;
  }
}

@media (max-width: 1100px) {
  .card-prod-intern {
    position: relative;
  }
  .product-intern-media img {
    display: none;
  }

  .product-intern-basic-info {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    max-width: 100%;
  }

}

@media (max-width: 768px) {
  .banner-produto-interno{
    height: 270px;
  }
  
  .product-intern-basic-info{
    padding: 18px;
  }

  .prod-intern-infos {
    display: none;
  }

  .product-intern-price .price-wrapper{
    margin: 0;
  }

  .product-intern-price .original-price{
    font-size: 13px;
  }

  .card-prod-intern-mobile .product-intern-basic-info {
    display: block;
    position: relative;
    box-shadow: none;
    padding: 10px;
    margin-top: 15px;
  }

  .mobile-card-prod-intern .product-intern-course-category,
  .mobile-card-prod-intern .product-intern-title,
  .mobile-card-prod-intern .product-intern-details {
      display: none;
  }

  .card-prod-intern-mobile .product-intern-course-category {
    border: 1px solid var(--dark-blue);
    padding: 5px;
    padding-inline: 15px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: bold;
  }

  .card-prod-intern-mobile .product-intern-title {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    font-size: 23px;
  }

  .card-prod-intern-mobile .product-intern-price .pix-price bdi {
    font-size: 48px;
  }

  .card-prod-intern-mobile .product-intern-price #value-pix-card {
    font-size: 13px;
  }

  .product-intern-media img {
    display: block;
    position: absolute;
    width: 342px;
    height: 192px;
    top: -273px;
    right: -140px;
  }

  .card-benefit p {
    font-size: 14px;
  }

  .card-benefit span {
    font-size: 13px;
  }

  #prod-intern-coord-cat {
    font-size: 16px;
  }

  .btn-coord-prof-bio {
    max-width: 100%;
    width: 100% !important;
  }

  .coord-prof-bio-collapse {
    max-width: 100%;
    width: 100% !important;
  }

  .prod-intern-coord-prof-video iframe {
    width: 100% !important;
  }
}
/* -- Fim Página de Produtos - Interno */

/* Section Sobre */
section.sobre {
  background: var(--black-primary);
  color: var(--grey);
  font-size: 16px;
  padding: 30px;
}

section.sobre h1 {
  font-size: 42px;
  font-weight: bold;
}

section.sobre h1 strong {
  color: var(--green-primary);
}

/*
section.sobre .valores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}*/

.grid-valores {
  gap: 15px;
}

.valor {
  width: 226.105px;
  height: 84.789px;
  display: flex;
  align-items: center;
  padding: 0 21.2px;
  background: linear-gradient(#212236, #212236) padding-box,
    linear-gradient(to right, #189ffe, var(--bs-green)) border-box;
  border: 2px solid transparent;
  border-radius: 11.776px;
  color: #fff;
  box-shadow: 0 9.42105px 35.32895px #b7bdc126;
  justify-content: center;
}

.valor span {
  font-size: 22px;
}

.sobre iframe {
  box-shadow: 0 9.42105px 35.32895px #b7bdc126;
  border-radius: 6px;
}

@media (max-width: 768px) {
  section.sobre {
    padding: 0;
  }

  section.sobre p {
    font-size: 14px;
  }

  section.sobre iframe {
    height: 215px;
  }

  .grid-valores {
    display: block !important;
  }

  .col.valor {
    width: 260px;
    margin: auto;
    margin-top: 15px;
  }
}
/* --- */

/* Dúvidas */
.duvidas-section {
  font-family: "Arial", sans-serif;
  color: #000000;
  padding: 5px !important;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.title {
  position: relative;
  font-size: 20px;
  color: var(--black-primary);
}

.title-bar {
  position: absolute;
  width: 150px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: var(--green-primary);
}

.duvidas-item {
  margin-bottom: 10px;
}

.duvidas-header {
  padding: 18px;
  font-size: 18.69px;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  height: 80px;
  margin-bottom: 8px;
}

.duvidas-header:hover {
  color: #5c5fa0;
}

.duvidas-header .icon {
  font-size: 30px;
  font-weight: 100;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.duvidas-header.active .icon {
  transform: rotate(180deg);
}

.duvidas-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 15px;
  font-size: 16px;
  color: #696984;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: -30px;
  margin-bottom: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.duvidas-header.active + .duvidas-content {
  max-height: 500px;
  padding: 15px;
  opacity: 1;
}

@media (max-width: 800px) {
  .duvidas-header {
    font-size: 16px;
    padding: 10px;
  }

  .duvidas-content {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .duvidas-header {
    font-size: 16px;
    padding: 8px;
  }

  .duvidas-content {
    font-size: 14px;
  }
}
/* --- */

/* Section Como Comprar */
.comprar {
  background: var(--white-2);
  color: var(--black-primary);
}

.title-bar-2 {
  position: absolute;
  width: 130px;
  top: 35px;
  height: 2px;
  background: var(--green-primary);
}

.desc {
  font-size: 18px;
}

.steps-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.step-home {
  display: flex;
  gap: 10px;
}

.step-home span {
  background: var(--dark-light);
  color: var(--white-primary);
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  border-radius: 6px;
  height: 42px;
  display: flex;
  align-items: center;
}

.step-info p {
  font-size: 20px;
  color: var(--black-primary);
}

.step-info p:last-child {
  font-size: 16px;
  margin-top: -10px;
}

#next_step_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#next_step_button:disabled:hover {
  background: var(--green-light);
}

@media (max-width: 768px) {
  .steps-home {
    display: block;
    margin-top: 20px !important;
  }

  .step-info p:last-child {
    font-size: 14px;
  }
}
/* --- */

/* Section ainda tenho duvidas */
.ainda-duvidas {
  background: var(--green-light-2);
  position: relative;
  padding-bottom: 8rem;

  /*padding-bottom: 15rem;*/
}

.ainda-duvidas a {
  background: var(--black-primary);
  color: var(--white-primary);
  font-size: 16px;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
}

.ainda-duvidas a:hover {
  background: var(--dark-blue);
}

.novidades {
  position: absolute;
  bottom: -140px;
}

/*
.newsletter-form {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.04);
  padding: 2rem;

  width: 90%;
  margin: auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-col {
  flex: 1;
  min-width: 250px;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-blue {
  color: blue;
  font-weight: bold;
}

.assistant-message {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.assistant-image {
  width: 3rem;
  height: 3.75rem;
}

.assistant-text {
  font-size: 0.875rem;
  border: 1px solid var(--dark-blue);
  padding: 0.75rem;
  border-radius: 0.25rem;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.terms-checkbox label {
  font-size: 0.75rem;
}

button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--green-light);
  color: var(--black-primary);
  border: none;
  border-radius: 0.25rem;
  font-weight: bold;
  cursor: pointer;
}

.success-message {
  color: green;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .ainda-duvidas {
    padding-bottom: 45rem;
  }

  .novidades {
    bottom: -60px;
  }

  .form-row {
    flex-direction: column;
  }
}*/

/* --- */

/* Página de Categoria */

.section-voltar {
  background: var(--green-light);
  height: 80px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--dark-blue) !important;
  font-size: 20px !important;
  font-weight: bold;
}

a#nav-pagina-inicial-voltar {
  color: var(--dark-blue);
  text-decoration: none;
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

.results {
  display: flex;
  justify-content: space-between;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

ul.products {
  padding-inline-start: 0;
}

.woocommerce ul.products::before {
  display: none;
}

.custom-product-item {
  margin-bottom: 30px;
}

.product-professor.d-flex.justify-content-center.mt-2 img {
  object-fit: contain;
}

@media (max-width: 991px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .products {
    grid-template-columns: repeat(1, 1fr);
  }

  a#nav-pagina-inicial {
    display: none;
  }
}

@media (max-width: 575px) {
  .custom-product-item {
    width: 100%;
  }
}

/* --- */

/* Section Página de Contato */
section.content-contato {
  background: #f6f6f6;
}

.input-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.input-item {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.input-item label {
  margin-bottom: 1rem;
}

.input-item input,
.input-item select,
.input-item textarea {
  border: none;
  border-radius: 6px;
  padding: 8px;
}

#select-input,
#textarea-input {
  width: 100%;
}

.form-duvidas-contato button {
  margin-top: 15px;
  background: var(--green-light);
  color: var(--black-primary);
  font-weight: bold;
  padding: 10px;
  padding-inline: 70px;
  border-radius: 6px;
  border: none;
}

.form-duvidas-contato button:hover {
  background: var(--green-primary);
}

.success-message {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 15px;
  margin: 10px 0;
  border-radius: 4px;
}

.error-message {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 15px;
  margin: 10px 0;
  border-radius: 4px;
}

@media (max-width: 990px) {
  .input-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-contato img {
    display: none;
  }
}
/* --- */

.price-preview {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 4px;
}

.total-price {
  font-size: 1.2em;
  font-weight: bold;
  color: #2196f3;
}

.price-info {
  margin: 5px 0;
  color: #666;
}

/* Estilos Página de Checkout */

.woocommerce-billing-fields {
  padding: 30px 20px;
  border: 1px solid #0000001a;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 8px;
}

.woocommerce-billing-fields input {
  padding: 8px;
}

.woocommerce-checkout-review-order {
  padding: 30px 20px;
  border: 1px solid #0000001a;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 8px;
}

.woocommerce-checkout-review-order h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--black-primary);
}

.woocommerce-checkout-review-order-table .product-image {
  width: 160px;
}

.woocommerce-checkout-review-order-table .product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.woocommerce-terms-and-conditions-wrapper {
  display: none;
}

.order-items {
  height: 250px;
  overflow-y: auto;
}

.cart_item {
  border-bottom: 1px solid #dedede;
  padding-bottom: 10px;
}

.product-name {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.product-name img {
  border-radius: 6px;
  max-width: 130px;
}

.product-info {
  flex: 1;
  color: var(--black-primary);
}

.product-info-wrapper {
  display: flex;
  width: 100%;
  /*justify-content: space-between;*/
  margin-bottom: 15px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 15px;
  gap: 15px;
}

.product-details-checkout {
}

.card-price-checkout {
  color: var(--black-primary);
  font-weight: bold;
}

.card-price-checkout span {
  background: none;
  font-size: 14px;
  border-radius: 0;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  height: 0px;
  width: auto;
  color: var(--black-primary) !important;
}

.pix-price-checkout {
  font-weight: bold;
  color: var(--dark-light) !important;
}

.pix-price-checkout span {
  background: none;
  font-size: 16px;
  border-radius: 0;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  height: 0px;
  width: auto;
  color: var(--dark-light) !important;
}

.installments {
  font-size: 14px;
  color: var(--black-primary);
}

.product-total {
  font-weight: bold;
}

.product-subtotal {
  font-weight: bold;
  font-size: 18px;
  margin-left: auto;
}

.product-quantity {
  display: none;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  margin-top: 5px;
  padding-top: 10px;
}

.total-value {
  font-size: 30px;
}

.steps-wrapper {
  margin-bottom: 15px;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 20px;
}

.step-item {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.step-bar {
  width: 100%;
  height: 10px;
  background: #eee;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.step-bar.active {
  background: var(--green-light);
}

.back-step {
  margin-bottom: 20px;
}
.billing-step {
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

.billing-step h3 {
  font-weight: bold;
}

.billing-step.hiding {
  opacity: 0;
  transform: translateX(-20px);
}

.billing-step.showing {
  opacity: 1;
  transform: translateX(0);
}

#step-title,
#step-title-2 {
  transition: opacity 0.3s ease;
}

#step-title-2 {
  display: none;
}

.step-3 {
  width: 100%;
  height: 10px;
  background: #eee;
  transition: background-color 0.3s ease;
}

#billing_step_3 {
  transition: all 0.3s ease;
}

/* Estilos - Checkout - Métodos de Pagamento */
ul.wc_payment_methods.payment_methods.methods {
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

ul.wc_payment_methods.payment_methods.methods li {
  list-style: none;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 8px;
}

p.form-row.form-row-wide.woocommerce-validated {
  display: flex;
  flex-direction: column;
}

.options-payments {
  display: flex;
  align-items: center;
  gap: 10px;
}

.options-payments label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.zero-total-message {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-left: 4px solid #16f9b9;
  border-radius: 4px;
}

.zero-total-message p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

#place_order.free-order {
  background-color: #16f9b9;
}

fieldset#wc-pagbank_credit_card-cc-form {
  margin-top: 10px;
}

fieldset#wc-pagbank_credit_card-cc-form input {
  border-radius: 4px;
  border-left: 1px solid #f4f4f4;
  border-top: 1px solid #f4f4f4;
  border-right: 1px solid #f4f4f4;
  border-bottom: 1px solid rgba(46, 46, 51, 0.32);
  background: #f4f4f4;
  padding: 5px;
  width: 100%;
  color: var(--black-primary);
  font-size: 1rem !important;
}

ul.wc_payment_methods.payment_methods.methods li select {
  cursor: pointer;
}
/* --- */

span.woocommerce-terms-and-conditions-checkbox-text {
  font-size: 15px;
}
.terms-link {
  font-weight: bold;
  text-decoration: underline;
  color: #001be9;
}
.terms-link:hover {
  color: #1e19c1;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #fff;
  border: 0.125rem solid #ccc;
  border-radius: 0.25rem;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  transition: 0.125s transform ease-in-out;
  box-shadow: inset 1rem 1rem #fff;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"]:checked {
  background-color: var(--green-primary);
  border-color: var(--green-primary);
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"]:disabled {
  opacity: 0.25;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"]:focus {
  border-color: var(--green-primary);
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox
  input[type="checkbox"]:focus
  + label {
  color: var(--green-primary);
}

.validation-loading {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
}

.spinner-small {
  width: 1rem;
  height: 1rem;
}

.spinner-border {
  border: 3px solid var(--green-primary) !important;
  border-right-color: transparent !important;
  width: 25px !important;
  height: 25px !important;
}

.field-validation-error {
  color: #dc3545;
  font-size: 0.875em;
  margin-top: 5px;
  display: block;
}

.woocommerce-invalid {
  border-color: #dc3545 !important;
}

.form-row {
  position: relative;
}

.form-row label {
  display: flex;
  align-items: center;
}

.form-row.woocommerce-invalid label::after {
  content: "Campo obrigatório";
  color: #dc3545;
  font-size: 0.75em;
  margin-left: auto;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.woocommerce-invalid {
  animation: shake 0.6s ease-in-out;
}

.validation-error-container {
  margin-top: 10px;
  padding: 15px;
  border-radius: 4px;
  background-color: #fff3f3;
  border: 1px solid #ffcdd2;
}

.validation-error-container .retry-button {
  margin-top: 10px;
  padding: 5px 15px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.validation-error-container .retry-button:hover {
  background-color: #c82333;
}

.woocommerce-NoticeGroup,
.woocommerce-NoticeGroup-checkout,
.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  display: none !important;
}

.toast-success {
  background: linear-gradient(to right, #16f9b9, #14e3aa) !important;
  color: var(--dark-blue) !important;
  font-weight: bold !important;
  box-shadow: 0 3px 10px rgba(22, 249, 185, 0.2);
}

.toast-success button {
  color: var(--dark-blue);
}

.toast-error {
  background: linear-gradient(to right, #f44336, #e53935) !important;
  box-shadow: 0 3px 10px rgba(244, 67, 54, 0.2);
}

.toast-info {
  background: linear-gradient(to right, #2196f3, #1e88e5) !important;
  box-shadow: 0 3px 10px rgba(33, 150, 243, 0.2);
}

/* Estilo para o botão de fechar do toast */
.toastify .toast-close {
  opacity: 0.7;
  padding: 0 5px;
}

.toastify .toast-close:hover {
  opacity: 1;
}

.toastify {
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.terms-row {
  position: relative;
  padding-bottom: 20px;
  padding: 10px !important;
}

.terms-row:not(.validated) {
  border: 1px solid #ea4335;
  border-radius: 6px;
  padding: 10px !important;
}

.label-terms {
  display: flex;
  align-items: center;
  gap: 8px;
}

.required-message {
  display: none;
  color: #ea4335;
  font-size: 12px;
  position: absolute;
  bottom: -25px;
  left: 0;
}

abbr.required {
  color: #ea4335;
  text-decoration: none !important;
}

.terms-row:not(.validated) .required-message {
  display: block;
}

button.button-model {
  padding: 8px;
  padding-inline: 30px;
  border-radius: 6px;
  color: var(--dark-blue);
  background: var(--green-light);
  border: none;
  font-weight: bold;
}

button.button-model:hover {
  background: var(--green-primary);
}

button#place_order {
  padding: 8px;
  padding-inline: 30px;
  border-radius: 6px;
  color: var(--dark-blue);
  background: var(--green-primary);
  border: none;
  font-weight: bold;
  width: 100%;
}

button#place_order:hover {
  background: var(--green-light);
}

.checkout-coupon-form {
  margin-top: 20px;
  margin-bottom: 20px;
  /* padding: 30px 0px;
  background-color: #F4F4F4;*/
}

.checkout-coupon-form form {
  display: flex;
  flex-direction: column;
}

.coupon-inputs {
  display: flex;
  gap: 10px;
}

.checkout-coupon-form p {
  margin-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.checkout-coupon-form input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

.checkout-coupon-form button {
  width: 100%;
  padding: 8px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  background: var(--green-light);
  cursor: pointer;
  color: var(--black-primary);
}

.checkout-coupon-form button:hover {
  background: var(--green-primary);
}

.cart-discount {
  margin-top: 25px;
}

.total-value-desconto {
  display: flex;
  justify-content: space-between;
}

.total-label a {
  font-weight: bold;
}

.total-desconto-coupon {
  font-weight: bold;
}

.total-desconto-coupon a {
  display: none;
}

a.woocommerce-remove-coupon {
  color: #ea4335;
  text-decoration: none;
}

p.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated {
  display: none;
}

.blockUI.blockOverlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgb(255 255 255 / 56%) !important;
  opacity: 0.3;
  z-index: 99999 !important;
}

.blockUI.blockMsg {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: transparent !important;
  border: none !important;
  z-index: 100000 !important;
  text-align: center;
  color: var(--black-primary) !important;
  background: #fff !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blockUI.blockMsg.blockElement {
  display: block;
}

.loading-spinner {
  text-align: center;
}

.loading-spinner .spinner {
  margin: 0 auto 10px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #16f9b9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#woocommerce-order-items .description {
  display: none !important;
}

@media (max-width: 768px) {
  .woocommerce-checkout-review-order {
    margin-top: 2rem;
  }

  button#place_order {
    margin-top: 15px;
  }

  .blockUI.blockMsg {
    width: 70%;
  }
}

/* --- */

/* Página de Finalizacao */

p.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated {
  display: none;
}

.agradecimento-card {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -51vw;
  margin-right: -50vw;
  background: #f5f9ff;
  text-align: center;
  color: var(--black-primary);
  padding: 50px 0;
  margin-top: -30px;
}

.agradecimento-card > * {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.card-metodo-review {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.agradecimento-card h2 {
  font-size: 30px;
  font-weight: bold;
}

.agradecimento-card p {
  display: inline-flex;
  gap: 10px;
}

.card-metodo-review:not(.is-pix) {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "review detalhes"
    "review passos";
}

.card-metodo-review:not(.is-pix) .card-review-itens {
  grid-area: review;
}

.card-metodo-review:not(.is-pix) .card-detalhes-pedido {
  grid-area: detalhes;
}

.card-metodo-review:not(.is-pix) .proximos-passos-order {
  grid-area: passos;
}

.card-metodo-review.is-pix {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "pix review"
    "detalhes passos";
}

.card-metodo-review.is-pix .pagbank-pix {
  grid-area: pix;
}

.card-metodo-review.is-pix .card-review-itens {
  grid-area: review;
}

.card-metodo-review.is-pix .card-detalhes-pedido {
  grid-area: detalhes;
}

.card-metodo-review.is-pix .proximos-passos-order {
  grid-area: passos;
}

.pagbank-pix {
  border: 2px solid var(--green-primary) !important;
  background: #16f9b93d;
  border-radius: 8px;
  color: var(--black-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

.pagbank-pix h3 {
  font-weight: bold;
  font-size: 16px;
  margin-right: auto;
}

.pagbank-pix ol {
  margin-right: auto;
}

.pagbank-pix ol li {
  font-size: 14px;
}

.pagbank-pix hr:first-of-type,
.pagbank-pix hr:first-of-type + h3,
.pagbank-pix hr:first-of-type + h3 + p,
.pagbank-pix hr:first-of-type + h3 + p + ol {
  display: none;
}

.pix-copy-and-paste {
  margin-top: 10px;
}

.pix-copy-and-paste input {
  background-color: var(--white-primary);
  border: 2px solid #e0e7f2;
  border-radius: 8px;
  width: 421px;
  height: 40px;
}

.pix-copy-and-paste button {
  background: var(--green-primary);
  border: none;
  font-weight: bold;
  padding-inline: 20px;
  border-radius: 8px;
}

.pix-copy-and-paste button:hover {
  background: var(--green-light);
}

.pix-detalhes-status {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}

.pagbank-pix hr:last-of-type,
.pagbank-pix hr:last-of-type + h3,
.pagbank-pix hr:last-of-type + h3 + p {
  display: none;
}

.pagbank-pix img {
  max-width: 235px !important;
}

.card-review-itens {
  padding: 20px;
  border: 2px solid #e0e7f2;
  border-radius: 8px;
  width: 100%;
}

.card-review-itens .woocommerce-customer-details {
  font-size: 14px;
}

.card-review-itens h4 {
  font-size: 16px;
  color: var(--black-primary);
  font-weight: bold;
}

.card-review-itens h2 {
  font-size: 14px;
  color: var(--black-primary);
  font-weight: bold;
}

.card-review-itens ul {
  padding-left: 0;
}

.card-review-itens ul li {
  list-style: none;
  font-size: 14px;
}

.card-detalhes-pedido {
  padding: 20px;
  border: 2px solid #e0e7f2;
  border-radius: 8px;
  width: 100%;
  color: var(--black-primary);
}

.card-detalhes-pedido h2 {
  font-size: 16px;
  font-weight: bold;
}

.proximos-passos-order {
  width: 100%;
}

.proximos-passos-order-card {
  padding: 20px;
  border: 2px solid var(--green-primary) !important;
  background: #16f9b93d;
  border-radius: 8px;
  width: 100%;
  color: var(--black-primary);
  margin-top: 30px;
}

.proximos-passos-order-card h2 {
  font-size: 16px;
  font-weight: bold;
}

.proximos-passos-order-card p {
  font-size: 14px;
}

.proximos-passos-order a {
  text-decoration: none;
  color: var(--black-primary);
  font-size: 14px;
  border: 2px solid #e0e7f2;
  background-color: #eaedec;
  display: block;
  width: 100%;
  border-radius: 8px;
  padding: 13px;
  text-align: center;
  font-weight: bold;
}

.proximos-passos-order a:hover {
  background: #dfdfdf;
}

.metodo-pagamento-detalhes {
  margin: 20px 0;
  font-size: 14px;
}

.woocommerce-order-details__items {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.woocommerce-order-details__items a {
  text-decoration: none;
  color: var(--black-primary);
  cursor: auto;
}

.woocommerce-order-details__items .woocommerce-Price-amount {
  display: none;
}

ul.wc-item-meta {
  padding-left: 0;
  margin-bottom: 0;
}

ul.wc-item-meta:last-child {
  font-size: 13px;
}

ul.wc-item-meta li {
  list-style: none;
  display: flex;
  gap: 5px;
}

ul.wc-item-meta li span {
  font-weight: 400;
}

.woocommerce-order-details__content .woocommerce-order-details__totals {
  display: flex;
  flex-direction: column;
  margin-top: -10px;
  font-size: 14px;
}

.woocommerce-order-details__totals
  .woocommerce-order-details__total-row:first-child {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.woocommerce-order-details__totals
  .woocommerce-order-details__total-row:nth-child(2) {
  display: none;
}

.woocommerce-order-details__totals
  .woocommerce-order-details__total-row:last-child {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #f5f5f5;
  font-weight: bold;
}

@media (max-width: 990px) {
  .agradecimento-card {
    margin-top: -30px;
  }

  .agradecimento-card p {
    font-size: 14px;
    margin-top: 10px;
    gap: 0;
  }

  .card-metodo-review {
    display: block;
  }

  .card-review-itens {
    margin-top: 20px;
  }

  .card-detalhes-pedido {
    margin-top: 20px;
  }

  .woocommerce-order-details__content .woocommerce-order-details__totals {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .pagbank-pix .pix-copy-and-paste {
    display: block;
  }

  .pix-copy-and-paste input {
    width: 100%;
  }

  .card-detalhes-pedido-full {
    display: block;
  }

  .proximos-passos-order {
    margin-top: 20px;
  }

  ul.wc-item-meta li {
    display: block;
  }

  .woocommerce-order-details__content hr {
    margin-top: 30px;
  }
}

/* --Fim Página finalizacao */

.custom-coupon-container {
  margin-bottom: 20px;
}

.custom-coupon-container .checkout_coupon {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.custom-coupon-container .form-row {
  margin: 0;
  padding: 0;
}

.custom-coupon-container .input-text {
  width: 100%;
  margin-right: 10px;
}

.custom-coupon-container .button {
  white-space: nowrap;
}

.cart-prices {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cart-card-price {
  color: #333;
}

.cart-pix-price {
  color: #4caf50;
  font-weight: bold;
}

/* Templates Padrão */

.custom_add_to_cart_button_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-light);
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: bold;
  padding: 10.729px 15.326px;
  width: 250px;
  gap: 17px;
  border-radius: 6px;
}

.custom_add_to_cart_button_2:hover {
  background: var(--green-primary);
}

/* Fim Templates Padrão */

/* FOOTER */

#footer {
  background-color: #251d59;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

#footer a {
  text-decoration: none;
  color: var(--white-primary);
}

#footer a:hover {
  color: var(--grey) !important;
}

#footer ul li {
  list-style: none;
}

#footer .social {
  text-align: start;
}

.rede-social.mt-4.mb-4 {
  display: flex;
  gap: 13px;
}

#footer p {
  margin: 5px 0;
}

#footer .social-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

#footer .social-links a:hover {
  text-decoration: underline;
}

.col-md-2.cursos {
  text-align: start;
}

.cursos ul li {
  margin-top: 15px;
}

.col-md-2.suporte {
  text-align: start;
}

.suporte ul li {
  margin-top: 15px;
}

.extras {
  gap: 15px;
}

div#ra-widget-verified {
  border-radius: 6px;
}

.copy-1 {
  text-align: start;
}

.copy-2 {
  text-align: end;
}

@media (max-width: 768px) {
  /* #footer .social, .col-md-2.cursos, .col-md-2.suporte{
    text-align: center;
  }*/

  #footer .social,
  .col-md-2.cursos,
  .col-md-2.suporte {
    width: auto;
    align-items: center;
    justify-content: center;
    display: grid;
    margin: auto;
    margin-top: 0;
  }

  .rede-social.mt-4.mb-4 {
    align-items: center;
    justify-content: center;
  }

  .col-md-2.cursos ul {
    margin-block-start: 0;
    padding-inline-start: 0;
  }

  .col-md-2.suporte ul {
    margin-block-start: 0;
    padding-inline-start: 0;
  }

  .col-md-4.extras.d-flex.justify-content-end {
    justify-content: center !important;
    align-items: center;
  }

  .copy {
    margin-bottom: 45px;
  }

  .copy-1 {
    text-align: center;
  }

  .copy-2 {
    text-align: center;
    margin-top: 30px !important;
  }
}

/* FIM FOOTER */
