@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* PIX Loading Spinner */
.pix-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f0e8e3;
  border-top-color: var(--primary, #E8481C);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ==================== DESIGN TOKENS ==================== */
:root {
  --primary: #E8481C;
  --primary-dark: #C83A10;
  --primary-light: #FF6B42;
  --primary-muted: rgba(232, 72, 28, 0.1);

  --warm-dark: #1A0E08;
  --warm-mid: #3D2218;
  --warm-text: #5C3D2E;
  --warm-soft: #8B6358;

  --bg-main: #FFFAF7;
  --bg-card: #FFFFFF;
  --bg-warm: #FFF5EF;
  --bg-footer: #1A0E08;

  --border: #EDE3DC;
  --border-warm: #D4B8AB;

  --green: #2DA44E;
  --green-light: #dcfce7;

  --font: 'Outfit', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(60, 20, 5, 0.06);
  --shadow-md: 0 8px 24px rgba(60, 20, 5, 0.10);
  --shadow-lg: 0 20px 50px rgba(60, 20, 5, 0.14);
  --shadow-cta: 0 8px 30px rgba(232, 72, 28, 0.40);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==================== BASE ==================== */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-main);
  color: var(--warm-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.navbar-logo .paw {
  font-size: 1.4rem;
}
.navbar-cta {
  background: var(--primary);
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(232, 72, 28, 0.3);
}
.navbar-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.hero-left {
  padding: 80px 5% 80px 7%;
  position: relative;
  z-index: 2;
}

.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-muted);
  border: 1px solid rgba(232, 72, 28, 0.25);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.urgency-tag .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--warm-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--warm-soft);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}

/* DONATION CARD inside HERO */
.donate-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
}

.donate-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--warm-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* Progress Bar */
.progress-wrapper {
  margin-bottom: 28px;
}
.progress-bar-container {
  background: #F0E8E3;
  border-radius: 99px;
  height: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.progress-raised {
  font-weight: 800;
  color: var(--warm-dark);
}
.progress-goal {
  color: var(--warm-soft);
  font-weight: 500;
}
.progress-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.progress-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--warm-soft);
}
.progress-meta-item strong {
  color: var(--warm-dark);
  font-weight: 700;
}

/* Amount Selector */
.amount-selector {
  margin-bottom: 20px;
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.amount-btn {
  background: var(--bg-warm);
  border: 2px solid var(--border);
  color: var(--warm-dark);
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
}
.amount-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-muted);
}
.amount-btn.active {
  border-color: var(--primary);
  background: var(--primary-muted);
  color: var(--primary);
}
.amount-btn .impact {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: inherit;
  margin-top: 3px;
  opacity: 0.75;
}
.amount-custom {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--warm-dark);
  background: white;
  outline: none;
  transition: var(--transition);
}
.amount-custom:focus {
  border-color: var(--primary);
}
.amount-custom::placeholder {
  color: #BBA89B;
  font-weight: 400;
}

.btn-donate-main {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 18px;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: var(--shadow-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-donate-main:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 72, 28, 0.5);
}
.btn-donate-main:active {
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--warm-soft);
  font-weight: 500;
}
.trust-item svg {
  flex-shrink: 0;
}

/* HERO RIGHT */
.hero-right {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-main) 0%, transparent 30%);
}

