/* ==========================================================================
   IMPORTAÇÃO E VARIÁVEIS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #013a7f;
  --primary-light: #e6f0fa;
  --primary-dark: #012a5e;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-body: #f7f4ed; /* Bege elegante */
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

  /* Variáveis do Pix Verde */
  --g:        #3a9e6f;
  --g-dark:   #2d7d57;
  --g-deeper: #1f5c3f;
  --g-light:  rgba(255,255,255,.15);
  --g-border: rgba(255,255,255,.25);
}

/* ==========================================================================
   RESET BÁSICO E CONFIGURAÇÕES GERAIS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  overflow-x: hidden;
  overscroll-behavior-y: none;
  height: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

body {
  background-color: var(--bg-body) !important;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container Principal Compacto (Mobile-First) */
.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 90px 1rem 1rem 1rem !important; /* Espaço para o cabeçalho fixo */
  background-color: #f6eacf !important;
  min-height: 100%;
  overflow-x: hidden;
}

/* Transforma todas as seções normais em cards brancos */
section:not(.prato-sec):not(.pix-sec):not(.org-card):not(.pix-donate-sec) {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 0.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  margin-top: 30px;
}

/* ==========================================================================
   CABEÇALHO (HEADER)
   ========================================================================== */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0;
  background: var(--white);
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  max-width: 600px !important;
  z-index: 999 !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.header img {
  max-height: 100px;
}

/* ==========================================================================
   BOTÕES E COMPONENTES COMUNS
   ========================================================================== */
.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
  flex-wrap: nowrap;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  margin-top: 10px;
  animation: pulse-btn 1.9s ease-out infinite !important;
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-primary:active {
  animation: none !important;
  transform: scale(.97) !important;
}

.section-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 0 !important;
  padding-bottom: 1.5rem !important;
  text-align: center;
}

.hero-title-block {
  background: linear-gradient(to bottom, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 100%);
  padding: 14px calc(16px + 1rem) 8px;
  position: relative;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: calc(16px + 1rem);
  padding-right: calc(16px + 1rem);
}

.hero-title-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px 10px 0 0;
  border-top: 3px solid #013a7f;
  border-left: 3px solid #013a7f;
  border-right: 3px solid #013a7f;
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  pointer-events: none;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  margin-top: 10px;
}

.hero h1 em {
  font-style: normal;
  color: #f59e0b;
  position: relative;
}

.hero-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-sub strong {
  color: var(--primary-dark);
}

/* Prova Social */
.sp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  justify-content: center;
}

.sp-avatars {
  display: flex;
}

.sp-av {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #f6eacf;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  margin-left: -6px;
}

.sp-av:first-child {
  margin-left: 0;
}

.sp-text {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-main);
}

.sp-text span {
  color: var(--primary);
}

/* Caixa de Meta / Progresso */
.meta-box {
  background: var(--primary-light);
  border: 1px solid #c7dbf5;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.meta-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-live-dot {
  width: 7px;
  height: 7px;
  background: var(--danger);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

.meta-pct-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  min-width: 42px;
  text-align: center;
}

.meta-track {
  width: 100%;
  height: 11px;
  background: rgba(1, 58, 127, .12);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 10px;
}

.meta-fill {
  height: 100%;
  width: 0%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), #2e7fd4);
  transition: width 1.7s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.meta-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,.45) 80%, transparent 100%);
  animation: shine 2.2s ease-in-out infinite;
}

.meta-stats {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
}

.meta-divider {
  height: 26px;
  background: rgba(1, 58, 127, .15);
}

.meta-stat {
  text-align: center;
}

.meta-stat strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 1px;
}

.meta-stat span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Versículo */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 0.8rem;
}

