@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Trad+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Trad+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --principal-color: #EFAFC3;
  --secondary-color: #ff0000;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", serif;
  overflow-x: hidden;
  background-color: #ffffff;
  /* Impede o scroll lateral */
}

.btn-anchor {
  text-decoration: none; /* Remove o sublinhado */
}

/* RESET */

/* HEADER */
header {
  background-color: #EFAFC3;
  padding: 10px 10px;
  border-bottom: 1px solid #dfdfdf;
}

#primary-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0 0.5rem 0;
  text-align: center;
}

#primary-content h1 {
  color: #000000;
  font-size: 22px;
  margin-bottom: 10px;
}

#primary-content p {
  color: #585858;
  margin-bottom: 10px;
}

#secondary-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align-items: center; */
  margin: 2rem 2rem;
  border-radius: 10px;
  background-color: #dfdfdf;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: #bababa 2px 2px 2px;
}

#secondary-content h1 {
  color: #000000;
  font-size: 18px;
  margin-bottom: 10px;
}

#secondary-content p {
  color: #000000;
  margin-bottom: 8px;
}

#secondary-content .second-point {
  text-align: left;
  color: var(--principal-color);
  font-size: 14px;
  font-weight: 800;
}

.primary-button {
  width: 80%;
  margin: 1rem;
  background-color: var(--principal-color);
  font-size: 22px;
  padding: 0.5rem;
  border: 0px;
  font-family: "Poppins", serif;
  font-weight: 600;
  color: rgb(255, 255, 255);
  border-radius: 8px;
}

/* #main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

.post-preview {
  flex: 1 1 calc(25% - 20px);
  /* 25% de largura menos a margem, ajustável */
  box-sizing: border-box;
  /* Garante que o padding e a borda sejam incluídos no tamanho total */
  margin: 10px;
}

@media (max-width: 1024px) {
  .post-preview {
    flex: 1 1 calc(50% - 20px);
    /* Em telas menores, os itens ocupam 50% da largura */
  }
}

@media (max-width: 768px) {
  .post-preview {
    flex: 1 1 100%;
    /* Em telas bem pequenas, os itens ocupam 100% da largura */
  }
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 130px;
  margin: 0px 0px -20px 0px;
  
}

/* HEADER */

/* DESKTOP MENU */
.desktop-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.desktop-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.desktop-menu .button {
  background-color: var(--principal-color);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

/* DESKTOP MENU */

/* MOBILE MENU */
.mobile-menu {
  display: none;
}

.mobile-icons {
  display: flex;
  align-items: center;
}

.mobile-icons a {
  margin-right: 10px;
}

.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
#mobileMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: white;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 1000;
}

#mobileMenu.show {
  right: 0;
}

/* MOBILE MENU */

/* HEADER INSIDE MOBILE MENU */
#mobileMenu .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#mobileMenu .menu-header img {
  height: 40px;
}

#mobileMenu .menu-header span {
  font-size: 18px;
  font-weight: bold;
}

.close-menu {
  font-size: 24px;
  cursor: pointer;
}

/* HEADER INSIDE MOBILE MENU */

/* MOBILE MENU LINKS */
#mobileMenu ul {
  list-style: none;
  margin-top: 20px;
}

#mobileMenu li {
  margin: 20px 0;
}

#mobileMenu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

#mobileMenu .button {
  display: block;
  background-color: var(--principal-color);
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  text-decoration: none;
}

/* MOBILE MENU LINKS */

/* MOBILE MENU ANIMATION */
#mobileMenu.show {
  right: 0;
}

/* MOBILE MENU ANIMATION */

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }
}

/* RESPONSIVE DESIGN */

