@import url("../fonts/variable-fonts.css");
@import url("variables.css");

html,
body {
  scroll-behavior: smooth;
  padding-right: 0 !important;
  overflow: auto !important;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#page-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white); /* ou a cor de fundo desejada */
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  .loading-spinner {
    width: 75px;
  }
}

body {
  transition: all 0.5s;
  margin: 0 auto;
  font-family: var(--font-family-primary);
  font-weight: 400;
  color: rgb(52, 52, 52);
}

.permanent {
  font-family: var(--font-family-display);
}

body:not(.vazio) {
  transition: all 0.5s;
}

/* body.scroll:not(.vazio) {
  padding-top: 270px !important;
} */

body.attachment {
  padding: 0 !important;
}

.museo {
  font-family: var(--font-family-display);
}

p {
  margin: 0;
}

body img {
  max-width: 100% !important;
}

body.menor {
  padding-top: 95px !important;
}

ul {
  list-style: none;

  &.styled-list {
    list-style: circle;
    display: inline-flex;
    flex-direction: column;
    max-width: 480px;
    padding-left: 0;
    margin: 0 auto;

    li {
      font-size: 16px;
      font-weight: 400;
      margin-bottom: 8px;
    }
  }
}

.text-orange,
.text-orange a {
  color: var(--color-primary) !important;
}

.text-l-green,
.text-l-green a {
  color: var(--color-success) !important;
}

.text-d-green,
.text-d-green a {
  color: var(--color-success-dark) !important;
}

.text-wine,
.text-wine a {
  color: var(--color-wine) !important;
}

.text-blue,
.text-blue a {
  color: var(--color-secondary-light) !important;
}

.text-d-blue,
.text-d-blue a {
  color: var(--color-secondary-dark) !important;
}

.text-red,
.text-red a {
  color: var(--color-danger) !important;
}

.text-l-red,
.text-l-red a {
  color: var(--color-danger-light) !important;
}

.text-gray,
.text-gray a {
  color: var(--color-gray) !important;
}

.text-d-gray,
.text-d-gray a {
  color: var(--color-gray-dark) !important;
}

.text-l-gray,
.text-l-gray a {
  color: var(--color-gray-light) !important;
}

.text-yellow,
.text-yellow a {
  color: var(--color-warning) !important;
}

.text-black,
.text-black a {
  color: var(--color-black) !important;
}

.text-white,
.text-white a {
  color: var(--color-white) !important;
}

.text-black-2,
.text-black-2 a {
  color: var(--color-black-soft) !important;
}

.button-orange {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px 30px;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.5s;

  &:hover,
  &:focus,
  &:active {
    color: var(--color-primary) !important;
    text-decoration: none !important;
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
  }
}
.button-white {
  background-color: var(--color-white);
  color: #000;
  font-size: 14 px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.5s;
}

.button-white:hover {
  color: var(--color-white) !important;
  background-color: #000;
  text-decoration: none;
  border: 1px solid var(--color-white);
}

.button-transparent {
  background-color: transparent;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1px solid var(--color-white);
  border-radius: 100px;
  transition: all 0.5s;
}

.button-transparent:hover {
  background-color: var(--color-white);
  color: #000 !important;
  background-color: var(--color-white);
  text-decoration: none;
}

.titulo-maior::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 72px;
  height: 5px;
  background-color: rgba(124, 88, 78, 0.44);
}

.titulo-maior-center::before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  right: 0;
  margin: auto;
  width: 72px;
  height: 5px;
  background-color: #de9199;
}

.titulo-menor::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: rgba(124, 88, 78, 0.44);
}

.titulo-cinza::before {
  position: absolute;
  content: "";
  background-color: var(--color-gray-darker);
  width: 100%;
  height: 10px;
  bottom: -5px;
  left: -10px;
  z-index: -1;
}

.titulo-cinza-menor::before {
  position: absolute;
  content: "";
  background-color: var(--color-border-light);
  width: 72px;
  height: 5px;
  bottom: -25px;
  z-index: -1;
}

.titulo-wine::before {
  position: absolute;
  content: "";
  background-color: var(--color-wine-dark);
  width: 90px;
  height: 2px;
  bottom: -25px;
  z-index: -1;
}

/* HEADER */

section.header {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: auto;
  background-color: #000;
  transition:
    all 0.5s,
    top 1s;
}

section.header .menu-mobile {
  display: none;
}

section.header .round {
  width: 60px;
  height: 60px;
  box-shadow: 5px 9px 20px rgba(174, 10, 31, 0.1);
  background-color: var(--color-white);
  border-radius: 100%;
}

body.scroll .header {
  box-shadow: 9px 12px 20px 0px rgba(204, 204, 204, 0.466);
  position: fixed;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), #fecc02fb);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* body.scroll .header .col-lg-4 {
  margin-top: 5px !important;
}

body.scroll .header .logo {
  height: 100px;
}

body.scroll .header .padding-bottom-30 {
  padding-bottom: 5px !important;
}

body.scroll .header .logo a {
  transform: scale(0.5) translateY(-50%);
} */

/* FORMULARIO */

.formulario input:not([type="submit"]),
.formulario input[readonly],
.formulario select,
.formulario textarea {
  border-radius: 100px;
  border: 1px solid transparent;
  padding: 20px 30px;
  height: auto;
  color: #0f0f0f;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  background-color: #f5f5f5;
}

.formulario textarea {
  height: 135px;
}

