.social-section h2 {
  color: #1c1c1c;
  margin-bottom: 10px;
}
:root {
  --bg-100: #fdf3ea;
  --bg-200: #f6e0cf;
  --blue-400: #f2b18d;
  --blue-500: #d97742;
  --blue-600: #b65a2f;
  --blue-700: #813921;
  --text-900: #2c1b16;
  --text-600: #5b3f33;
  --text-light: #ffffff;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-card: 0 16px 36px rgba(182, 90, 47, 0.18);
  --shadow-soft: 0 10px 24px rgba(182, 90, 47, 0.12);
  --icon-color: #b65a2f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(180deg, var(--bg-100) 0%, #ffffff 100%);
  color: var(--text-900);
  line-height: 1.6;
  display: flex;
  justify-content: center;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.app {
  width: 100%;
  min-height: 100vh;
  background: #fdfefe;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255, 252, 247, 0.95);
  border-bottom: 1px solid rgba(182, 90, 47, 0.14);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topbar--hidden {
  transform: translateY(-110%);
}

.topbar--shadow {
  box-shadow: 0 10px 24px rgba(15, 32, 62, 0.12);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 6px 16px rgba(21, 101, 192, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--blue-700);
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.4px;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar-actions a {
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue-600);
}

.topbar-actions .donate-link {
  background: var(--blue-600);
  color: var(--text-light);
  box-shadow: 0 12px 20px rgba(182, 90, 47, 0.2);
}

main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 0 28px;
}

.hero-banner {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.crisis-headline {
  margin: 16px 16px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 244, 224, 0.95) 0%,
    /* creme/amarelinho bem claro */ rgba(212, 175, 55, 0.85) 100%
      /* dourado #D4AF37 puxando pro marrom */
  );
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 32px rgba(208, 98, 128, 0.16);
  padding: 22px 18px;
  color: #4c2b33;
}

.headline-inner {
  display: grid;
  gap: 12px;
}

.crisis-headline h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: #c77434;
  text-transform: none;
}

.crisis-headline p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.video-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
  align-items: center;
}

.video-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #0f172a;
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
}

.video-wrapper vturb-smartplayer,
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(182, 90, 47, 0.35),
    rgba(44, 27, 22, 0.86)
  );
  color: #fcefe3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
  font-size: 14px;
  z-index: 1;
}

.video-placeholder p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.video-placeholder span {
  font-size: 13px;
  opacity: 0.8;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--text-light);
  box-shadow: 0 18px 32px rgba(129, 57, 33, 0.28);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(129, 57, 33, 0.32);
}

.secondary-button {
  background: rgba(182, 90, 47, 0.12);
  color: var(--blue-600);
}

.video-block .primary-button {
  background: linear-gradient(135deg, #2ecc71, #1f9a55);
  box-shadow: 0 18px 36px rgba(31, 154, 85, 0.28);
}

.video-block .primary-button:hover,
.video-block .primary-button:focus-visible {
  box-shadow: 0 22px 44px rgba(31, 154, 85, 0.34);
}

.about-section {
  display: grid;
  gap: 18px;
  padding: 0 16px;
}

.about-section h2 {
  font-size: 26px;
  color: var(--blue-700);
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-content {
  display: grid;
  gap: 12px;
  font-size: 16px;
  color: var(--text-600);
  line-height: 1.55;
}

.about-content p {
  margin: 0;
}

.about-content em {
  color: var(--blue-600);
}

.about-content blockquote {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--blue-500);
  background: rgba(91, 192, 248, 0.18);
  border-radius: 12px;
  font-style: italic;
  color: var(--blue-700);
}

.purpose-section {
  margin: 0 16px;
  padding: 22px 18px 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(219, 232, 255, 0.82) 100%
  );
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  text-align: center;
}

.purpose-section h2 {
  margin: 0;
  color: var(--blue-700);
  text-transform: uppercase;
}

.purpose-lead {
  margin: 0;
  font-weight: 600;
  color: var(--blue-600);
}

.purpose-content {
  display: grid;
  gap: 12px;
  text-align: left;
  color: var(--text-600);
  line-height: 1.55;
  font-size: 16px;
}

.purpose-content p {
  margin: 0;
}

.purpose-content em {
  color: var(--blue-600);
}

.impact-intro,
.pix-intro,
.buddies-intro,
.social-section p {
  margin: 0;
  color: var(--text-600);
  font-size: 14px;
}

.impact-donation-section .impact-intro {
  color: #24507a;
}

.content-tabs {
  margin: 0 16px;
  margin-top: 8px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 18px 16px 20px;
  display: grid;
  gap: 18px;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.tab-nav {
  display: flex;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15); /* dourado caramelo suave */
  padding: 6px;
  border-radius: 14px;
}