/* FOOTER STYLES */
footer {
  background-color: #232323;
  color: white;
  padding: 20px 0;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.footer-section {
  margin-bottom: 20px;
  flex: 1 1 200px;
}

.footer-section a {
  color: #fff;
}

.logo-section img {
  height: 150px;
}

.footer-section h4 {
  color: var(--principal-color);
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.contact-info p {
  margin-bottom: 8px;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.security-badge img {
  height: 50px;
  margin-right: 10px;
}

.app-download img {
  height: 40px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #444;
  margin-top: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .app-download img {
    height: 30px;
  }
}

/* FOOTER STYLES */

/* POSTS */
.posts-page .post-preview {
  text-align: center;
  margin: 20px 5px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.posts-page .post-preview:hover {
  background-color: #ececec;
  box-shadow: #00000044 0 10px 10px;
}

.posts-page .post-preview img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.posts-page .post-preview h3 {
  color: #333;
  font-size: 18px;
  text-align: center;
  margin: 0;
}

h4 {
  color: #000000;
  font-size: 25px;
  margin: 0;
}
h5 {
  color: #000000;
  font-size: 25px;
  margin: 0;
  padding-top: 10px;
}

h10 {
  color: #000000;
  font-size: 15px;
  text-align: center;
}
/* POSTS */

/* PAGES */
/* Estilos específicos para a página "Como Ajudar" */
.page-ajuda .page-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.page-ajuda h2 {
  font-size: 28px;
  color: var(--principal-color);
  margin-bottom: 15px;
}

.page-ajuda p {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}

.page-ajuda .help-options {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.page-ajuda .help-options .option {
  flex: 1;
  text-align: center;
}

.page-ajuda .help-options img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-ajuda .help-options h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #333;
}

.page-ajuda .help-options p {
  font-size: 14px;
  color: #000000;
}

.glide {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: -7px;
  margin-right: 10px;
}

.glide__slides {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.glide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  background-color: #dfdfdf;
}

.glide__slide img {
  width: 80%;
  height: auto;
  max-width: 400px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.post-button2 {
  margin-top: 10px;
  padding: 15px 20px;
  font-size: 25px;
  background-color: var(--principal-color);
  color: white;
  border: none;
  box-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", serif;
  font-weight: 650;
  transition: background-color 0.3s ease;
  text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);
}

.post-button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 25px;
  background-color: var(--principal-color);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Poppins", serif;
  font-weight: 650;
  transition: background-color 0.3s ease;
  text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);
}

.post-button3 {
  display: block; /* Faz o botão ocupar 100% da largura disponível */
  margin: 10px auto; /* Centraliza horizontalmente o botão */
  padding: 10px 40px;
  font-size: 30px;
  background-color: var(--principal-color);
  color: white;
  border: none;
  box-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", serif;
  font-weight: 650;
  transition: background-color 0.3s ease;
  text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);
}

.post-button:hover {
  background-color: var(--principal-color);
}

/* PAGES */

/* Estilizando a estrutura do post */
.post {
  border-radius: 8px;
  padding: 0px 20px 0px 20px;
  margin-bottom: 0px;
}

/* Estilizando o título do post */
.post h3 {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #000000;
}

.post h6 {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #585858;
}

/* Estilizando os parágrafos do post */
.post p {
  font-size: 16px;
  line-height: 1.6;
  color: #585858;
  margin-bottom: 15px;
  text-align: justify;
}

/* Estilizando a imagem do post */
.post img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Adicionando uma estilização para textos informativos */
.post p:last-child {
  font-style: italic;
  color: #444;
}

/* Estilo para o botão de voltar */
.styled-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo ao passar o mouse sobre o botão */
.styled-button:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Estilo quando o botão for clicado */
.styled-button:active {
  background-color: #004085;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.seal-container {
    margin: 50px 100px;
}

.accordion {
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  padding: 10px;
  border: none;
  outline: none;
  transition: background-color 0.4s;
  font-size: 1.2rem;
  background-color: #e4e4e4;
  margin-bottom: 10px;
  border-radius: 10px;
}

.accordion.active,
.accordion:hover {
  background-color: #ddd;
}

.accordion:after {
  content: "\002B";
  color: #ffffff;
  float: right;
  font-weight: bold;
}

.accordion.active:after {
  content: "\2212";
}

.panel {
  padding: 0 1rem;
  display: none;
  background-color: white;
  overflow: hidden;
}

.panel.show {
  display: block;
}

#button-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.buttons-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.buttons-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 2px 5px;
}

.buttons-section1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 2px 5px;
}

.buttons-section1 a {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--principal-color);
  text-decoration: none;
}

.progress-content {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  margin-top: 4px;
  margin-bottom: 4px;
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #dfdfdf;
}