.verse-area {
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.verse-bar {
  width: 2px;
  height: 32px;
  background: #013a7f;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: .5;
}

.verse-quote {
  font-size: 0.73rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 3px;
  opacity: 1;
  transition: opacity .45s ease;
}

.verse-quote.fade {
  opacity: 0;
}

.verse-ref {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ORG-CARD (DADOS CNPJ & PRESTAÇÃO)
   ========================================================================== */
.org-card {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  background: var(--primary-light);
  border: 1px solid #c7dbf5;
  border-radius: var(--radius);
  overflow: visible;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.org-col {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.8rem 1rem;
}

.org-col-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.org-col-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.org-col-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.org-col-value {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.org-divider {
  background: #c7dbf5;
  height: 100%;
}

.org-badge {
  grid-column: 1 / -1;
  border-top: 1px solid #c7dbf5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--white);
  letter-spacing: 0.02em;
}

.org-badge svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Botão Prestação de Contas */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #c7dbf5;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}

.pc-btn:hover {
  background: var(--primary-light);
  box-shadow: 0 2px 8px rgba(1, 58, 127, .12);
}

.pc-btn svg {
  flex-shrink: 0;
  transition: transform .25s;
}

.pc-btn.open svg:last-child {
  transform: rotate(180deg);
}

/* Dropdown Prestação de Contas */
.pc-dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #c7dbf5;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(1, 42, 94, .13);
  z-index: 200;
  overflow: hidden;
}

.pc-dropdown.open {
  display: block;
}

.pc-dropdown-header {
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-list {
  padding: 6px 0;
}

.pc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.75rem;
}

.pc-row:last-child {
  border-bottom: none;
}

.pc-row-label {
  color: var(--text-main);
  line-height: 1.3;
  flex: 1;
}

.pc-row-val {
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.pc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  background: var(--primary-light);
  border-top: 1.5px solid #c7dbf5;
  font-size: 0.78rem;
}

.pc-total-label {
  font-weight: 700;
  color: var(--primary-dark);
}

.pc-total-val {
  font-weight: 800;
  color: var(--primary);
}

/* ==========================================================================
   SEÇÃO MISSÃO
   ========================================================================== */
.missao-sec {
  padding: 2rem 1.2rem;
}

.missao-sec h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.missao-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.missao-img-wrap img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
}

.missao-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(1, 42, 94, .7));
  padding: 1.5rem 1rem 0.75rem;
}

.missao-img-overlay span {
  color: rgba(255, 255, 255, .85);
  font-size: 0.78rem;
  font-weight: 600;
}

.missao-text {
  font-size: 0.93rem;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.missao-text strong {
  color: var(--primary-dark);
}

/* ==========================================================================
   SEÇÃO PRATO CHEIO
   ========================================================================== */
.prato-sec {
  background: var(--primary-light);
  border-top: 1px solid #c7dbf5;
  border-bottom: 1px solid #c7dbf5;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.prato-sec h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.prato-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
}

.prato-img-wrap img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
}

.prato-text {
  font-size: 0.93rem;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prato-text strong {
  color: var(--primary-dark);
}

.urgency-card {
  background: var(--white);
  border: 1px solid #fde68a;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.urgency-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.urgency-text {
  font-size: 0.87rem;
  color: var(--text-main);
  line-height: 1.6;
}

.urgency-text strong {
  color: var(--primary-dark);
}

/* ==========================================================================
   SEÇÃO COMO DOAR PIX (BOX VERDE)
   ========================================================================== */
.pix-donate-sec {
  background: linear-gradient(160deg, #3d9140 0%, #4CAF50 50%, #5cb85c 100%);
  padding: 32px 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
}

.pix-donate-container {
  max-width: 480px;
  margin: 0 auto;
}

.pix-donate-card {
  background: #fff;
  border-radius: 22px;
  border: 2.5px solid #81C784;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 0 0 6px rgba(255,255,255,0.5);
  padding: 28px 24px 24px;
  font-family: 'Inter', sans-serif;
}

.pix-donate-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pix-donate-logo-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(76,175,80,0.35);
}

.pix-donate-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #43A047;
  letter-spacing: -0.5px;
}

.pix-donate-copy-area {
  background: #f1f8e9;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  border: 1.5px solid #a5d6a7;
}

.pix-donate-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #43A047;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pix-donate-key {
  font-size: 1.25rem;
  font-weight: 800;
  color: #388E3C;
  background: #fff;
  border: 2px dashed #66BB6A;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  user-select: all;
  word-break: break-all;
}