.tab-button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--blue-600);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.tab-button:hover,
.tab-button:focus-visible {
  background: rgba(217, 119, 66, 0.18);
}

.tab-button.active {
  background: #ffffff;
  color: var(--blue-700);
  box-shadow: 0 8px 16px rgba(182, 90, 47, 0.18);
}

.tab-panels {
  position: relative;
  display: grid;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.25s ease;
}

.tab-panel.active {
  display: grid;
  gap: 14px;
  text-align: left;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recognition-grid {
  display: grid;
  gap: 12px;
}

.badge-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(182, 90, 47, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 18px rgba(182, 90, 47, 0.12);
}

.badge-icon {
  font-size: 20px;
}

.badge-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--blue-700);
}

.badge-card p {
  margin: 0;
  color: var(--text-600);
  font-size: 14px;
  line-height: 1.5;
}

.faq-section {
  margin: 0 16px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 24px;
  display: grid;
  gap: 16px;
  text-align: left;
}

.faq-section h2 {
  margin: 0;
  text-transform: uppercase;
  color: var(--text-900);
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fffaf4;
  border: 1px solid rgba(175, 140, 109, 0.18);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item.open {
  box-shadow: 0 12px 24px rgba(175, 140, 109, 0.16);
  background: #fff1e4;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #715a4b;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item.open .faq-question {
  background: rgba(233, 195, 167, 0.24);
}

.faq-toggle {
  font-size: 18px;
  color: #c48b60;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: #615349;
  line-height: 1.55;
  font-size: 14px;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 16px 16px;
}

.impact-donation-section h2,
.pix-section h2,
.buddies-section h2,
.social-section h2 {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  color: #1c1c1c;
}

.impact-donation-section {
  background: linear-gradient(
    180deg,
    rgba(255, 244, 224, 0.95) 0%,
    /* creme claro (base neutra) */ rgba(212, 175, 55, 0.85) 100%
      /* dourado caramelo #D4AF37 */
  );
  border-radius: var(--radius-lg);
  padding: 14px 14px 20px;
  position: relative;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin: 0 16px;
  text-align: center;
}

.impact-donation-section::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.85),
    /* dourado caramelo #D4AF37 */ transparent
  );
}

.impact-section {
  gap: 14px;
}

.impact-grid {
  display: grid;
  gap: 12px;
}

.impact-donation-section h2 {
  color: #c25a43;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.impact-donation-section h2 span {
  display: block;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  border: 1px solid rgba(240, 126, 89, 0.22);
  box-shadow: 0 10px 24px rgba(217, 116, 82, 0.14);
}

.impact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(217, 116, 82, 0.22);
}

.impact-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #a36c07,
    /* caramelo claro */ #f2c83e /* dourado clássico */
  );
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 5px 12px rgba(232, 125, 103, 0.26);
}

.impact-description {
  color: #6f4d3f;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.impact-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #c25a43;
  font-weight: 600;
}

.impact-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, #3bcf8f, #1f9a55);
  box-shadow: 0 24px 46px rgba(31, 154, 85, 0.3);
  padding: 16px 28px;
  font-size: 16px;
  min-width: 220px;
}

.impact-cta:hover,
.impact-cta:focus-visible {
  box-shadow: 0 28px 56px rgba(31, 154, 85, 0.36);
}

.pix-section {
  background: linear-gradient(
    180deg,
    rgba(191, 147, 38, 0.95) 0%,
    /* ouro queimado / marrom-dourado (topo) */ rgba(250, 215, 120, 0.95) 100%
      /* dourado claro e iluminado (base) */
  );

  border-radius: var(--radius-lg);
  padding: 26px 18px 32px;
  color: #6f4d3f;
  margin: 0 16px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(208, 144, 67, 0.25);
}

.pix-section h2 {
  color: #c25a43;
  font-size: 24px;
}

.pix-wrapper {
  display: grid;
  gap: 20px;
}

.pix-illustration img {
  max-width: 240px;
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(217, 116, 82, 0.26);
}

.pix-content {
  display: grid;
  gap: 18px;
}

.pix-generation-modal-content .pix-instructions {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(240, 126, 89, 0.18);
  box-shadow: 0 10px 24px rgba(217, 116, 82, 0.12);
  text-align: left;
  margin: 0 24px 24px;
}

.pix-instructions h3 {
  color: #c25a43;
  margin: 0 0 12px;
  font-size: 16px;
}

.pix-instructions ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #6f4d3f;
  font-size: 14px;
}

.pix-key-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(240, 126, 89, 0.18);
  box-shadow: 0 24px 48px rgba(217, 116, 82, 0.18);
  display: grid;
  gap: 12px;
}

