: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;
}
.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;
}

.utils-cart{
  display: flex;
  gap: 10px;
}

#continuar-comprando-cart{
  width: 100%;
  background: #dedede;
  padding: 10px;
  border-radius: 6px;
  color: var(--dark-blue);
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#continuar-comprando-cart:hover{
  background: #e9e9e9;
}

.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%;
  max-width: 600px;
  border-radius: 6px;
}
.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: 300px;
  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: none;
  }
}

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

  .desktop-logo {
    display: none;
  }

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

  .checkout-button{
    font-size: 13px;
  }

  #continuar-comprando-cart{
    font-size: 13px;
  }

  .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: none;
  }
  .search-container {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0;
    max-width: none;
    height: auto;
  }
  #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: 375px;
    height: 640px;
    right: -390px;
  }
}
/* --- */

.site-main {
  margin-top: 100px;
}

/* 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,
.banner-mobile {
  width: 100%;
  height: auto;
  display: block;
}

.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.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

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

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

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

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

/* 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;
}

/* --- */

/* 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;
  }

  .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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.step 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;
}

.step-bar {
  cursor: pointer;
}

@media (max-width: 768px) {
  .steps {
    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;
  margin-top: 105px;
}

a#nav-pagina-inicial {
  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);
  }
}

@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;
  }
}
/* --- */

/*Teste certificado */

.certificate-selection {
  margin: 20px 0;
}

.certificate-field {
  margin-bottom: 15px;
}

.certificate-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.certificate-field select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.price-preview {
}

.total-price {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--dark-blue);
}

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

.product-box {
  border: 1px solid var(--green-primary);
  padding: 30px 10px;
  display: flex;
  border-radius: 8px;
  border-left: 20px solid var(--green-primary);
}

.teste-box {
  display: flex;
}

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

.quantidade-itens-cert {
  display: flex;
  border: 1px solid #b9b9b9;
  border-radius: 6px;
}

input#certificate_quantity {
  border: 1px solid #b9b9b9;
  text-align: center;
}

.quantidade-itens-cert button {
  background: #fff;
  border: none;
  font-weight: bold;
  width: 25px;
}

.quantidade-itens-cert button:last-child {
  background: var(--green-light);
  color: #fff;
}

button.single_add_to_cart_button.button.alt {
  background: var(--green-primary);
  color: var(--black-primary);
  border-radius: 6px;
  font-weight: bold;
  border: none;
  padding: 10px;
  padding-inline: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.certificado-infos-prod h2 {
  font-size: 28px;
  font-weight: bold;
}

.certificado-images img {
  width: 220px;
  height: 150px;
}

.carousel-btn next-btn {
  display: none;
}
/* --- */

/* Estilos Checkout */

.page-checkout {
  margin-top: 10rem;
}

.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-prices {
}

.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-label a{
  font-weight: bold;
}

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

#continuar-comprando{
  display: block;
  width: 41%;
  margin-top: 10px;
  background: #dedede;
  padding: 10px;
  padding-inline: 30px;
  border-radius: 6px;
  color: var(--dark-blue);
  border: none;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#continuar-comprando:hover{
  background: #e9e9e9;
}

.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;
}

p#billing_uf_field{
  display: none;
}

body.checkout-step-3 #continuar-comprando {
  display: none !important;
}

/* 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;
}

/* Animação de entrada do toast */
.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;
}

.terms-row.validated {
  border: none !important;
  padding: 0 !important;
}

.terms-row.validated .required-message {
  display: none !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;
}
.grouped-fields {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.grouped-fields .form-row {
  flex: 1;
  min-width: 45%;
}

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-desconto-coupon {
  font-weight: bold;
}

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

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

@media(max-width:1400px){
  #continuar-comprando{
    width: 60%;
  }
}

@media(max-width:990px){
  #continuar-comprando{
    width: 80%;
  }
}

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

  .page-checkout {
    margin-top: 8rem;
  }

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

  #continuar-comprando{
    width: 66%;
  }

  #customer_details{
    margin-top: 40px;
  }
}

/* --- */

/*teste certificadao */

.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;
}

/* 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;
  display: flex;
  align-items: center;
}

.copy-2  {
    text-align: end;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

@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 */

/* CSS do produto Certificado */

/* 🚀 Estilos Customizados */
.container {
  /* max-width: 1200px;*/
  margin: 0 auto;
  padding: 0 20px;
}
.product-subtitle {
  font-family: "Almarai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #212236;
  margin-bottom: 10px;
}