.pix-donate-btn {
  width: 100%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 4px 0 #388E3C, 0 6px 16px rgba(76,175,80,0.3);
  transition: all 0.18s ease;
}

.pix-donate-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pix-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #388E3C, 0 10px 22px rgba(76,175,80,0.4);
}

.pix-donate-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #388E3C;
}

.pix-donate-btn.copied {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 0 #047857, 0 6px 16px rgba(16,185,129,0.35);
}

.pix-donate-divider {
  border: none;
  border-top: 1.5px dashed #e2e8f0;
  margin: 18px 0;
}

.pix-donate-recipient-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pix-donate-recipient-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #94a3b8;
  text-transform: uppercase;
}

.pix-donate-recipient-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
}

.pix-donate-recipient-cnpj {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.pix-donate-steps-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pix-donate-steps-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #43A047;
  text-transform: uppercase;
}

.pix-donate-steps-list {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
}

.pix-donate-steps-list li {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.45;
}

.pix-donate-steps-list li strong {
  color: #43A047;
}

.pix-donate-footer {
  text-align: center;
  color: white;
  font-size: 0.83rem;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
}

/* Toast do PIX Copiado */
.pix-donate-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  width: 90%;
  max-width: 360px;
}

.pix-donate-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.pix-donate-toast-inner {
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 3px rgba(76,175,80,0.15);
  border-left: 5px solid #66BB6A;
}

.pix-donate-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(76,175,80,0.35);
}

.pix-donate-toast-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.pix-donate-toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pix-donate-toast-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.pix-donate-toast-text span {
  font-size: 0.8rem;
  color: #64748b;
}

/* ==========================================================================
   QUEM SOMOS & SLIDER DE IMAGENS
   ========================================================================== */
.quem-somos {
  padding: 2rem 0;
}

.qs-header {
  padding: 0 !important;
  margin-bottom: 1.4rem;
}

.qs-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.7rem;
}

.qs-header p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.qs-header p strong {
  color: var(--primary-dark);
}

.qs-slider-wrap {
  overflow: visible;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 1rem;
}

.qs-track {
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 1.2rem;
  padding-bottom: 6px;
}

.qs-track::-webkit-scrollbar {
  display: none;
}

.qs-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}

.qs-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.qs-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(1,42,94,.82));
  padding: 2.5rem 1rem 0.9rem;
}

.qs-caption-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}

.qs-caption-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.qs-caption-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

.qs-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.4rem;
}

.qs-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  transition: width .3s ease, background .3s ease;
}

.qs-dot.active {
  width: 20px;
  background: var(--primary);
}

.qs-footer {
  padding: 0 !important;
}

/* ==========================================================================
   PARA ONDE VAI A DOAÇÃO (IMPACT LIST)
   ========================================================================== */
.impact-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.impact-item.pos {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.impact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: white;
}

.icon-neg {
  background: var(--danger);
}

.icon-pos {
  background: var(--success);
}

.impact-text {
  font-size: 0.85rem;
  line-height: 1.3;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  transition: transform 0.25s;
}

.faq-answer {
  display: none;
  padding-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   LOCALIZAÇÃO E MAPAS
   ========================================================================== */
.loc-sec {
  padding: 1rem 1.2rem !important;
}

.loc-sec h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.loc-sub {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.map-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.addr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.addr-main {
  padding: 1rem 1rem 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.addr-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 1px;
}

.addr-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.addr-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-maps {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .15s;
  text-decoration: none;
}

.btn-maps:hover {
  background: var(--primary-dark);
}

.btn-maps:active {
  transform: scale(.98);
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
  background: var(--primary-dark);
  text-align: center;
  padding: 2rem 0;
  margin-top: 0rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.footer-logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-name span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  color: rgba(255, 255, 255, .7);
}

.social-btn:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px);
}

.social-btn svg {
  display: block;
}

.footer-info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-info-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, .5);
}

.footer-info-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}

.footer-info-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, .35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-info-val {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  text-decoration: none;
}

a.footer-info-val:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.footer-cnpj {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .25);
}