.pix-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c25a43;
}

.pix-key {
  background: #fff4ee;
  padding: 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #8f3a30;
  word-break: break-word;
  box-shadow: inset 0 0 0 2px rgba(240, 126, 89, 0.25);
  letter-spacing: 0.4px;
}

.pix-recipient {
  font-size: 13px;
  color: #6f4d3f;
}

.pix-copy-btn {
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #3bcf8f, #1f9a55);
  color: var(--text-light);
  padding: 14px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 24px 44px rgba(31, 154, 85, 0.28);
  cursor: pointer;
  animation: pulse 2.2s ease-in-out infinite;
}

.pix-copy-btn:hover,
.pix-copy-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(31, 154, 85, 0.34);
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 24px 44px rgba(232, 125, 103, 0.28);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 28px 48px rgba(232, 125, 103, 0.34);
  }
}

.copy-feedback {
  display: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 120%);
  background: rgba(15, 32, 62, 0.92);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(15, 32, 62, 0.35);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}

.toast--visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.buddies-section {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 246, 236, 0.4) 100%
  );
  border-radius: var(--radius-lg);
  padding: 20px 16px 24px;
  box-shadow: var(--shadow-card);
  margin: 0 16px;
  text-align: center;
}

.buddy-slider {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
}

.buddy-track {
  display: flex;
  transition: transform 0.4s ease;
}

.buddy-card {
  min-width: 100%;
  background: #fffdfa;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 22px rgba(143, 119, 95, 0.1);
  padding: 18px 22px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.buddy-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(143, 119, 95, 0.12);
}

.buddy-copy {
  display: grid;
  gap: 8px;
}

.buddy-copy h3 {
  margin: 0;
  color: #6b5447;
  font-size: 18px;
}

.buddy-copy p {
  margin: 0;
  color: #5f534a;
  line-height: 1.5;
}

.buddy-controls {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.buddy-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #f9e4d2;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.buddy-dot.active {
  background: #e9c3a7;
  transform: scale(1.2);
}

.buddy-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(233, 195, 167, 0.22);
  color: #7b6253;
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.buddy-arrow:hover {
  transform: translateY(-2px);
  background: rgba(233, 195, 167, 0.34);
}