.formulario input::-webkit-input-placeholder,
.formulario textarea::-webkit-input-placeholder {
  color: #0f0f0f;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  text-align: right;
}

.formulario input:-moz-placeholder,
.formulario textarea:-moz-placeholder {
  color: #0f0f0f;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  text-align: right;
}

.formulario input::-moz-placeholder,
.formulario textarea::-moz-placeholder {
  color: #0f0f0f;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  text-align: right;
}

.formulario input[type="submit"] {
  border: none !important;
}

.formulario .wpcf7-form-control-wrap {
  width: 100%;
}

.formulario select {
  appearance: none;
}

.formulario .select {
  position: relative;
  z-index: 1;
}

.formulario .select::after {
  content: url("../images/after-select.png");
  position: absolute;
  top: 35px;
  right: 20px;
}

/* WELLCOME */

section.wellcome::before {
  content: url("../images/icon-topo-esq.png");
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0px;
}

section.wellcome::after {
  content: url("../images/icon-topo-right.png");
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 0px;
}

/* POSTS */

.prospeccao {
  box-shadow: 6px 8px 20px 4px #333232;
  border-radius: 8px;
}

.prospeccao .imagem {
  height: 210px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 110%;
  border-radius: 8px 8px 0px 0px;
}

.prospeccao .infos {
  border-radius: 0px 0px 8px 8px;
}

.prospeccao .imagem .acoes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.8)
  );
  border-radius: 8px 8px 0px 0px;
}

.prospeccao .imagem .acoes .botoes {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.5s;
  opacity: 0;
}

.prospeccao:hover .imagem .acoes .botoes {
  opacity: 1;
}

.prospeccao .imagem .acoes .botoes .voto {
  background-color: var(--color-primary);
  position: relative;
  padding: 15px;
  border-radius: 42px;
  bottom: -20px;
  transition: all 0.5s;
}

.prospeccao .imagem .acoes .botoes .voto:hover {
  background-color: var(--color-white);
}

.prospeccao .imagem .acoes .botoes svg {
  width: 25px;
  height: 25px;
}

.prospeccao .imagem .acoes .botoes .voto svg path {
  fill: var(--color-white);
  transition: all 0.5s;
}

.prospeccao .imagem .acoes .botoes .voto:hover svg path {
  fill: #000;
}

.prospeccao .imagem .acoes .botoes .enviar {
  background-color: #cdd8eb;
  position: relative;
  padding: 15px;
  border-radius: 42px;
  bottom: -20px;
  margin-left: 10px;
  transition: all 0.5s;
}

.prospeccao .imagem .acoes .botoes .enviar:hover {
  background-color: var(--color-primary);
}

.prospeccao .imagem .acoes .botoes .enviar svg path {
  fill: var(--color-black);
  transition: all 0.5s;
}

.prospeccao .imagem .acoes .botoes .enviar:hover svg path {
  fill: var(--color-white);
}

/* ENVIE */

section.envie {
  background-color: var(--color-primary);
}

section.envie::before {
  content: "";
  background-image: url("../images/black-balls.png");
  width: 100%;
  height: 28px;
  position: absolute;
  top: -14px;
  left: 0;
}

section.envie::after {
  content: "";
  background-image: url("../images/orange-balls.png");
  width: 100%;
  height: 28px;
  position: absolute;
  bottom: -14px;
  left: 0;
}

section.envie .button-white {
  padding: 25px 40px;
}

/* VENCEDORES */

section.vencedores::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-vencedores.png");
  filter: opacity(0.4);
}

section.vencedores .titulo::before {
  content: url("../images/icon-vencedores.svg");
  position: absolute;
  z-index: 1;
  bottom: -100px;
  left: -100px;
}

.disclaimer {
  background-color: #f3f5f9;
  padding: 10px;
  border-radius: 20px;
}

/* AJUDAMOS */

section.ajudamos {
  background-color: #cdd8eb;
}

section.ajudamos .button-orange {
  padding: 25px 35px;
  font-size: 14px;
  font-weight: 700;
}

/* FAQ */

section.faq {
  background-color: #bdc9de;
  background-image: url("../images/bg-vencedores.png");
}

section.faq::before {
  content: "";
  background-image: url("../images/gray-balls.png");
  width: 100%;
  height: 28px;
  position: absolute;
  top: -14px;
  left: 0;
}

section.faq::after {
  content: url("../images/icon-faq.png");
  position: absolute;
  top: -40px;
  right: 0;
}

.lista-faqs > .card,
.lista-faqs > .card > .card-header {
  background-color: var(--color-white);
  border-radius: 8px !important;
}

.lista-faqs > .card > .card-header {
  padding: 20px;
  cursor: pointer;
}

.lista-faqs h4::after {
  content: url("../images/chevron-down.png");
  position: absolute;
  right: 0;
  top: 0;
}

/* CABEÇALHO */

.header__aneps {
  align-items: center;
  background-color: var(--color-white);
  display: flex;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 10;
  height: 90px;
}

.header__voltar-login {
  color: #2a3b5b !important;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none !important;
}

.header__voltar-login img {
  margin-right: 15px;
}

.header__logo {
  width: 140px;
}

body {
  padding-top: 94px;
}

body.admin-bar {
  padding-top: 62px;
}

/* RODAPÉ */

footer {
  background: #333f49;
  color: var(--color-white);
  font-size: 1.2em;
  line-height: 1.4;
}