.product-subtitle2 {
  font-family: "Almarai", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #212236;
  margin-bottom: 10px;
}
.product-title {
  font-family: "Almarai", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #212236;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
}
.product-content {
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.extra-section {
  margin-top: 40px;
  padding: 30px;
  background: #f2f2f2;
  text-align: center;
}

/* Sessão Header Produto */

.custom-product-header {
  background-color: #f7f9fc; /* Cor de fundo suave */
  overflow: hidden;
  margin: 130px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
  justify-content: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px 10px;
  flex-direction: column;
}

.container {
  /** max-width: 1200px;*/
  margin: 0 auto;
}

.product-subtitle {
  font-family: "Almarai", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #212236;
  margin-bottom: 10px;
}

.product-title {
  font-family: "Almarai", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #212236;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
}

/* ✨ Estilos para os ícones decorativos */
.sparkle {
  font-size: 60px;
  color: #5a8dee;
  position: absolute;
  opacity: 0.8;
  animation: sparkle-animation 1.5s infinite alternate;
}

.sparkle-left {
  left: 20%;
  top: 5%;
  color: #12e2a0;
}

.sparkle-right {
  right: 0%;
  bottom: 0%;
}

@keyframes sparkle-animation {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* 🚀 Seção do Produto - Layout em Duas Colunas */
.product-section {
  background-color: #ffffff;
  position: relative;
  top: -60px;
  padding: 40px 5px;
}

.container {
  /* max-width: 1200px;*/
  margin: 0 auto;
}

/* ✅ Grid para alinhar os elementos em duas colunas */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* 🌟 Estilo da descrição do produto */
.product-description {
  max-width: 550px;
}

.product-description h2 {
  font-family: "Almarai", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #212236;
}

.product-description .highlight {
  color: #477ffe;
}

.product-description p {
  font-size: 14px;
  color: #212236;
}

.product-features {
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
}

.product-features li {
  font-size: 18px;
  color: #212236;
  margin-bottom: 8px;
}

/* 🚀 Mensagem de Aviso */
.warning-message {
  background-color: #ffe5e5;
  color: #d9534f;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🚚 Informações de Frete Grátis */
.shipping-info {
  margin-top: 30px;
  font-size: 16px;
  color: #212236;
  background: #f2f2f2;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 450px;
  font-weight: 600;
}

.shipping-info a {
  color: #477ffe;
  text-decoration: none;
}

/* 🌟 Responsividade */
/* Títulos Responsivos */
@media (max-width: 1024px) {
  .product-subtitle {
    font-size: 20px;
  }
  .product-title {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .product-subtitle {
    font-size: 18px;
  }
  .product-title {
    font-size: 40px;
  }
  .sparkle-left {
    left: 0%;
    top: 5%;

  }
}

@media (max-width: 480px) {
  .product-subtitle {
    font-size: 13px;
  }
  .product-title {
    font-size: 30px;
  }
  .product-description h2 {
    font-size: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-description p {
    text-align: center;
  }
  .product-features {
    text-align: center;
  }
}

/* 
  =========================
  ITEM DE DEPOIMENTO
  =========================
*/

/* -------------------- Sessão Principal -------------------- */
.sessao-certificado {
  max-width: 1200px;
  margin: 40px auto;
  padding: 60px 0px;
  font-family: Arial, Helvetica, sans-serif;
}

.conteudo-superior {
  display: flex;
  align-items: flex-start; /* Alinha vídeo e texto no topo */
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Ajusta em telas menores */
}

/* -------------------- Vídeo (coluna esquerda) -------------------- */
.video-container {
  flex: 1 1 45%;
  min-width: 320px;
  position: relative; /* Para posicionar a tag do vídeo */
}

/* Responsivo 16:9 */
.video-wrapper {
  position: relative;
  width: 85%;
  padding-bottom: 48.25%; /* 16:9 */
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Tag do vídeo (ajustada no canto inferior esquerdo) */
.label-video {
  position: absolute;
  bottom: -15px;
  left: 120px;
  border-radius: 25px;
  background: var(--11, #16f9b9);
  color: #000000;
  padding: 8px 30px;
  border-radius: 22px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
  .video-container {
    min-width: 320px;
  }

  .label-video {
    padding: 3px 20px;
    font-size: 13px;
    bottom: -10px;
    left: 90px;
  }
  .conteudo-superior {
    gap: 30px;
    align-items: center;
  }

}

/* -------------------- Texto (coluna direita) -------------------- */
.texto-container {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Título e subtítulo conforme solicitado */
.texto-container h2 {
  color: #ffb103;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.texto-container .subtitulo {
  color: #2f327d;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/* Parágrafos de texto */
.texto-container p {
  font-size: 14px;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* -------------------- Carrossel -------------------- */
.carrossel-container {
  margin-top: 30px;
  position: relative;
  overflow: hidden; /* esconde itens que saem da área visível */
  width: 100%;
}

.carrossel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Ajuste aqui a largura/borda do carrossel */
.carrossel-item {
  width: 227px;
  height: 130px; /* Largura conforme o exemplo */
  margin-right: 14px; /* Espaçamento entre itens */
  flex-shrink: 0;
  background-color: #fff;
  border: 1px solid #1e3a93; /* Exemplo de borda (ajuste cor) */
  border-radius: 24px; /* Borda arredondada */
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.carrossel-item h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.carrossel-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Bolinhas (bullets) de navegação */
.carrossel-bullets {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.carrossel-bullets .bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffb103; /* mesma cor do título */
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carrossel-bullets .bullet.active {
  background-color: #ffb103; /* bolinha ativa */
}

/* -------------------- Responsividade -------------------- */
/* Responsividade para a sessão de certificado */
@media (max-width: 1024px) {
  .texto-container h2,
  .texto-container .subtitulo {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  /* Layout em coluna para telas menores */
  .conteudo-superior {
    flex-direction: column;
  }

  /* Vídeo e texto ocupando 100% */
  .video-container,
  .texto-container {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Ajuste do tamanho dos títulos */
  .texto-container h2,
  .texto-container .subtitulo {
    font-size: 22px;
  }

  /* Ajuste da largura dos itens do carrossel */
  .carrossel-item {
    width: 200px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .texto-container h2,
  .texto-container .subtitulo {
    font-size: 20px;
  }

  /* Texto menor em telas bem pequenas */
  .texto-container p {
    font-size: 12px;
  }

  /* Itens do carrossel ainda mais estreitos */
  .carrossel-item {
    width: 160px;
    margin-right: 8px;
  }
}

/* 
  =========================
  SEÇÃO DE AVALIAÇÕES
  =========================
*/
.reviews-section {
  font-family: "Poppins", sans-serif;
  width: 100%;
  min-height: 500px;
  background: #f5f5ff;
  position: relative;
  padding: 60px 0;
  border-left: 4px solid #12e2a0;
  box-sizing: border-box;
}
/* ÍCONES DECORATIVOS */
.icon-star-left,
.icon-star-right,
.icon-star-bottom {
  position: absolute;
  z-index: 1;
}

/* Ajuste conforme seu layout */
.icon-star-left {
  top: 100px;
  left: 50px;
}
.icon-star-right {
  top: 20px;
  right: 100px;
  width: 70px;
  height: 75px;
}
.icon-star-bottom {
  bottom: 5px;
  left: 300px;
  width: 70px;
  height: 75px;
}

/* TÍTULO */
.reviews-title {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #212236;
  margin-bottom: 40px;
  z-index: 2; /* Fica acima dos ícones */
}


@media (max-width: 768px) {

  .icon-star-right {
    width: 40px !important;
    height: 30px!important;
    top: 1px;
    right: 330px;

  }
  .icon-star-bottom {

    width: 40px !important;
    height: 50px !important;
    left: 330px;
  }

        
}

/* 
  =========================
  CONTAINER DO CARROSSEL
  =========================
*/
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* BOTÕES (ANTERIOR/PRÓXIMO) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(90deg, #477ffe 0%, #12e2a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botão anterior */
.prev-btn {
  left: -60px; /* Ajuste conforme layout */
}

/* Botão próximo */
.next-btn {
  right: -60px; /* Ajuste conforme layout */
}

/* 
  =========================
  TRACK CONTAINER (FADE)
  =========================
*/
.carousel-track-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 280px; /* Altura para acomodar cards */
}

.carousel-track-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px; /* Largura do fade */
  height: 100%;
  background: linear-gradient(to left, #f5f5ff 0%, rgba(245, 245, 255, 0) 100%);
  pointer-events: none;
}

/* 
  =========================
  CAROUSEL TRACK (LINHA DE CARDS)
  =========================
*/
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: flex-start;
}

/* 
  =========================
  CADA CARD DE AVALIAÇÃO
  =========================
*/
.review-card {
  position: relative;
  width: 620px; /* Largura fixa para 2 cards visíveis em ~1240px */
  min-height: 265px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  margin-right: 20px; /* Espaço entre cards */
  padding: 50px;
  border-left: 15px solid #12e2a0; /* Padding para conteúdo mais centralizado */
  /* Caso queira borda no card inteiro, use: border: 2px solid #12E2A0; */
}

/* BARRA (BORDA) ANTES DO TEXTO PRINCIPAL */
.review-text {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  /* Barra vertical na esquerda do texto */
  border-left: 1px solid #bdbdd1;
  padding-left: 16px;
  margin-bottom: 30px;
}

/* 
  =========================
  RODAPÉ DO CARD
  =========================
*/
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* AVATAR + NOME (lado esquerdo) */
.review-user {
  display: flex;
  align-items: center;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #477ffe;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 0.9rem;
}

.user-name {
  font-weight: 600;
  color: #212236;
  font-size: 14px;
}

/* ESTRELAS EM CIMA, CERTIFICADOS EMBAIXO */
.review-stars-cert {
  display: flex;
  flex-direction: column; /* Coloca as estrelas e "X Certificados" em linhas diferentes */
  align-items: flex-end; /* Alinha à direita */
}

.stars {
  color: #ffd700; /* Cor das estrelas */
  margin-bottom: 5px; /* Espaço entre estrelas e texto de certificados */
}

.star {
  margin-right: 2px;
}

.cert-count {
  font-size: 14px;
  color: #555;
}

/* 
  =========================
  RESPONSIVIDADE
  =========================
*/
@media (max-width: 768px) {
  .reviews-section {
    /* Remove a altura mínima para melhor adaptação no mobile */
    min-height: auto;
    /* Reduz o padding vertical para ocupar menos espaço */
    padding: 40px 0;
  }

  /* Reduz o tamanho dos botões para melhor visualização no mobile */
  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  /* Reposiciona os botões (ajuste os valores conforme necessário) */
  .prev-btn {
    left: -10px;
  }

  .next-btn {
    right: -10px;
  }
}

/* 
  =========================
  SEÇÃO DE FAQ
  =========================
*/
.faq-section {
  font-family: "Poppins", sans-serif;
  background: #fff;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  color: #212236;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* GRID DE 2 COLUNAS PARA AS PERGUNTAS */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 80%;
  margin: 0 auto;
}

/* Cada coluna */
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ITEM DE FAQ */
.faq-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 600;
  color: #212236;
  text-align: left;
}

.plus-icon {
  font-size: 1.5rem;
  color: #477ffe;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .plus-icon {
  transform: rotate(45deg);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-title {
    font-size: 1.5rem;
  }
}

  /* 
  =========================
  Layout Sessão Certificadoo
  =========================
*/

  .price-container {
    font-family: "Arial", sans-serif;
    max-width: 300px;
    background: #ffffff;
    margin: 20px 0px;
    line-height: 15px;
  }

  .pix-section {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .pix-price-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .pix-value {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
  }

  .pix-label {
    color: #212236;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .pix-icon {
    width: 20px;
    height: 20px;
    margin-left: 6px;
  }

  .card-section {
    align-items: baseline;
    gap: 8px;
    font-size: 16px;
  }

  .card-text {
    color: #666666;
  }

  .card-value {
    font-weight: 700;
    color: #000000;
  }

  .card-label {
    color: #666666;
    margin-right: 5px;
  }

  .installment {
    color: #1a73e8;
    font-weight: 500;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .teste-box.col-md-12 {
    display: block;
    margin: auto;
  }
}

.price-container {
  font-family: "Arial", sans-serif;
  max-width: 300px;
  background: #ffffff;
  margin: 20px 0;
  line-height: 15px;
}

.pix-section {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.pix-price-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pix-value {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
}

.pix-label {
  color: #212236;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pix-icon {
  width: 20px;
  height: 20px;
  margin-left: 6px;
}

.card-section {
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
}

.card-text {
  color: #666;
}

.card-value {
  font-weight: 700;
  color: #000;
}

.card-label {
  color: #666;
  margin-right: 5px;
}

.installment {
  color: #1a73e8;
  font-weight: 500;
  font-size: 14px;
}

.GoogleAvaliacao {
  max-width: 1000px;
  margin: 0 auto;
}

.ti-reviews-container-wrapper{
  max-width: 100%;
}

/* --- */
/* Imagem Certificado */


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

.agradecimento-card {
  text-align: center;
  color: var(--black-primary);
  padding: 50px 0;
  margin-top: -30px;
}

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

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

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

.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;
  font-size: 14px;
}

.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);
}

.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;
}

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

.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 .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: 0;
  }

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

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

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

@media (max-width: 768px) {
  .card-metodo-review {
    display: block;
  }

  .pagbank-pix .pix-copy-and-paste {
    display: block;
  }

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

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

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

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

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



.product-section2 {
  justify-self: center;
  width: 50%;
  padding: 60px 0;
}

.container_produto2 {
  max-width: 1320px;
  display: flex;
  justify-content: center;
}

.form-select {
  width: 55%;
}

.wp-admin .only-front {
  display: none !important;
}

.toastify a {
  display: none !important;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

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


.payment_box.payment_method_pagbank_pix p{
font-size: 12px;
}

.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); }
}

@media(max-width:768px){
  .blockUI.blockMsg{
    width: 70% !important;
  }
}

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


 .Tittle-avaliacao{
  display: flex;
  justify-content: center;
 }

 .Subtittle-avaliacao {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
  bottom: 35px;
 }


 .certificado-infos-prod_2 {
 
   padding-left: 50px !important;

 }

 .main-certificado2 {
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.main-certificado2 img {
  width: 100%;
  height: auto;
  display: block;
}

.agradecimento-card {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -51vw;
  margin-right: -50vw;
  padding: 70px 0;
  background: #F5F9FF;
}

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

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

@media(max-width:768px){
  .card-metodo-review{
    display: block;
  }
}

.custom-container {
  text-align: center;
  margin-top: 10px;
}

/* Imagem maior */
.custom-big-image {
  width: 80%;
  max-width: 800px;
  cursor: pointer;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

/* Imagem menor */
.custom-small-image {
  width: 30%;
  max-width: 300px;
  cursor: pointer;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

/* -------------------------------------
   Modal (Lightbox) customizado
   ------------------------------------- */
.custom-modal {
  display: none; /* Oculto por padrão */
  position: fixed;
  z-index: 999999; /* Garante que fique acima de outros elementos */
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Ativa scroll, se necessário */
  background-color: rgba(0, 0, 0, 0.9); /* Fundo preto com opacidade */
}

.custom-modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 40%;
  max-width: 1200px;
}

/* Botão de fechar (X) */
.custom-close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.custom-close:hover,
.custom-close:focus {
  color: #999;
  text-decoration: none;
}

/* Esconde todos os slides por padrão */
.custom-slide {
  display: none;
}

/* Texto de numeração ("1 / 2", etc.) */
.custom-numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Contêiner da legenda */
.custom-caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

/* Botões de navegação (anterior e próximo) */
.custom-prev,
.custom-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.custom-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.custom-prev:hover,
.custom-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Miniaturas */
.custom-row {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.custom-column {
  flex: 0 0 auto;
  margin: 0 2px;
}

.custom-demo {
  opacity: 0.6;
  max-width: 100px;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 5px;
}

.custom-demo.active,
.custom-demo:hover {
  opacity: 1;
}

/* Responsividade */
@media only screen and (max-width: 480px) {
  .custom-modal-content {
    width: 100%;
  }
  .custom-big-image {
    width: 100%;
  }
  .custom-small-image {
    width: 60%;
  }
  .custom-demo {
    max-width: 60px;
  }
  .teste-box {
  display: flex;
  flex-direction: column;
  }
  .product-section2 {
    width: 100%;
  }
  .texto-container h2, .texto-container .subtitulo {
    display: flex;
        justify-content: center;
  }
  .texto-container p {
  padding: 0px 30px;
  }

  .faq-section {
    font-family: "Poppins", sans-serif;
    background: #fff;
    padding: 0px 0px;
}

.product-description {
    padding-right: 0px !important;
}

.certificado-infos-prod_2 {
    padding-left: 40px ;
}

.certificado-infos-prod {
    padding-left: 40px ;
}


}
.product-description {
    padding-right: 90px;
}

.image-container {
      text-align: center;
      margin: 20px 0;
    }
    
    .instruction-text {
      color: #666;
      font-size: 14px;
      cursor: pointer;
    }


    .product-title-produto {
      font-size: 30px;
      font-family: almarai, sans-serif ;
    }