.social-section {
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(16, 36, 60, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 18px 30px;
  box-shadow: 0 16px 28px rgba(16, 36, 60, 0.12);
  margin: 0 16px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  color: #2a2a2a;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(16, 36, 60, 0.12);
  box-shadow: 0 12px 24px rgba(16, 36, 60, 0.08);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(16, 36, 60, 0.16);
}

.si {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.si-ig {
  background-image: url("../images/Instagram_icon.png");
}

.si-tk {
  background-image: url("../images/3046121.png");
  background-size: cover;
}

.si-yt {
  background-image: url("../images/image-removebg-preview-_1_.webp");
}

.si-fb {
  background-image: url("../images/Facebook_Logo.png");
}

.social-cta {
  margin-top: 22px;
  background: linear-gradient(135deg, #2ecc71, #1f9a55);
  box-shadow: 0 20px 38px rgba(31, 154, 85, 0.28);
}

.social-cta:hover,
.social-cta:focus-visible {
  box-shadow: 0 24px 48px rgba(31, 154, 85, 0.34);
}

.footer {
  margin-top: 20px;
  background: #2b3038;
  color: #f5f5f5;
  padding: 32px 20px 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.footer-info {
  text-align: center;
  display: grid;
  gap: 8px;
}

.footer-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.footer-info p {
  margin: 0;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
}

.footer-links,
.footer-social {
  text-align: center;
  display: grid;
  gap: 10px;
}

.footer-links h3,
.footer-social h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links a,
.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .crisis-headline {
    margin: 24px auto 28px;
    max-width: 760px;
    padding: 28px 32px;
  }

  .crisis-headline h2 {
    font-size: 24px;
  }

  .crisis-headline p {
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .footer-info {
    text-align: left;
  }

  .footer-links,
  .footer-social {
    text-align: left;
  }

  .social-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .buddy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 480px) {
  .buddy-card img {
    height: 180px;
  }
}
.toastfy {
  position: fixed;
  top: -60px; /* começa fora da tela */
  left: 50%;
  transform: translateX(-50%);
  background: #2ecc71; /* verde premium */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.4s ease, top 0.4s ease;
}

.toastfy--visible {
  top: 20px; /* posição final */
  opacity: 1;
}

/* Modal de Doação */
.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.donation-modal[aria-hidden="false"] {
  display: flex;
}

.donation-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: overlayFadeIn 0.3s ease;
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.donation-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 1;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.donation-modal-content {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 60%,
    rgba(250, 215, 120, 0.4) 80%,
    rgba(191, 147, 38, 0.95) 100%
  );
}

.donation-transparency {
  background: transparent;
  position: relative;
  z-index: 2;
}

.donation-modal-content::-webkit-scrollbar {
  width: 6px;
}

.donation-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.donation-modal-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.donation-modal-content::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.donation-modal-header {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #f2b341 0%, #f2c83e 50%, #d4af37 100%);
  flex-shrink: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.donation-modal-content > *:not(.donation-modal-header):not(.donation-modal-close) {
  padding-left: 32px;
  padding-right: 32px;
}

.donation-modal-content > .donation-modal-title {
  padding-top: 32px;
}

.donation-modal-content > *:last-child:not(.donation-modal-header):not(.donation-modal-close):not(.donation-transparency) {
  padding-bottom: 32px;
}

.donation-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 22px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-weight: 300;
}

.donation-modal-close:hover {
  background: #f3f4f6;
  color: #374151;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.donation-modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

.donation-modal-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  text-transform: none;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.donation-modal-subtitle {
  margin: 0 0 32px;
  font-size: 15px;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
}

.donation-amounts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 32px 24px;
}

.donation-amount-btn {
  position: relative;
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.donation-amount-btn:hover {
  border-color: #9ca3af;
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.donation-amount-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.donation-amount-btn--popular {
  background: #ecfdf5;
  border-color: #10b981;
  border-width: 2px;
}

.donation-amount-btn--popular:hover {
  background: #d1fae5;
  border-color: #059669;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.donation-amount-text {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.donation-amount-btn--popular {
  padding: 0;
}

.donation-amount-btn--popular .donation-amount-text {
  color: #065f46;
  font-weight: 700;
  position: relative;
  top: 0;
  transform: none;
}

.popular-badge {
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #10b981;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.2;
  white-space: nowrap;
  z-index: 2;
  margin: 0;
}

.popular-badge::before {
  content: "★";
  font-size: 9px;
  color: #ffffff;
  display: inline-block;
  margin-right: 3px;
}

.donation-transparency {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: transparent;
  border-radius: 0;
  margin: 0;
  border: none;
  transition: none;
  box-shadow: none;
  text-shadow: none !important;
  filter: none !important;
  outline: none !important;
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 40px;
  padding-bottom: 32px;
}

.transparency-logo {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: 8px;
  max-width: 120px;
}

.transparency-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.donation-transparency:hover {
  box-shadow: 0 12px 32px rgba(208, 144, 67, 0.3);
}

.transparency-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
  stroke-width: 2.5;
}

.transparency-text {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.4;
}

/* Modal de Geração PIX */
.pix-generation-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pix-generation-modal[aria-hidden="false"] {
  display: flex;
}

.pix-generation-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: modalFadeIn 0.3s ease;
}

.pix-generation-modal-content > *:not(.donation-modal-header):not(.donation-modal-close) {
  padding-left: 24px;
  padding-right: 24px;
}

.pix-generation-modal-content > .donation-modal-title {
  padding-top: 20px;
}

.pix-generation-modal-content > *:last-child:not(.donation-modal-header):not(.donation-modal-close) {
  padding-bottom: 32px;
}

.pix-generation-wrapper {
  display: grid;
  gap: 20px;
  margin: 20px 24px;
}

.pix-qr-code-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #fff4ee;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 126, 89, 0.18);
  min-height: 200px;
}

.pix-qr-code-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.pix-amount-display {
  display: block;
  font-size: 14px;
  color: var(--text-600);
  margin-top: 8px;
  padding: 10px;
  background: rgba(242, 177, 141, 0.15);
  border-radius: 8px;
  text-align: center;
}

.pix-amount-display strong {
  color: var(--blue-700);
  font-size: 18px;
}

@media (min-width: 480px) {
  .donation-amounts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .donation-modal {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .donation-modal-content {
    max-width: 600px;
  }

  .donation-modal-content > *:not(.donation-modal-header):not(.donation-modal-close) {
    padding-left: 40px;
    padding-right: 40px;
  }

  .donation-modal-content > .donation-modal-title {
    padding-top: 40px;
  }

  .donation-modal-content > *:last-child:not(.donation-modal-header):not(.donation-modal-close) {
    padding-bottom: 40px;
  }

  .donation-modal-title {
    font-size: 28px;
  }

  .donation-modal-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .donation-amounts-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0 40px 28px;
  }

  .donation-amount-btn {
    padding: 22px 16px;
    min-height: 84px;
    font-size: 19px;
  }

  .donation-transparency {
    margin: 0 auto 40px;
    padding: 12px 20px;
  }

  .transparency-text {
    font-size: 14px;
  }

  .pix-generation-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