.footer__logo {
  margin-left: -10px;
  padding: 20px;
  width: 170px;
  background: var(--color-white);
  margin-bottom: 40px;
}

.footer__social a,
.footer__social a:active,
.footer__social a:focus,
.footer__social a:visited,
.footer__social a:hover {
  display: inline-block;
}

.footer__social a:not(:first-child) {
  margin-left: 20px;
}

footer ul {
  margin-top: 20px;
  font-size: 0.8em;
}

footer nav ul {
  font-size: 1em;
}
footer nav ul a:hover {
  color: var(--color-white);
  opacity: 1;
  text-decoration: none;
}

footer ul li {
  margin-top: 10px;
}

footer nav {
  margin-bottom: 30px;
}

footer h4 {
  font-size: 1.3em;
  margin-bottom: 30px !important;
  margin-top: -52px !important;
}

footer nav a,
footer nav a:active,
footer nav a:focus,
footer nav a:visited,
footer nav a:hover,
footer ul,
.footer__contacts {
  color: #d0d4d7;
  display: block;
  margin-top: 10px;
}

.footer__description {
  max-width: 300px;
  margin-bottom: 30px !important;
}

footer a:hover {
  opacity: 0.6;
}

footer a,
footer a:active,
footer a:visited,
footer a:focus,
footer a:hover {
  color: var(--color-white);
  display: block;
}

footer hr {
  border-color: rgba(85, 85, 85, 0.56);
  margin-top: 40px;
}

footer hr + div {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.8em;
}

/** Modal busca **/

body .jetpack-instant-search__search-results-wrapper.has-colophon {
  border-radius: 20px;
  box-shadow: 0px 0px 12px 0px rgba(219, 219, 228, 0.48);
}

body .jetpack-instant-search__box-gridicon svg {
  fill: #1e215a;
}
body .jetpack-instant-search__box-gridicon {
  position: relative;
}

body button.jetpack-instant-search__overlay-close svg.gridicon {
  fill: #f77373;
}
body .jetpack-instant-search__search-results-list.is-format-minimal {
  margin: 0 25px;
}

body .jetpack-instant-search__search-results-title {
  padding: 0 25px;
  margin-bottom: 28px !important;
  font-size: 24px;
  font-weight: 700;
  color: #333f49;
}
body .jetpack-instant-search__search-results-primary {
  padding: 35px 0;
}

body
  .jetpack-instant-search__search-result-title.jetpack-instant-search__search-result-minimal-title
  svg,
body .jetpack-instant-search__search-result-minimal-cats-and-tags {
  display: none !important;
}

body
  .jetpack-instant-search__search-result-title-link.jetpack-instant-search__search-result-minimal-title-link {
  color: #1e215a;
  font-size: 24px;
  text-decoration: underline;
}

body .jetpack-instant-search__path-breadcrumb {
  display: none !important;
}

body .jetpack-instant-search__search-filters-title {
  font-size: 24px;
  margin-bottom: 22px !important;
  color: #333f49;
}
body .jetpack-instant-search__search-filter-sub-heading {
  color: #9facc7;
  font-size: 16px;
  margin-bottom: 22px;
}

body .jetpack-instant-search__search-results {
  border-radius: 20px;
}

body
  .jetpack-instant-search__search-filter-list
  .jetpack-instant-search__search-filter-list-label {
  font-size: 14px;
}
body .jetpack-instant-search__jetpack-colophon {
  display: none;
}

body
  .jetpack-instant-search__box
  input[type="search"].jetpack-instant-search__box-input {
  font-size: 16px;
  color: #9facc7;
  font-weight: 500;
}

body .jetpack-instant-search__search-filter-list > div {
  align-items: center;
  margin-top: 12px;
}
@media (max-width: 991px) {
  footer .d-flex div,
  footer .d-flex nav {
    width: 100%;
  }
  footer h4 {
    margin-top: 30px !important;
  }
  .footer__contacts p {
    margin-top: 20px !important;
  }
  .footer__social {
    margin-top: 40px;
    text-align: left;
    margin-bottom: 10px;
  }
  footer hr + div p,
  footer hr + div a {
    text-align: center !important;
  }

  footer hr + div a {
    margin-top: 10px;
  }

  .footer__logo {
    margin-left: 0;
    margin-top: 40px;
    border-radius: 15px;
  }
}

/* BOTÃO PADRAO */

.btn {
  display: table;
  padding: 15px 60px 15px 20px;
  line-height: 1.2;
  border-radius: 50px;
  font-size: 1em;
  color: #1e215a;
  background: var(--color-white);
  position: relative;
  font-size: 1.3em;
  font-weight: 600;
  outline: none !important;
  transition: 0.2s all;
}

.btn.centered {
  padding: 15px 20px;
  text-align: center;
}

.btn.mini {
  padding: 8px 25px;
  font-size: 1.2em;
  font-weight: 600;
}

.font-size-1em {
  font-size: 1em !important;
}

.btn svg,
.btn img {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  background-size: 100%;
}

.btn.amarelo {
  background: #fecb54;
}

.btn.azul {
  background: #1574bf;
  color: var(--color-white);

  &:hover {
    background: #0658a3;
  }
}

/* Garantir que todos os botões do WooCommerce tenham bordas consistentes */
.woocommerce button.btn.azul,
.woocommerce .btn.azul,
.woocommerce button[type="submit"].btn.azul,
.woocommerce .button.btn.azul,
.woocommerce .woocommerce-button.btn.azul {
  border-radius: 50px;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.3em;
  transition: 0.2s all;
}