/* Links de Políticas */
.footer-policy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.footer-policy-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-policy-btn:hover {
  color: rgba(255, 255, 255, .9);
}

.footer-policy-sep {
  color: rgba(255, 255, 255, .25);
  font-size: 0.75rem;
}

/* ==========================================================================
   MODAL DE DOAÇÃO
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 42, 94, .6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 520px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.34, 1.25, .64, 1);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem 0.6rem;
  flex-shrink: 0;
  border-bottom: none;
  box-shadow: none;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.modal-close {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: #fee2e2;
  color: var(--danger);
  border-color: #fecaca;
}

/* Abas */
.modal-tabs {
  display: flex;
  margin: 0.4rem 1.4rem 0;
  background: var(--primary-light);
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
}

.modal-tab {
  flex: 1;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .25s, color .25s, box-shadow .25s;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.modal-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(1, 58, 127, .3);
}

/* Indicador Tipo Doação */
.donation-type-indicator {
  display: none;
  margin: 0.5rem 1.4rem 0;
  background: var(--primary-light);
  border: 1px solid #c7dbf5;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  flex-shrink: 0;
}

.donation-type-indicator.mensal {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.4rem;
  scrollbar-width: none;
}

.modal-body::-webkit-scrollbar {
  display: none;
}

/* Grade de Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1.2rem;
}

.val-btn {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 6px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.val-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.val-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(1, 58, 127, .3);
}

.val-btn.popular::before {
  content: 'Popular';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.5rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 0 9px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Input Customizado */
.custom-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}

.custom-input-wrap:focus-within {
  border-color: var(--primary);
}

.currency-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 14px;
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
}

.custom-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  background: var(--white);
}

/* Chip de Valor Selecionado */
.selected-amount-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1.5px solid #c7dbf5;
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 1.2rem;
}

.chip-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chip-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* Formulários do Modal */
.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 5px;
}

.form-group label .req {
  color: var(--danger);
}

.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 58, 127, .1);
}

.form-input::placeholder {
  color: #cbd5e1;
}

.form-input:disabled {
  background: #f8fafc;
  color: var(--text-muted);
}

/* Checkbox anônimo */
.anon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.anon-row input[type=checkbox] {
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.anon-row span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
}

/* Card Turbinar Doação */
.turbine-card {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1.5px solid #fde68a;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
  text-align: left;
}

.turbine-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(245, 158, 11, .18);
}

.turbine-card.checked {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
}