.progress-values {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.progress-container {
  width: 100%;
  background-color: #ffffff;
  border-radius: 25px;
  padding: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.progress-bar {
  height: 20px;
  background-color: var(--principal-color);
  border-radius: 20px;
  transition: width 0.4s ease;
  color: rgb(255, 255, 255);
}

.pix-content {
  margin-top: 15px;
  width: 100%;
  background-color: #dfdfdf;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.534);
}

.button-pix {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.texto {
  font-size: 25px;
}

.copyButton {
  margin-left: 5px;
  padding: 2px;
  font-size: 16px;
  background-color: transparent;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Poppins", serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.likes-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 20px;
        }
.likes-container img {
            width: 50px; /* Tamanho da mini imagem */
            margin-right: 10px;
        }
.likes-container span {
            font-size: 18px;
            color: #585858;
        }

/* MODAL */


.pix-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.pix-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pix-modal {
  position: relative;

  width: 100%;
  max-width: 440px;

  padding: 32px;

  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.25);

  transform: translateY(20px) scale(0.98);

  transition: transform 0.2s ease;
}

.pix-modal-overlay.active .pix-modal {
  transform: translateY(0) scale(1);
}

.pix-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;

  width: 36px;
  height: 36px;

  border: 0;
  border-radius: 50%;

  background: #f4f4f5;
  color: #18181b;

  font-size: 26px;
  line-height: 1;

  cursor: pointer;

  transition: background 0.2s ease;
}

.pix-modal-close:hover {
  background: #e4e4e7;
}

.pix-modal-header {
  text-align: center;

  margin-bottom: 24px;
}

.pix-modal-header h2 {
  margin: 0 0 8px;

  color: #18181b;

  font-size: 24px;
  font-weight: 700;
}

.pix-modal-header p {
  margin: 0;

  color: #71717a;

  font-size: 14px;
}

.pix-qr-wrapper {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 230px;
  height: 230px;

  margin: 0 auto 20px;

  padding: 15px;

  border: 1px solid #e4e4e7;
  border-radius: 16px;

  background: #fff;
}

.pix-real-qr {
  display: none;

  align-items: center;
  justify-content: center;
}

.pix-real-qr.active {
  display: flex;
}

.pix-real-qr img,
.pix-real-qr canvas {
  display: block;
  max-width: 100%;
}

/* ============================= */
/* QR CODE FAKE / LOADING */
/* ============================= */

.fake-qr {
  display: grid;

  width: 200px;
  height: 200px;

  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: repeat(21, 1fr);

  gap: 1px;

  overflow: hidden;

  background: #fff;

  animation: fakeQrPulse 1.2s ease-in-out infinite;
}

.fake-qr.hidden {
  display: none;
}

.fake-qr-cell {
  background: #18181b;
}

.fake-qr-cell.empty {
  background: #ffffff;
}

@keyframes fakeQrPulse {
  0% {
    opacity: 0.35;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.8;
    transform: scale(1);
  }

  100% {
    opacity: 0.35;
    transform: scale(0.98);
  }
}

.pix-loading-text {
  text-align: center;

  color: #71717a;

  font-size: 14px;

  margin-bottom: 10px;
}

.pix-loading-text::after {
  content: "";

  display: inline-block;

  width: 14px;
  height: 14px;

  margin-left: 8px;

  vertical-align: -2px;

  border: 2px solid #d4d4d8;
  border-top-color: #18181b;
  border-radius: 50%;

  animation: pixSpinner 0.7s linear infinite;
}

@keyframes pixSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* ============================= */
/* RESULTADO */
/* ============================= */

.pix-result {
  display: none;
}

.pix-result.active {
  display: block;
}

.pix-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;

  padding: 14px 16px;

  border-radius: 12px;

  background: #f4f4f5;
}

.pix-amount span {
  color: #71717a;

  font-size: 14px;
}

.pix-amount strong {
  color: #18181b;

  font-size: 17px;
}

.pix-copy-label {
  display: block;

  margin-bottom: 8px;

  color: #3f3f46;
  text-align: center;

  font-size: 20px;
  font-weight: 600;
}

.pix-copy-container {
  display: flex;

  width: 100%;

  overflow: hidden;

  border: 1px solid #d4d4d8;
  border-radius: 12px;

  background: #fafafa;
}

.pix-copy-container input {
  flex: 1;

  min-width: 0;

  padding: 13px 14px;

  border: 0;
  outline: 0;

  background: transparent;

  color: #52525b;

  font-size: 16px;

  text-overflow: ellipsis;
}

.pix-copy-button {
  width: 100%;
  margin-top: 5px;
  padding: 14px;
  font-size: 28px;
  border: 0;
  border-radius: 12px;

  background: var(--principal-color);
  color: #ffffff;

  font-weight: 600;

  cursor: pointer;

  transition: background 0.2s ease;
}