.btn.azul-escuro {
  background: #0658a3;
  color: var(--color-white);
}

.btn.azul-claro {
  background: #48c2dd;
  color: var(--color-white);
}

.btn.amarelo svg path,
.btn.azul svg path,
.btn.azul-claro svg path,
.btn.azul-escuro svg path {
  fill: var(--color-white);
}

.btn.verde {
  color: var(--color-white);
  background: #3fc08a;
}

.btn.verde svg path {
  fill: var(--color-white);
}

.btn.outline {
  box-shadow: var(--shadow-sm);
  color: #1574bf;
  background: transparent;
}

.btn.outline svg path {
  fill: #1574bf;
}

.btn.outline:hover {
  box-shadow: var(--shadow-sm);
  background-color: #1574bf !important;
  color: var(--color-white);
  background: transparent;
}

.btn.outline:hover svg path {
  fill: var(--color-white);
}

/* Modal */

dialog {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 800px;
  padding: 35px;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

dialog button[dialog-close] {
  position: absolute;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #000;
  font-weight: bold;
  font-size: 2em;
  right: 15px;
  top: 7px;
  bottom: auto;
  width: auto;
  outline: none;
}

dialog iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Títulos */

.titulo {
  font-weight: bold;
  font-size: 2em;
  color: #1e215a;
  margin-bottom: 1em;
}

/* Header */

.header__side-menu__content nav {
  padding-top: 20px;
  height: 100%;
  background: var(--color-white);

  @media (width > 1024px) and (height < 768px) {
    padding-bottom: 20px;
    overflow-y: auto;
  }
}

.header__side-menu__hidden {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 105%;
  top: 0;
  transition: all 300ms;
  z-index: -1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.header__side-menu__hidden.header__side-menu__hidden--active {
  left: 0;
  z-index: 2;
}

.header__side-menu__content nav button,
.header__side-menu__content nav a,
.header__side-menu__content nav a:active,
.header__side-menu__content nav a:focus,
.header__side-menu__content nav a:visited,
.header__side-menu__content nav a:hover {
  font-weight: 500;
  font-size: 1.6em;
  width: 100%;
  display: flex;
  position: relative;
  text-align: left;
  padding: 20px;
  align-items: center;
  font-weight: bold;
  color: #1e215a;
  text-decoration: none;
}

.header__side-menu__content nav button img.expand {
  right: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.header__side-menu__content nav button img.retract {
  margin-right: 20px;
}

.header__aneps button {
  border: none;
  background: transparent;
  outline: none;
}

.header__side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 11;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  color: #1e215a;
}

.header__side-menu aside {
  position: fixed;
  right: 100%;
  margin-right: 0;
  width: 350px;
  background: var(--color-white);
  height: 100%;
  transition: all 300ms;
  overflow: hidden;
}

.header__side-menu.header__side-menu--active aside {
  margin-right: -350px;
}

.header__side-menu__content {
  height: calc(100% - 93px);
  position: relative;
}

.header__side-menu__search-bar {
  position: relative;
}

.header__side-menu__search-bar input {
  padding: 25px 20px 25px 50px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.2em;
  background: #ededed;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.header__side-menu__search-bar button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.header__side-menu__search-bar button img {
  width: 18px;
}

.header__side-menu__footer {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 20px;
  background: var(--color-white);
  gap: 10px;
  border-top: solid 1px #ebebeb;
}

.header__side-menu__footer a {
  background-color: #1e215a;
  border-radius: 5px;
  display: flex;
  width: 28px;
  height: 28px;
  text-align: center;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header__search:focus {
  outline: 0;
  text-decoration: none;
}

.header__side-menu .header__menu-toggle {
  padding: 37px 20px;
  font-size: 1.6em;
  gap: 15px;
  font-weight: 500;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.header__cart {
  position: relative;
  margin-right: 5px;
}

.header__cart {
  width: 22px;
}

.header__cart__qty {
  width: 20px;
  height: 20px;
  font-weight: 600;
  display: block;
  position: absolute;
  text-align: center;
  border-radius: 50%;
  padding-block: 10px;
  line-height: 0;
  font-size: 0.9em;
  background: #ff7474;
  color: var(--color-white);
  top: -8px;
  left: 15px;
}

a.header__profile,
.header__profile a {
  gap: 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.3em;
  white-space: nowrap;
  color: #30526b;
  padding: 9px 0;
  text-decoration: none;
}

a.header__profile:active,
a.header__profile:focus,
a.header__profile:visited,
a.header__profile:hover,
.header__profile a:active,
.header__profile a:focus,
.header__profile a:visited,
.header__profile a:hover {
  color: inherit;
  text-decoration: inherit;
}

.header__profile img:first-child {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.header__profile img:last-child {
  transform: rotate(90deg);
}

.header__account_menu {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

.header__account_menu--overflow {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.header__account_menu--content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: -1px 0px 24px 0px rgba(0, 0, 0, 0.12);
  padding: 5px 10px;
  min-width: 191px;
  z-index: 101;
}

.header__account_menu a {
  padding: 20px 6px;
  text-decoration: none;
  white-space: nowrap;
}

.header__account_menu a span {
  color: #30526b;
  font-size: 16px;
  font-weight: 600;
}

.header__account_menu a:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}

.header__search-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  display: none;
}

.header__search-bar input {
  padding: 35px 70px 35px 20px;
  font-size: 1.4em;
  font-weight: 300;
  background: #f6f9fd;
  outline: none !important;
  border: none;
  width: 430px;
}

.header__search-bar button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.header__top-menu {
  position: relative;
}

.header__top-menu .d-flex {
  gap: 20px;
}

.header__top-menu .header__menu-toggle {
  gap: 10px;
  font-size: 1.6em;
  font-weight: 500;
  padding: 15px 15px 15px 0;
  color: #1e215a;
}

.header__aneps .header__search {
  background-color: #f6f9fd;
  align-items: center;
  justify-content: space-between;
  display: flex;
  height: 90px;
  position: relative;
  width: 473px;
  padding: 0 20px;
}

.header__aneps .header__search:hover {
  text-decoration: none;
}

.header__aneps .header__search span {
  color: #606396;
  font-size: 16px;
}

.header__top-menu .header__logo {
  width: 107px;
}

.header__logo {
  width: 107px;
  /* height: 42px; */
  object-fit: cover;
}

.jetpack-instant-search__sidebar
  .jetpack-instant-search__search-filters
  button.jetpack-instant-search__clear-filters-link {
  display: none !important;
}

@media (max-width: 991px) {
  .header__account_menu--content {
    left: -65%;
  }

  .header_none {
    display: none !important;
  }

  .header__top-menu {
    width: 100% !important;
  }

  .header__logo {
    width: 95px;
    margin-right: 2rem;
    object-fit: cover;
  }

  .header__top-menu .header__menu-toggle {
    font-size: 0;
    padding: 8px;
  }

  .header__top-menu .header__menu-toggle img {
    width: 24px;
    height: 24px;
  }

  .header__top-menu .d-flex {
    gap: 10px;
  }

  .header__profile {
    font-size: 1.2em;
  }

  .header__top-menu .header__logo {
    width: 75px;
  }

  .header__aneps .header__search {
    position: initial;
  }

  .header__search-bar {
    position: absolute;
    top: -18px;
    transform: none;
    right: 0;
    width: 100%;
    z-index: 2;
  }

  .header__mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  .header__mobile-search-btn img {
    width: 20px;
    height: 20px;
  }
}

/* Mobile search button - hidden on desktop */
.header__mobile-search-btn {
  display: none;
}

/* Mobile search popup */
.header__mobile-search-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.header__mobile-search-popup.active {
  display: flex;
}

.header__mobile-search-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.header__mobile-search-popup__content {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header__mobile-search-popup__content form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__mobile-search-popup__content input {
  flex: 1;
  font-size: 1.4em;
  font-weight: 300;
  border: none;
  border-bottom: 2px solid var(--color-secondary, #1574bf);
  padding: 12px 0;
  outline: none;
}

.header__mobile-search-popup__content button[type="submit"] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__mobile-search-popup__content button[type="submit"] img {
  width: 20px;
  height: 20px;
}

.header__mobile-search-popup__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header__mobile-search-popup__close img {
  width: 14px;
  height: 14px;
}

/* Página */

.aneps-page {
  padding-block: 40px;
}

/* 404 */

.aneps-404 {
  padding-block: 80px;
  background-color: #f9f9f9;
}

.aneps-404__img {
  width: 428px !important;
  margin-bottom: 30px;
}

.aneps-404 h1 {
  font-size: 3.4em;
  line-height: 1.2;
  font-weight: bold;
  max-width: 670px;
  margin: 0 auto 10px auto !important;
}

.aneps-404 p {
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 auto !important;
  max-width: 470px;
}

.aneps-404 .d-flex div {
  width: 30%;
  background: var(--color-white);
  padding: 30px 25px;
  border-radius: 30px 30px 0 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.aneps-404 .btn {
  width: 100%;
  text-align: left;
  margin-top: 20px;
}

.aneps-cabecalho-evento img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
}

.aneps-cabecalho-evento .d-flex {
  gap: 5px;
}

@media (max-width: 991px) {
  .aneps-404 .d-flex div {
    width: 100%;
  }

  .aneps-404 .d-flex div:not(:last-child) {
    margin-bottom: 30px;
  }
}

.aneps-account {
  background-color: #fafafa;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 48%;
}

.swal2-styled.swal2-confirm:not(.abc) {
  background-color: #0658a3;
  font-weight: bold;
  padding: 18px;
  border-radius: 50px;
  min-width: 100px;
  border: none;
  outline: none;
  font-size: 1.3em;
  position: relative;
  outline: none;
  box-shadow: none;
}

#swal2-content {
  margin-top: 10px;
}

.aneps-spinner {
  margin: 20px auto -20px auto;
  width: 30px;
  height: 30px;
  border: 5px solid #e9e9e9;
  border-bottom-color: #1574bf;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

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

/* PAGBANK */

.wc_payment_methods.payment_methods.methods {
  background-color: var(--color-white) !important;
  padding: 20px 0 0 0 !important;
  border: none !important;
}
.woocommerce-checkout-payment .place-order {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.woocommerce-checkout-payment {
  width: 100%;
}

.wc_payment_method {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 20px !important;
}

.wc_payment_method > input {
  position: absolute;
  left: 15px;
  top: 22px;
}

.wc_payment_method > label {
  padding: 15px 15px 15px 40px;
  margin-bottom: 0 !important;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.payment_box {
  margin: 0 15px 15px 15px !important;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout #payment div.payment_box {
  background: transparent !important;
  border-top: solid 1px #ccc;
  padding: 0;
}

.woocommerce-checkout #payment div.payment_box .form_row {
  padding: 0 !important;
}

.woocommerce-checkout #payment div.payment_box label {
  font-size: 1.2em !important;
  font-weight: 600;
}

.woocommerce-checkout #payment div.payment_box label span {
  color: red;
}

.woocommerce-checkout #payment div.payment_box input:not([type="checkbox"]) {
  font-size: 1.4em !important;
  border: none !important;
  box-shadow: var(--shadow-sm) !important;
  border-radius: 6px !important;
  min-height: 40px !important;
  padding: 5px 15px !important;
  margin-top: 5px !important;
}

.woocommerce-checkout #payment div.payment_box input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

.woocommerce-checkout #payment div.payment_box > p:only-child {
  font-size: 1.2em;
  margin: 20px 0 0 0 !important;
}

.woocommerce-checkout #payment div.payment_box > p:last-child {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.woocommerce-checkout #payment div.payment_box > p:last-child label {
  margin: 0 !important;
}

.full-search {
  position: fixed;
  z-index: 999;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.full-search,
.full-search__overflow {
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
}

.full-search__overflow {
  position: absolute;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
}

.full-search__content {
  border-radius: 24px;
  background-color: var(--color-white);
  max-width: 1128px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.full-search-form {
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

.full-search-form input {
  border-width: 0;
  height: 90px;
  width: 100%;
  padding-left: 60px;
}

.full-search-form input,
.full-search-form input::placeholder {
  font-size: 16px;
  color: #9facc7;
}

.full-search-form input:focus {
  outline: 0;
}

.full-search-form__icon,
.full-search-form__close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.full-search-form__icon {
  left: 24px;
}

.full-search-form__close {
  right: 24px;
}

.full-search__results .row {
  align-items: stretch;
  display: flex;
  margin: 0;
}

.full-search__results .col-left {
  border-right: 1px solid #ebebeb;
  position: relative;
}

.full-search__results .col-left.loading:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.4) url(../images/spinner.gif) no-repeat
    center / 52px;
}

.full-search__results .col-right {
  padding: 16px 16px 36px;
}

.full-search__results .col-right .title {
  margin-bottom: 22px !important;
}

.full-search__results .title {
  color: #333f49;
  font-size: 24px;
  line-height: 2;
  margin-bottom: 28px !important;
}

.full-search__results .filters,
.full-search__results .filter-options {
  display: flex;
  flex-direction: column;
}

.full-search__results .filters p {
  color: #9facc7;
  font-weight: 600;
  margin-bottom: 24px !important;
  font-size: 16px;
}

.full-search__results .filter-options {
  row-gap: 12px;
}

.full-search__results .filter-options:not(:last-child) {
  margin-bottom: 29px;
}

.full-search__results .filter-options label {
  align-items: center;
  display: flex;
  column-gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
}

.full-search__results .filter-options label input {
  border: 1px solid #9facc7;
  margin: 0;
}

.full-search__results .filter-options label span {
  color: #333f49;
  font-size: 12px;
  font-weight: 400;
}

.full-search__results .result-post:not(:last-child) {
  margin-bottom: 24px;
}

.full-search__results .result-post .title {
  font-size: 24px;
  color: #1e215a;
  font-weight: 600;
  text-decoration: underline;
}

.full-search__results .result-post .excerpt {
  color: #333f49;
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7142857142857142;
}

.full-search .results--wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 26px 15px 32px 24px;
  overflow-y: auto;
}

/**
 * Adiciona classes de suporte para flexbox
 */

/* Flexbox */
.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.justify-items-start {
  justify-items: flex-start;
}

.justify-items-end {
  justify-items: flex-end;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-baseline {
  justify-items: baseline;
}

.justify-items-stretch {
  justify-items: stretch;
}

.justify-self-start {
  justify-self: flex-start;
}

.justify-self-end {
  justify-self: flex-end;
}

.justify-self-center {
  justify-self: center;
}

.justify-self-auto {
  justify-self: auto;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.align-stretch {
  align-items: stretch;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

.align-self-auto {
  align-self: auto;
}

/* Grid */

.grid {
  display: grid;
}

[class*="gap-"] {
  gap: var(--gap);
}

[class*="mt-"] {
  margin-block-start: var(--margin-block-start);
}

[class*="col-"] {
  grid-template-columns: repeat(var(--col), 1fr);
}

[class*="mw-"] {
  max-width: var(--max-width);
}

/* Padding */
/* Padding */
.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-70 {
  padding: 70px;
}
.mw-auto {
  max-width: auto;
}

.mt-5 {
  --margin-block-start: 5px;
}

.mt-0 {
  --margin-block-start: 0;
}

.gap-5 {
  --gap: 5px;
}

.gap-10 {
  --gap: 10px;
}

.gap-15 {
  --gap: 15px;
}

.gap-20 {
  --gap: 20px;
}

.gap-25 {
  --gap: 25px;
}

.gap-30 {
  --gap: 30px;
}

.gap-35 {
  --gap: 35px;
}

.gap-40 {
  --gap: 40px;
}

.gap-50 {
  --gap: 50px;
}

.gap-70 {
  --gap: 70px;
}

.col-1 {
  --col: 1;
}

.col-2 {
  --col: 2;
}

.col-3 {
  --col: 3;
}

@media (width >= 1024px) {
  .md\:mw-570 {
    --max-width: 570px;
  }

  .md\:col-1 {
    --col: 1;
  }

  .md\:col-2 {
    --col: 2;
  }

  .md\:col-3 {
    --col: 3;
  }

  .md\:col-5 {
    --col: 5;
  }

  .md\:gap-40 {
    --gap: 40px;
  }

  .md\:gap-50 {
    --gap: 50px;
  }

  .md\:gap-65 {
    --gap: 65px;
  }

  .md\:gap-70 {
    --gap: 70px;
  }

  .md\:gap-125 {
    --gap: 125px;
  }

  .md\:gap-150 {
    --gap: 150px;
  }

  .md\:p-40 {
    --padding: 40px;
  }

  .md\:p-50 {
    --padding: 50px;
  }

  .md\:p-65 {
    --padding: 65px;
  }

  .md\:p-70 {
    --padding: 70px;
  }

  .md\:p-125 {
    --padding: 125px;
  }

  .md\:p-150 {
    --padding: 150px;
  }
}

/* parts/subtitulo */
.aneps-subtitulo {
  --font-size: 18px;
  color: #1e215a;
  font-size: var(--font-size);
  font-family: var(--font-family-primary);
  font-weight: 700;

  @media (width > 1024px) {
    --font-size: 24px;
  }
}

/* parts/sidaneps-beneficios */
.aneps-sindaneps-beneficios {
  --padding-block: 30px;
  background-color: #fafafa;
  padding-block: var(--padding-block);
  position: relative;
  overflow: hidden;

  .container {
    position: relative;
  }

  .bg-sindaneps-beneficios {
    display: flex;
    position: absolute;
    width: 350px;
    height: auto;
    opacity: 0.18;
    z-index: 0;
    margin: auto 0;
    inset: 0;
    left: -100px;
  }

  .beneficios-title {
    h2 {
      --font-size: 24px;
      --line-height: 1;
      font-family: var(--font-family-primary);
      font-weight: 700;
      color: #333f49;
      text-align: left;
      line-height: var(--line-height);
      font-size: var(--font-size);

      strong {
        color: #3747a2;
      }

      @media (width > 1024px) {
        --font-size: 42px;
        --line-height: 48px;
      }
    }
  }

  .descricao {
    font-family: var(--font-family-primary);
    font-weight: 300;
    color: #666666;
    text-align: left;
    line-height: 32px;
    font-size: 18px;
  }

  .beneficios-list {
    overflow-x: scroll;
    gap: 34px;
    padding: 12px;

    .card__item {
      --width: 85%;
      flex: none;
      width: var(--width) !important;

      @media (width > 1024px) {
        --width: 380px;
      }
    }
  }

  @media (width > 1024px) {
    --padding-block: 50px;

    .beneficios-title {
      position: relative;
      &::after {
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 315px;
        background-color: #d1d1d1;
        margin: auto 0;
        inset: 0;
        right: -75px;
        left: unset;
      }
    }
  }
}

/* parts/card */

.card__item {
  border-radius: 24px;
  background-color: var(--color-white);
  box-shadow: 2px 6px 12px 0px #dbdbe4;
  transition: 0.6s all;
  overflow: hidden;

  .card__imagem img {
    --height: 150px;
    width: 100%;
    height: var(--height) !important;
    object-fit: cover;

    @media (width > 1024px) {
      --height: 175px;
    }
  }

  .card__conteudo {
    display: grid;
    gap: 15px;
    padding-block: 30px;
    padding-inline: 27px;

    h3 {
      font-family: var(--font-family-primary);
      font-weight: 600;
      color: #1e215a;
      font-size: 20px;
      line-height: normal;
    }

    p {
      font-family: var(--font-family-primary);
      font-weight: 300;
      color: #333f49;
      font-size: 14px;
      line-height: 24px;
    }
  }

  .card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 21px;
    padding-inline: 27px;
    border-top: 1px solid #ebebeb;
    font-size: 16px;
    font-family: var(--font-family-primary);
    font-weight: 600;
    color: #1574bf;
  }

  &,
  &:hover {
    text-decoration: none;
  }

  &:hover {
    transform: scale(0.95);
  }
}

/* part/cta-card */

.aneps-call-to-action {
  --padding: 15px;
  position: relative;
  padding: var(--padding);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  overflow: hidden;

  .overflow-shadow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.8)
    );
    z-index: 0;
  }

  .content {
    color: white;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    text-align: center;

    .content-title {
      --font-size: 28px;
      --line-height: 34px;
      font-family: var(--font-family-primary);
      font-weight: 700;
      color: var(--color-white);
      text-align: left;
      font-size: var(--font-size);
      line-height: var(--line-height);

      @media (width > 1024px) {
        --font-size: 32px;
        --line-height: 48px;
      }
    }

    .content-description {
      font-family: var(--font-family-primary);
      color: var(--color-white);
      text-align: center;
      line-height: 24px;
      font-size: 18px;
    }

    .content-title,
    .content-description {
      text-align: center;
    }

    .btn {
      margin-top: 25px;
    }
  }

  @media (width > 1024px) {
    --padding: 35px;
  }
}

.title {
  --font-size: 26px;
  --line-height: 32px;
  font-family: var(--font-family-primary);
  color: #333f49;
  line-height: var(--line-height);
  font-size: var(--font-size);
  font-weight: normal;

  @media (width > 1024px) {
    --font-size: 48px;
    --line-height: 42px;
  }
}

.content {
  font-family: var(--font-family-primary);
  font-weight: 300;
  color: #666666;
  line-height: 28px;
  font-size: 18px;
}

.woocommerce-message,
.woocommerce-notices-wrapper > *,
.cart-empty,
.woocommerce-error,
.woocommerce-info {
  font-family: var(--font-family-primary);
  font-weight: 400;
  color: #666666;
  background-color: var(--color-white);
  line-height: 26px;
  font-size: 16px;
  border-radius: 40px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}
/* Lista Certificacao */

@media screen and (max-width: 991px) {
  .ordering-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.lista-documentos ul {
  list-style-type: none;
  padding: 0;
  list-style: none;
}

.lista-documentos li {
  margin-bottom: 10px;
}

.lista-documentos li a {
  text-decoration: none;
  color: #0073aa;
  font-weight: 600;
}

.lista-documentos li a:hover {
  text-decoration: underline;
}

.popmake {
  text-align: center;
  .pum-title {
    font-family: var(--font-family-primary);
    text-align: center;
  }

  .pum-content {
    font-family: var(--font-family-primary);
    padding: 25px;
    text-align: center;
    font-weight: 300;

    img {
      border-radius: 16px;
    }
  }
}

.disabled {
  filter: grayscale(1);
}

.product-vouchers {
  --gap-top: 20px;
  & + & {
    margin-top: var(--gap-top);
  }
  @media (width > 1024px) {
    --gap-top: 30px;
  }
}

/* Ocultar header e footer quando estiver em webview (ReactNativeWebView) */
body.webview #header-container,
body.webview #footer-container,
body.webview #breadcrumb-container,
body.webview #woocommerce-myaccount-navigation-container {
  display: none !important;
}

body.webview {
  padding-top: 0 !important;
}

/* Modal de geração de vouchers */
.stcp-voucher-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.stcp-voucher-modal {
  background: #fff;
  border-radius: 12px;
  padding: 40px 48px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stcp-voucher-modal-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #1574bf;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: stcp-spin 0.8s linear infinite;
}

@keyframes stcp-spin {
  to { transform: rotate(360deg); }
}

.stcp-voucher-modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
}

