/* ==============================
   RESET & BASE
============================== */
:root {
  --green: #24ca68;
  --green-dark: #1aab57;
  --green-light: #e8fdf2;
  --green-mid: #d0f5e3;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-muted: #7a7a7a;
  --border: #e8e8e8;
  --bg-light: #f7f8fa;
  --white: #fff;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}
svg {
  display: block;
}
h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: var(--text-muted);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==============================
   LAYOUT
============================== */
.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* ==============================
   HEADER
============================== */
header {
  height: 68px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
header nav button {
  border: none;
  padding: 6px;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
header nav button:hover {
  background: var(--green-light);
}
header nav button:first-child svg {
  fill: var(--green);
}
header nav button svg {
  width: 26px;
  height: auto;
}

/* ==============================
   BANNER SECTION
============================== */
.l-banner {
  background: var(--white);
  padding-bottom: 24px;
}
.l-banner__video {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.l-banner__video img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.l-banner__video > button {
  padding: 0;
  margin: 0;
  border: none;
  background: rgba(255,255,255,0.85);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 12;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.l-banner__content {
  margin-top: 20px;
  padding: 0 4px;
}
.l-banner__content h6 {
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.l-banner__content h1 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.3px;
}
.l-banner__content small {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ==============================
   PROGRESS BAR
============================== */
.l-banner__percentual {
  margin-top: 20px;
  padding: 0 4px;
}
.l-banner__percentual .progress-bar {
  background: var(--border);
  height: 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  overflow: hidden;
}
.l-banner__percentual .progress-bar .progress {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, #1aab57 100%);
  border-radius: var(--radius-full);
  transition: width 0.8s ease;
  position: relative;
}
.l-banner__percentual .progress-bar .progress::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(36,202,104,0.25);
}
.l-banner__percentual p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-muted);
}
.l-banner__percentual p strong {
  font-size: 22px;
  line-height: 1;
  color: var(--green);
  font-weight: 800;
}

/* ==============================
   DONATION CARD
============================== */
.c-pagamento {
  padding: 20px 16px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  box-shadow: var(--shadow-sm);
}
.c-pagamento__profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.c-pagamento__profile .icone {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
  border: 2px solid var(--green);
}
.c-pagamento__profile h4 {
  margin: 0;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  color: var(--text-dark);
}
.c-pagamento__pagar h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--text-dark);
  text-align: center;
  font-weight: 700;
}
.c-pagamento__pagar form label {
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 4px;
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-mid);
  text-transform: uppercase;
}
.c-pagamento__pagar form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 16px;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.c-pagamento__pagar form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(36,202,104,0.15);
}
.c-pagamento__pagar form button {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 18px 10px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border: none;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 16px;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(36,202,104,0.4);
}
.c-pagamento__pagar form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36,202,104,0.5);
}
.c-pagamento__pagar form button:active {
  transform: translateY(0);
}
.c-pagamento__pagar form button:disabled {
  background: #c4c4c4;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}
.c-pagamento__pagar form p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.c-pagamento .coracoes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-top: 6px;
}
.c-pagamento .coracoes span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--text-muted);
}
.c-pagamento .coracoes strong {
  color: var(--green);
  font-size: 15px;
}
.c-pagamento .text {
  text-align: center;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-dark);
  font-weight: 600;
}
.l-banner .c-pagamento {
  margin-top: 20px;
}

/* DONATE BUTTON (inline in HTML) */
.c-pagamento__pagar > a button,
.l-fixed-button__box > .container > a button {
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.c-pagamento__pagar > a button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(36,202,104,0.5) !important;
}

/* ==============================
   RESUMO / SNIPPET
============================== */
.l-banner__resumo {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--text-mid);
  background: var(--bg-light);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
}
.l-banner__resumo a {
  text-decoration: none;
  font-weight: 700;
  color: var(--green-dark);
  margin-left: 4px;
}
.l-banner__resumo a:hover {
  text-decoration: underline;
}