/* ==================== IMPACT NUMBERS ==================== */
.impact-bar {
  background: var(--warm-dark);
  padding: 32px 5%;
}
.impact-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.impact-stat {
  text-align: center;
  color: white;
}
.impact-stat-num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.impact-stat-label {
  font-size: 0.9rem;
  color: #C4A898;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== HOW IT WORKS / URGENCY ==================== */
.how-section {
  padding: 100px 5%;
  background: var(--bg-main);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-muted);
  color: var(--primary);
  border: 1px solid rgba(232,72,28,0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--warm-dark);
  letter-spacing: -1px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--warm-soft);
  margin-top: 14px;
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.impact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-warm);
}
.impact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.impact-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--warm-dark);
  margin-bottom: 12px;
}
.impact-card p {
  color: var(--warm-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.impact-card-amount {
  display: inline-block;
  background: var(--primary-muted);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

/* ==================== DOGS SECTION ==================== */
.dogs-section {
  padding: 100px 5%;
  background: var(--bg-warm);
}
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.dog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.dog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.dog-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.dog-card-body {
  padding: 24px;
}
.dog-card-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--warm-dark);
  margin-bottom: 4px;
}
.dog-card-detail {
  font-size: 0.9rem;
  color: var(--warm-soft);
  margin-bottom: 16px;
}
.dog-card-story {
  font-size: 0.95rem;
  color: var(--warm-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.dog-card-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ==================== STORY SECTION ==================== */
.story-section {
  padding: 100px 5%;
  background: white;
  overflow: hidden;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.story-image-wrapper {
  position: relative;
}
.story-image-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.story-badge-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.story-badge-label {
  font-size: 0.8rem;
  color: var(--warm-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.story-content .section-title {
  text-align: left;
  margin-bottom: 8px;
}
.story-content .story-lead {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 28px;
}
.story-content p {
  color: var(--warm-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-quote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--bg-warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--warm-dark);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
}
.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-cta);
  margin-top: 12px;
}
.story-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 72, 28, 0.5);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: 100px 5%;
  background: var(--bg-main);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--warm-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--warm-dark);
  line-height: 1.2;
}
.testimonial-since {
  font-size: 0.85rem;
  color: var(--warm-soft);
}
.testimonial-donated {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 100px 5%;
  background: var(--bg-warm);
}
.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--warm-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--primary-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: var(--transition);
  font-weight: 400;
}
.faq-question.active .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--warm-soft);
  font-size: 1rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ==================== URGENT CTA BANNER ==================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🐾';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: -50px;
  left: -50px;
  line-height: 1;
}
.cta-banner::after {
  content: '🐾';
  position: absolute;
  font-size: 16rem;
  opacity: 0.05;
  bottom: -40px;
  right: -30px;
  line-height: 1;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--primary);
  border: none;
  padding: 20px 48px;
  border-radius: var(--radius-pill);
  font-size: 1.25rem;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-cta-lg:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--bg-footer);
  color: white;
  padding: 60px 5% 40px;
  text-align: center;
}
footer .footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}
footer p {
  color: #8B6358;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
footer .footer-social a {
  color: #8B6358;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-social a:hover {
  color: var(--primary);
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 5, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: white;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-header-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  padding: 28px;
  text-align: center;
  color: white;
  position: relative;
}
.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.modal-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close-btn:hover {
  background: rgba(255,255,255,0.35);
}
.modal-body {
  padding: 32px;
}
.modal-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-soft);
  margin-bottom: 12px;
}
.modal-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.modal-amt-btn {
  background: var(--bg-warm);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--warm-dark);
  transition: var(--transition);
  text-align: center;
}
.modal-amt-btn:hover, .modal-amt-btn.active {
  border-color: var(--primary);
  background: var(--primary-muted);
  color: var(--primary);
}
.modal-impact {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  margin-top: 3px;
  opacity: 0.75;
}

/* PIX QR */
.pix-container {
  background: var(--bg-warm);
  border: 2px dashed var(--border-warm);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.pix-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.pix-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--warm-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pix-qr-box {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
}
.pix-code-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--warm-text);
  word-break: break-all;
  margin-bottom: 14px;
  text-align: left;
}
.btn-copy-pix {
  width: 100%;
  background: var(--warm-dark);
  color: white;
  border: none;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-copy-pix:hover {
  background: var(--primary-dark);
}
.copy-success-msg {
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--warm-soft);
  margin-top: 16px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    height: 320px;
  }
  .hero-left {
    padding: 60px 5%;
  }
  .donate-card {
    max-width: 100%;
  }
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-image-main {
    height: 360px;
  }
  .story-badge {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.4rem; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-amounts { grid-template-columns: repeat(2, 1fr); }
  .impact-bar-inner { flex-direction: column; align-items: center; }
  .navbar-logo span { font-size: 1.25rem; }
  .navbar-cta { padding: 9px 16px; font-size: 0.85rem; }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