.stcp-voucher-modal-text {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.aneps-voucher-report__filters {
  margin-bottom: 30px;
}

.aneps-voucher-report__filter-row {
  gap: 15px;
  align-items: flex-end;
}

.aneps-voucher-report__filter-row .stcp-filter-group {
  flex: 1 1 180px;
  min-width: 180px;
}

.aneps-voucher-report__filter-row .stcp-filter-group:last-child {
  flex: 0 0 auto;
  min-width: 0;
}

.aneps-voucher-report__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.aneps-voucher-report__stat-card {
  padding: 15px;
  border-radius: 4px;
  border-left: 4px solid #999;
  background: #f7f7f7;
}

.aneps-voucher-report__stat-card--info {
  background: #f0f6fc;
  border-left-color: #00a0d2;
}

.aneps-voucher-report__stat-card--success {
  background: #ecf7ed;
  border-left-color: #46b450;
}

.aneps-voucher-report__stat-card--danger {
  background: #fbeaea;
  border-left-color: #dc3232;
}

.aneps-voucher-report__stat-card--accent {
  background: #fff8e5;
  border-left-color: #f0b849;
}

.aneps-voucher-report__stat-card--warning {
  background: #fff3cd;
  border-left-color: #ffc107;
}

.aneps-voucher-report__stat-number {
  font-size: 24px;
  font-weight: 700;
}

.aneps-voucher-report__stat-card--info .aneps-voucher-report__stat-number {
  color: #00a0d2;
}

.aneps-voucher-report__stat-card--success .aneps-voucher-report__stat-number {
  color: #46b450;
}

.aneps-voucher-report__stat-card--danger .aneps-voucher-report__stat-number {
  color: #dc3232;
}

.aneps-voucher-report__stat-card--accent .aneps-voucher-report__stat-number {
  color: #f0b849;
}

.aneps-voucher-report__stat-card--warning .aneps-voucher-report__stat-number {
  color: #e6a800;
}

.aneps-voucher-report__stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}