/* ==============================
   SHARE BAR
============================== */
.l-banner__apoio {
  position: relative;
  margin-top: 14px;
}
.l-banner__apoio__box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(4px);
}
.l-banner__apoio__box:not(.is-active) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.l-banner__apoio__box.is-active {
  transform: translateY(0);
}
.l-banner__apoio__box h6 {
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.l-banner__apoio__box ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-banner__apoio__box ul li {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}
.l-banner__apoio__box ul li:hover {
  transform: scale(1.15);
}
.l-banner__apoio__box ul li:nth-child(1) { background: #ff9800; }
.l-banner__apoio__box ul li:nth-child(2) { background: #009d4e; }
.l-banner__apoio__box ul li:nth-child(3) { background: #0a7f91; }
.l-banner__apoio__box ul li:nth-child(4) { background: #b52230; }
.l-banner__apoio__box ul li svg {
  width: 15px;
  height: 15px;
}
.l-banner__apoio__toggle {
  padding: 0;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.l-banner__apoio__toggle:hover {
  background: #333;
  transform: scale(1.05);
}

/* ==============================
   TABS
============================== */
.l-abas {
  margin-top: 32px;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 0;
}
.l-abas__list {
  padding: 0 16px;
  margin: 0;
  list-style-type: none;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.l-abas__list li {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 20px 14px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.l-abas__list li:hover {
  color: var(--text-dark);
}
.l-abas__list li.is-active {
  font-weight: 800;
  color: var(--green);
  border-color: var(--green);
}
.l-abas .pagamento {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
}
.l-abas .pagamento h6 {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 15px;
  display: block;
  font-weight: 600;
}
.l-abas .pagamento__copy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.l-abas .pagamento__copy span {
  font-weight: 600;
  letter-spacing: 1px;
}
.l-abas .pagamento p {
  margin: 0;
  font-size: 14px;
}

/* TAB CONTENT */
.l-abas__item {
  transition: opacity 0.3s;
  padding: 0 4px;
}
.l-abas__item:not(.is-active) {
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.l-abas__item .texto {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
.l-abas__item .texto > *:last-child {
  margin-bottom: 0;
}
.l-abas__item .texto p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.l-abas__item .texto p strong {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.3px;
}
.l-abas__item .quem-ajudou {
  padding: 20px;
  border-radius: var(--radius-md);
  background-color: var(--white);
  width: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.l-abas__item .quem-ajudou ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.l-abas__item .quem-ajudou ul li {
  position: relative;
  padding-left: 52px;
}
.l-abas__item .quem-ajudou ul li + li {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.l-abas__item .quem-ajudou ul li > svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-abas__item .quem-ajudou ul li h6 {
  margin: 0 0 2px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
}
.l-abas__item .quem-ajudou ul li p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}
.l-abas .c-pagamento {
  margin-top: 40px;
}

/* ==============================
   CREATOR / PROFILE CARD
============================== */
.bluXAf {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin: 0;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.cxoaiY {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-sm);
}
@media screen and (max-width: 767px) { .cxoaiY { border-radius: var(--radius-sm) !important; } }
@media (max-width: 991px) { .cxoaiY { padding: 14px !important; gap: 0 !important; } }

.dZumUG {
  display: flex;
  width: unset;
  flex-direction: column;
}
@media screen and (max-width: 767px) { .dZumUG { flex-direction: column; } }
@media (max-width: 991px) { .dZumUG { padding: 0; gap: 10px 0; } }

.cMWTXK {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: none;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
@media (max-width: 767px) { .cMWTXK { font-size: 11px; line-height: 15px; } }

.gQcDzN {
  display: flex;
  width: unset;
  align-items: center;
}
@media (max-width: 991px) { .gQcDzN { padding: 0; gap: 0; } }

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

.hpxQVB {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  object-fit: cover;
}
.jYVJMC {
  border: 2.5px solid var(--green);
  margin-right: 10px;
  width: 46px;
  height: 46px;
  align-self: flex-start;
  border-radius: 50%;
  object-fit: cover;
}
.cNEqTm { overflow: auto; }

.cRiZGO {
  display: flex;
  width: unset;
  flex-direction: column;
}
@media screen and (max-width: 767px) { .cRiZGO { flex-direction: column; } }
@media (max-width: 991px) { .cRiZGO { padding: 0; gap: 0; } }

.iwHvNp {
  display: flex;
  width: unset;
  align-items: center;
}
@media (max-width: 991px) { .iwHvNp { padding: 0; gap: 0 8px; } }

.jLCljf {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: none;
}
@media (max-width: 767px) { .jLCljf { font-size: 13px; line-height: 1.4; } }

.byHNhP {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: none;
  margin-top: 2px;
}
@media (max-width: 767px) { .byHNhP { font-size: 11px; line-height: 1.5; } }

.kTFsLt {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 767px) { .kTFsLt { font-size: 11px; line-height: 1.5; } }

.dTFoPZ { width: fit-content; }
@media (max-width: 767px) { .dTFoPZ { width: 100%; } }

.bgQDso {
  background-color: var(--bg-light);
  display: flex;
  width: unset;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
@media screen and (max-width: 767px) { .bgQDso { border-radius: var(--radius-sm); } }
@media (max-width: 991px) { .bgQDso { padding: 8px; gap: 0 10px; } }

.MFZCN {
  display: flex;
  width: unset;
}
@media (max-width: 991px) { .MFZCN { padding: 0; gap: 0 8px; } }

.cXmoNm {
  display: flex;
  width: unset;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) { .cXmoNm { flex-direction: column; } }
@media (max-width: 991px) { .cXmoNm { padding: 0; gap: 0; } }

.kZouCQ {
  object-fit: contain;
  border-radius: 0;
}

/* ==============================
   FIXED BOTTOM CTA
============================== */
.l-fixed-button {
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  z-index: 19;
  background: var(--green-light);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.l-fixed-button__protected {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-fixed-button__box {
  padding: 12px 16px 16px;
  background: var(--white);
  border-radius: 20px 20px 0 0;
}
.l-fixed-button__box button {
  width: 100%;
  border-radius: var(--radius-full);
  padding: 18px 10px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border: none;
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(36,202,104,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.l-fixed-button__box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(36,202,104,0.55);
}

/* ==============================
   TOAST
============================== */
.c-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 50;
  width: max-content;
  max-width: calc(100% - 32px);
}
.c-toast.show { opacity: 1; }
.c-toast h6 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

/* ==============================
   DIALOGS / MODALS
============================== */
.l-dialog {
  z-index: 20;
  background-color: rgba(0,0,0,0.55);
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: auto;
  padding: 16px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  backdrop-filter: blur(2px);
}
.l-dialog:not(.is-active) {
  opacity: 0;
  pointer-events: none;
}
.l-dialog__box {
  border-radius: var(--radius-md);
  background-color: var(--white);
  position: relative;
  margin: 0 auto;
  padding: 20px 16px;
  width: 560px;
  height: auto;
  overflow: auto;
  max-width: calc(100% - 12px);
  max-height: calc(100% - 24px);
  box-shadow: var(--shadow-lg);
}
.l-dialog__close {
  padding: 4px;
  margin: 0;
  border: none;
  background: var(--bg-light);
  margin-left: auto;
  margin-bottom: 12px;
  display: block;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.l-dialog__close:hover { background: var(--border); }

/* Coracao dialog */
.l-dialog--coracao .icon { margin: 0 auto 10px; }
.l-dialog--coracao .title {
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.l-dialog--coracao .text {
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.l-dialog--coracao .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.l-dialog--coracao .list li .item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  padding: 10px 10px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.l-dialog--coracao .list li .item:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(36,202,104,0.18);
}
.l-dialog--coracao .list li .item__icone {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}
.l-dialog--coracao .list li .item__icone svg { width: 26px; height: auto; }
.l-dialog--coracao .list li .item__icone span { font-size: 11px; line-height: 1; color: #fff; font-weight: 700; }
.l-dialog--coracao .list li .item__text { max-width: 165px; }
.l-dialog--coracao .list li .item__text h6 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.l-dialog--coracao .list li .item__text p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
}
.l-dialog--coracao .list li .item__text form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  width: max-content;
  max-width: 100%;
}
.l-dialog--coracao .list li .item__text form input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px 6px;
  margin-top: 4px;
  width: 70px;
  font-size: 14px;
  line-height: 1;
}
.l-dialog--coracao .list li .item__text form button {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.l-dialog--coracao .list li .item__value {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
}

/* Pix dialog */
.l-dialog--pix .c-pagamento { padding: 0; background: transparent; border: none; box-shadow: none; }
.l-dialog--pix .c-pagamento .coracoes { display: none; }
.l-dialog--pix .c-pagamento__pagar h5 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--text-dark);
  text-align: center;
  font-weight: 700;
}
.l-dialog--pix .c-pagamento__pagar ul {
  padding: 0;
  margin: 0 0 20px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.l-dialog--pix .c-pagamento__pagar ul li { width: calc(50% - 5px); }
.l-dialog--pix .c-pagamento__pagar ul li:last-child { width: 100%; }
.l-dialog--pix .c-pagamento__pagar ul li button {
  border: 1.5px solid var(--green);
  background: var(--green-light);
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.l-dialog--pix .c-pagamento__pagar ul li button:hover {
  background: var(--green);
  color: #fff;
}
.l-dialog--pix .c-pagamento__pagar h6 {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-muted);
  text-align: center;
}

/* Pix payment dialog */
.l-dialog--pixPayment { z-index: 21; }
.l-dialog--pixPayment__box__form { display: flex; flex-direction: column; gap: 16px; }
.l-dialog--pixPayment__box__form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.l-dialog--pixPayment__box__form input:focus { border-color: var(--green); }
.l-dialog--pixPayment__box__form input[aria-invalid="true"] { border-color: #e53e3e; }
.l-dialog--pixPayment__box__form button {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 18px 10px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border: none;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(36,202,104,0.35);
  transition: transform 0.2s;
}
.l-dialog--pixPayment__box__form button:hover { transform: translateY(-2px); }
.l-dialog--pixPayment__box__form button:disabled { background: #c4c4c4; box-shadow: none; transform: none; cursor: not-allowed; }
.l-dialog--pixPayment__box__pagamento .loading {
  width: 52px;
  height: 52px;
  border: 5px solid var(--border);
  border-top: 5px solid var(--green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.l-dialog--pixPayment__box__pagamento > img,
.l-dialog--pixPayment__box__pagamento > svg { display: block; margin: 0 auto; }
.l-dialog--pixPayment__box__pagamento h2,
.l-dialog--pixPayment__box__pagamento h3 {
  font-size: 20px;
  margin: 12px 0;
  line-height: 1.25;
  text-align: center;
  color: var(--text-dark);
  font-weight: 800;
}
.l-dialog--pixPayment__box__pagamento h3 { margin-top: 24px; font-size: 17px; }
.l-dialog--pixPayment__box__pagamento p,
.l-dialog--pixPayment__box__pagamento span {
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0;
  display: block;
  text-align: center;
  color: var(--text-muted);
}
.l-dialog--pixPayment__box__pagamento .txt-alert-1 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 8px 0 0;
}
.l-dialog--pixPayment__box__pagamento #qr-timer {
  color: var(--text-dark);
  margin: 8px 0;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}
.l-dialog--pixPayment__box__pagamento .txt-alert-2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.l-dialog--pixPayment__box__pagamento input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
}
.l-dialog--pixPayment__box__pagamento button {
  border: none;
  padding: 15px 8px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin: 10px 0;
  transition: transform 0.2s;
  box-shadow: 0 3px 12px rgba(36,202,104,0.35);
}
.l-dialog--pixPayment__box__pagamento button:hover { transform: translateY(-2px); }
.l-dialog--pixPayment__box__pagamento ul { padding: 0; margin: 0; list-style-type: none; display: flex; flex-direction: column; gap: 10px; }
.l-dialog--pixPayment__box__pagamento ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.l-dialog--pixPayment__box__pagamento ul li svg { flex-shrink: 0; margin: 0; }

/* ==============================
   NOTIFICATION POPUP
============================== */
.notificacao {
  background-color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  position: fixed;
  z-index: 10;
  left: 12px;
  bottom: 185px;
  padding: 10px 18px 10px 10px;
  transition: all 0.25s ease;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  pointer-events: none;
  border: 1px solid var(--border);
}
.notificacao .avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid var(--green);
}
.notificacao .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.notificacao .content { white-space: nowrap; }
.notificacao .content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}
.notificacao .content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}

/* ==============================
   THANK YOU PAGE
============================== */
.page-pagamento-aprovado .thankyou {
  background: var(--white);
  text-align: center;
  margin: 3rem auto;
  max-width: 600px;
  padding: 2.5rem 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.page-pagamento-aprovado .thankyou__icon { margin-bottom: 1.5rem; display: flex; justify-content: center; }
.page-pagamento-aprovado .thankyou h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--text-dark); }
.page-pagamento-aprovado .thankyou .subtitle { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.page-pagamento-aprovado .thankyou__highlight {
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-sm);
  padding: 1rem 14px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}
.page-pagamento-aprovado .thankyou a {
  margin-top: 24px;
  width: 100%;
  border-radius: var(--radius-full);
  padding: 18px 10px;
  text-align: center;
  display: block;
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border: none;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(36,202,104,0.4);
}
.page-pagamento-aprovado .thankyou a:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(36,202,104,0.5); }
.page-pagamento-aprovado footer { padding-bottom: 0; }

/* ==============================
   FOOTER
============================== */
.footer {
  margin-top: 50px;
  padding-bottom: 150px;
  background: #4a4a4a;
}
.footer__box {
  padding: 28px 0;
  background: #1e1e1e;
}
.footer__box h3 {
  font-weight: 700;
  color: var(--green);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-top: 32px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer__top ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
}
.footer__top ul li { display: flex; align-items: center; }
.footer__top ul li + li {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.footer__top ul li svg { width: 18px; height: auto; fill: rgba(255,255,255,0.7); transition: fill 0.2s; }
.footer__top ul li svg:hover { fill: #fff; }
.footer__nav > *:first-child { margin-top: 0; }
.footer__nav > *:last-child { margin-bottom: 0; }
.footer__nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
.footer__nav li,
.footer__nav p { color: rgba(255,255,255,0.65); font-size: 12px; line-height: 1.4; margin: 0; }
.footer__selo { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.footer__selo p { color: rgba(255,255,255,0.65); font-size: 12px; line-height: 1.3; margin: 0; }
.footer__download { margin-top: 28px; }
.footer__download h3 { margin-top: 0; }
.footer__download ul { margin: 0; list-style-type: none; padding: 0; display: flex; align-items: center; gap: 12px; }
.footer__copy { padding: 10px 0; background: #141414; }
.footer__copy p { text-align: center; margin: 0; font-size: 11px; line-height: 1; color: rgba(255,255,255,0.4); }