.turbine-card input[type=checkbox] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.turbine-text strong {
  font-size: 0.88rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.turbine-text p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Voltar etapa */
.step-back {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color .2s;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.step-back:hover {
  color: var(--primary);
}

/* Footer do Modal */
.modal-footer {
  padding: 0.8rem 1.4rem 1.4rem;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.btn-donate-main {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  animation: pulse-btn 1.9s ease-out infinite;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-donate-main:hover {
  background: var(--accent-hover);
}

.btn-donate-main:active {
  animation: none;
  transform: scale(.98);
}

.modal-footer-safe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Loading de Geração de Pix */
.donation-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  gap: 1.2rem;
  text-align: center;
  min-height: 280px;
}

.loading-spinner {
  width: 46px;
  height: 46px;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

.loading-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.loading-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Controle de Passos (Steps) */
.donation-step {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.donation-step.active {
  display: flex;
}

.donation-step.active .modal-body {
  flex: 1;
  overflow-y: auto;
}

/* ==========================================================================
   MODAL DE POLÍTICAS DO SITE
   ========================================================================== */
.policy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 42, 94, .65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.policy-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.policy-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(.94) translateY(16px);
  transition: transform .35s cubic-bezier(.34, 1.25, .64, 1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .2);
}

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

.policy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.policy-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #012a5e;
  margin: 0;
}

.policy-close-btn {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.policy-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fecaca;
}

.policy-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.75;
  text-align: left;
}

.policy-modal-body h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #012a5e;
  margin: 1.4rem 0 0.4rem;
}

.policy-modal-body h2:first-child {
  margin-top: 0;
}

.policy-modal-body p {
  margin-bottom: 0.5rem;
}

.policy-modal-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.policy-modal-body ul li {
  margin-bottom: 4px;
}

.policy-modal-footer {
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.policy-close-main-btn {
  width: 100%;
  background: #013a7f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}

.policy-close-main-btn:hover {
  background: #012a5e;
}

/* ==========================================================================
   VIDEO ASPECT RATIO 16:9
   ========================================================================== */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background-color: #000;
  margin-bottom: 1.2rem;
}

.video-wrapper iframe, 
.video-wrapper video, 
.video-wrapper vturb-smartplayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes pulse-btn {
  0%   { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 0 rgba(245,158,11,.55); }
  65%  { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 14px rgba(245,158,11,0); }
  100% { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 0 rgba(245,158,11,0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .2; }
}

@keyframes shine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

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

/* ==========================================================================
   RESPONSIVIDADE E DESKTOP GRID (MEDIAS QUERIES)
   ========================================================================== */
@media (max-width: 480px) {
  .pix-donate-card {
    padding: 22px 16px 20px;
    border-radius: 18px;
  }
  
  .pix-donate-key {
    font-size: 1rem;
  }
  
  .pix-donate-btn {
    font-size: 0.85rem;
    padding: 12px 14px;
  }
}

@media (min-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  body {
    background-color: #f6eacf !important;
  }

  /* Redefine o Container para formato grid no Desktop */
  .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 100px 2rem 2rem 2rem !important;
    background: transparent !important;
  }

  /* Header 100% no Desktop */
  .header {
    max-width: 100% !important;
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    padding: 0.4rem 3rem !important;
    display: flex !important;
    justify-content: center !important;
  }

  .header img {
    max-height: 70px !important;
  }

  /* Estrutura de Duas Colunas do Layout */
  .desktop-layout {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .desktop-main {
    min-width: 0;
  }

  .desktop-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  /* Aumentos de tamanho para telas maiores */
  .hero h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }

  .hero-sub {
    font-size: 1.05rem !important;
  }

  .missao-sec h2,
  .prato-sec h2,
  .qs-header h2,
  .section-title {
    font-size: 1.6rem !important;
  }

  .missao-img-wrap img,
  .prato-img-wrap img {
    height: 280px !important;
  }

  /* Grid do Slider Quem Somos */
  .qs-card {
    flex: 0 0 46% !important;
  }

  .qs-card img {
    height: 280px !important;
  }

  .qs-slider-wrap {
    padding-left: 0 !important;
  }

  .qs-track {
    padding-right: 0 !important;
  }

  /* Grid 2 colunas para impactos */
  .impact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .impact-item:last-child {
    grid-column: 1 / -1;
  }

  .map-wrap {
    height: 320px !important;
  }

  .pix-donate-sec {
    border-radius: 14px !important;
  }

  .modal-overlay {
    align-items: center !important;
  }

  .modal-box {
    border-radius: 24px !important;
    max-width: 520px !important;
    max-height: 85vh !important;
  }

  /* org-card margin-bottom maintained from mobile */

  .btn-primary {
    font-size: 1.05rem !important;
    padding: 1.1rem !important;
  }

  /* Ajustes do Footer no Desktop */
  .footer {
    border-radius: 0 !important;
    margin: 2rem -2rem -2rem -2rem !important;
    width: calc(100% + 4rem) !important;
  }

  .footer-top {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    max-width: 1160px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    box-sizing: border-box !important;
  }

  .footer-tagline {
    max-width: none !important;
    text-align: right !important;
  }

  .footer-socials,
  .footer-bottom {
    max-width: 1160px !important;
    margin: 0 auto !important;
  }

  .footer-info {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1160px !important;
    margin: 0 auto !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .footer-info-row {
    border-bottom: none !important;
    border-right: 1px solid rgba(255,255,255,.08) !important;
    padding: 1rem 1.4rem !important;
  }

  .footer-info-row:last-child {
    border-right: none !important;
  }
}

@media (min-width: 1100px) {
  .hero h1 {
    font-size: 2.4rem !important;
  }

  .qs-card {
    flex: 0 0 38% !important;
  }
}