.aneps-voucher-report__export-actions {
  margin-bottom: 24px;
}

.aneps-voucher-report__format-option {
  margin-right: 10px;
}

.aneps-voucher-report__table-wrap {
  overflow-x: auto;
}

.aneps-voucher-report__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.aneps-voucher-report__head-row {
  background: #f7f7f7;
}

.aneps-voucher-report__table th {
  padding: 10px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid #ddd;
}

.aneps-voucher-report__table td {
  padding: 10px;
}

.aneps-voucher-report__row {
  border-bottom: 1px solid #eee;
}

.aneps-voucher-report__cell--status {
  text-align: center;
}

.aneps-voucher-report__status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: help;
}

.aneps-voucher-report__pagination {
  margin-top: 20px;
}

.aneps-voucher-report__results-count {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.aneps-voucher-report__page-current {
  margin: 0 10px;
}

.aneps-voucher-report__empty-state {
  text-align: center;
  padding: 40px 20px;
}

.aneps-voucher-report__empty-text {
  font-size: 16px;
  color: #999;
}

@media (max-width: 767px) {
  .aneps-voucher-report__filter-row {
    align-items: stretch;
  }

  .aneps-voucher-report__filter-row .stcp-filter-group,
  .aneps-voucher-report__filter-row .stcp-filter-group:last-child {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .aneps-voucher-report__format-option {
    display: block;
    margin: 0 0 10px;
  }
}