.pix-copy-button:hover {
  background: #3f3f46;
}

.pix-copy-button.copied {
  background: #16a34a;
}

.pix-expiration {
  margin-top: 12px;

  text-align: center;

  color: #71717a;

  font-size: 12px;
}

/* ============================= */
/* ERRO */
/* ============================= */

.pix-error {
  display: none;

  margin-top: 16px;

  padding: 12px 14px;

  border-radius: 10px;

  background: #fee2e2;
  color: #b91c1c;

  font-size: 13px;
}

.pix-error.active {
  display: block;
}

@media (max-width: 100%) {
  .pix-modal {
    padding: 28px 20px 24px;
  }

  .pix-qr-wrapper {
    width: 100%;
    height: 100%;
  }

  .fake-qr {
    width: 100%;
    height: 100%;
  }
}


.custom-pix-section {
  width: 100%;
  max-width: 500px;
  margin: 24px auto 0;
  padding: 12px;
  border-radius: 20px;
  background-color: rgb(221, 221, 221);
}

.custom-pix-section label {
  display: block;
  margin-bottom: 8px;

  font-size: 20px;
  font-weight: 600;
  color: #3f3f46;
}

.custom-pix-input-wrapper {
  display: flex;
  align-items: center;

  width: 100%;

  overflow: hidden;

  border: 1px solid #d4d4d8;
  border-radius: 12px;

  background: #ffffff;

  shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.custom-pix-input-wrapper:focus-within {
  border-color: #18181b;

  box-shadow:
    0 0 0 3px rgba(24, 24, 27, 0.08);
}

.custom-pix-input-wrapper span {
  padding-left: 16px;

  color: #71717a;

  font-size: 20px;
  font-weight: 400;
}

.custom-pix-input-wrapper input {
  flex: 1;

  min-width: 0;

  padding: 14px 12px;
  font-size: 20px;
  border: 0;
  outline: 0;

  background: transparent;

  color: #18181b;

  font-weight: 600;
}

.custom-pix-input-wrapper input::placeholder {
  color: #a1a1aa;
}

.custom-pix-button {
  width: 100%;
  margin-top: 5px;
  padding: 14px;
  font-size: 28px;
  border: 0;
  border-radius: 12px;

  background: var(--principal-color);
  color: #ffffff;

  box-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);

  text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.664);

  font-weight: 600;

  cursor: pointer;

  transition: background 0.2s ease;
}

.custom-pix-error {
  display: none;

  margin: 7px 0 0;

  color: #dc2626;

  font-size: 12px;
}

.custom-pix-error.active {
  display: block;
}

.custom-pix-limit-error {
  display: none;
  margin: 8px 0 0;

  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
}

.custom-pix-limit-error.active {
  display: block;
}

.custom-pix-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pix-payment-status {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  padding: 12px 14px;

  border-radius: 12px;

  background: #fff7ed;
}

.pix-payment-status > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pix-payment-status strong {
  color: #9a3412;
  font-size: 13px;
}

.pix-payment-status small {
  color: #a16207;
  font-size: 11px;
}

.pix-status-dot {
  width: 10px;
  height: 10px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f59e0b;

  box-shadow:
    0 0 0 0 rgba(245, 158, 11, 0.5);

  animation: pixStatusPulse 1.5s infinite;
}

@keyframes pixStatusPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(245, 158, 11, 0.5);
  }

  70% {
    box-shadow:
      0 0 0 8px rgba(245, 158, 11, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(245, 158, 11, 0);
  }
}

/* ========================= */
/* PIX PAGO */
/* ========================= */

.pix-paid-box {
  display: none;

  text-align: center;

  padding: 20px 0 5px;
}

.pix-paid-box.active {
  display: block;
}

.pix-paid-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: #dcfce7;
  color: #16a34a;

  font-size: 38px;
  font-weight: 700;
}

.pix-paid-box h3 {
  margin: 0 0 8px;

  color: #18181b;

  font-size: 22px;
}

.pix-paid-box p {
  margin: 0;

  color: #71717a;

  font-size: 14px;
}

.pix-modal.payment-paid .pix-qr-wrapper,
.pix-modal.payment-paid .pix-result,
.pix-modal.payment-paid .pix-loading-text {
  display: none;
}

.pix-modal.payment-paid .pix-paid-box {
  display: block;
}