/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1a73e8;
  --blue-dk:   #1558b0;
  --green:     #27ae60;
  --yellow:    #f5a623;
  --red:       #e74c3c;

  /* Light theme */
  --bg:        #f4f4f4;
  --bg-card:   #ffffff;
  --bg-input:  #f5f5f5;
  --border:    #e0e0e0;
  --text-1:    #111111;
  --text-2:    #555555;
  --text-3:    #999999;

  --green-accent: #22c55e;
  --green-dark:   #166534;

  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --radius:    14px;
  --font:      'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-1);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.3rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  align-items: center;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-2);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text-1); text-decoration: none; }

.btn-nav {
  background: var(--blue);
  color: var(--text-1) !important;
  padding: .4rem .95rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background .2s;
}
.btn-nav:hover { background: var(--blue-dk); }

.nav-burger {
  display: none;
  background: #f0f0f0;
  border: none;
  border-radius: 10px;
  padding: .45rem .7rem;
  font-size: 1.25rem;
  color: var(--text-1);
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: .5rem 1.25rem 1rem;
  gap: .85rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile a {
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 500;
}
.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  width: 100%;
  overflow: hidden;
  padding: 1rem 1rem 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  max-height: 460px;
}

/* ── SECTION CARDS (vídeo + história) ── */
.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1.25rem;
  margin-bottom: 1rem;
}

.section-title {
  display: inline-block;
  color: var(--green-accent);
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: .3rem;
  border-bottom: 3px solid var(--green-accent);
  margin-bottom: .9rem;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1rem;
}

.section-card .video-wrapper { margin-bottom: 0; }

/* ── MOBILE INTRO (hidden on desktop) ── */
.mobile-intro { display: none; }

/* ── MAIN LAYOUT ── */
.main-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

/* ── LEFT COLUMN ── */
.col-left { min-width: 0; }

.campaign-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: .5rem;
}

.campaign-meta {
  color: var(--text-2);
  font-size: .88rem;
  margin-bottom: 1rem;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(39,174,96,.12);
  color: #4caf7d;
  font-weight: 600;
  font-size: .82rem;
  padding: .32rem .85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(39,174,96,.25);
}

/* ── VIDEO ── */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: #000;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(.75);
  transform: scale(1.05);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--green-accent);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: .75rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(34,197,94,.4);
  transition: transform .15s, opacity .15s;
  pointer-events: none;
}
.video-wrapper:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.04);
}

/* ── CAMPAIGN BODY ── */
.campaign-body { margin-bottom: 2rem; }

.campaign-body p {
  margin-bottom: 1rem;
  color: var(--text-2);
  font-size: .97rem;
}

.warning-box {
  border-left: 4px solid var(--green-accent);
  padding: .4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.4;
  background: transparent;
}

.campaign-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 1.25rem 0 .6rem;
}

.donation-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.donation-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .6rem .85rem;
  font-size: .88rem;
  color: var(--text-2);
}

.info-box {
  background: rgba(26,115,232,.05);
  border-left: 4px solid var(--blue);
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid rgba(26,115,232,.15);
}
.info-box h4 { font-size: .95rem; margin-bottom: .4rem; color: var(--blue); }
.info-box p { margin: 0; font-size: .88rem; color: var(--text-2); }

/* ── UPDATES ACCORDION ── */
.updates-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: var(--shadow);
}

.updates-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.updates-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: .45rem;
}

.updates-count { color: var(--text-1); }

.updates-underline {
  width: 56px;
  height: 3px;
  background: var(--green-accent);
  border-radius: 2px;
}

.updates-chevron {
  color: var(--text-2);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
  padding-top: .1rem;
}

.updates-chevron.open { transform: rotate(180deg); }

.updates-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.updates-timeline {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
}

.update-item {
  display: flex;
  gap: 1rem;
}

.update-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.update-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(34,197,94,.08);
  border: 2px solid var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  flex-shrink: 0;
}

.update-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: .3rem 0;
  min-height: 1rem;
}

.update-item:last-child .update-line { display: none; }

.update-content {
  padding-bottom: 1.5rem;
  flex: 1;
  min-width: 0;
}

.update-item:last-child .update-content { padding-bottom: 0; }

.update-date {
  display: block;
  font-size: .7rem;
  color: var(--green-accent);
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: .2rem;
}

.update-title {
  display: block;
  font-size: .9rem;
  color: var(--text-1);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .3rem;
}

.update-desc {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}

/* ── RIGHT COLUMN ── */
.col-right {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── CARD ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

/* ── PROGRESS CARD ── */
.progress-values {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .5rem;
}
.raised {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
}
.goal {
  font-size: .88rem;
  color: var(--text-2);
}

.progress-bar-wrap {
  background: #e0e0e0;
  border-radius: 99px;
  height: 12px;
  overflow: hidden;
  margin-bottom: .75rem;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #4ea8f5);
  border-radius: 99px;
  transition: width .6s ease;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  color: var(--text-2);
}

/* ── DONATION CARD ── */
.donation-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: .75rem;
}

.preset-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: 1rem;
}

.amount-btn {
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .65rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s;
}
.amount-btn:hover,
.amount-btn.active {
  border-color: var(--green-accent);
  background: rgba(34,197,94,.12);
  color: var(--green-accent);
}

label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: .35rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* R$ prefix no input de valor */
.amount-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.amount-input-wrap:focus-within { border-color: var(--green-accent); }
.amount-prefix {
  padding: .6rem .75rem;
  font-size: .93rem;
  font-weight: 700;
  color: var(--text-2);
  border-right: 1px solid var(--border);
  background: var(--bg-input);
  flex-shrink: 0;
}
.amount-input-wrap input {
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 1;
}
.amount-input-wrap input:focus { outline: none; border: none; }

input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .6rem .85rem;
  font-size: .93rem;
  font-family: var(--font);
  background: var(--bg-input);
  color: var(--text-1);
  transition: border-color .2s;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.custom-amount-wrap,
.donor-name-wrap,
.message-wrap {
  margin-bottom: .85rem;
}

/* TOGGLE */
.toggle-label {
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: .85rem;
}
.toggle-label input[type="checkbox"] { display: none; }

.toggle-slider {
  position: relative;
  width: 40px; height: 22px;
  background: var(--border);
  border-radius: 99px;
  flex-shrink: 0;
  transition: background .2s;
}
.toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform .2s, background .2s;
}
.toggle-label input:checked + .toggle-slider { background: var(--green-accent); }
.toggle-label input:checked + .toggle-slider::after {
  transform: translateX(18px);
  background: #fff;
}

/* ── AMOUNT ERROR ── */
.amount-error {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  color: #dc2626;
  font-size: .85rem;
  font-weight: 600;
  padding: .65rem 1rem;
  text-align: center;
  margin-bottom: .75rem;
}

/* ── DONATE BUTTON ── */
.btn-donate {
  width: 100%;
  background: var(--green-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .8px;
  transition: opacity .2s, transform .1s;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(34,197,94,.25);
}
.btn-donate:hover { opacity: .9; transform: translateY(-1px); }
.btn-donate:active { transform: translateY(0); }

/* ── SECURITY BADGE ── */
.security-badge {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.15);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-bottom: .85rem;
}
.security-icon { font-size: 1.6rem; flex-shrink: 0; }
.security-badge div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.security-badge strong {
  font-size: .88rem;
  color: var(--text-1);
  font-weight: 700;
}
.security-badge span {
  font-size: .78rem;
  color: var(--text-2);
}

.donate-disclaimer {
  font-size: .74rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ── PIX ── */
.pix-section {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: .5rem;
}
.pix-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-2);
}
.pix-logo {
  background: #00b4d8;
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  padding: .2rem .55rem;
  border-radius: 4px;
  letter-spacing: 1px;
}
.pix-steps {
  list-style: decimal inside;
  font-size: .86rem;
  color: var(--text-2);
  margin-bottom: .85rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.pix-key-box {
  background: var(--bg-input);
  border: 1.5px dashed var(--blue);
  border-radius: 8px;
  padding: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .65rem;
}
#pixKey {
  font-size: .73rem;
  word-break: break-all;
  color: var(--text-2);
  flex: 1;
}
.btn-copy {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .4rem .7rem;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.btn-copy:hover { background: var(--blue-dk); }

.pix-security {
  font-size: .76rem;
  color: var(--green);
  text-align: center;
  font-weight: 500;
}

/* PIX: loading */
.pix-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding: 1.5rem 1rem;
  color: var(--text-2);
  font-size: .9rem;
}

.pix-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--green-accent);
  border-radius: 50%;
  animation: pix-spin .75s linear infinite;
}

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

/* PIX: QR code */
.pix-qr-wrap {
  display: flex;
  justify-content: center;
  margin: .85rem 0;
}

.pix-qr-img {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}

.pix-amount-label {
  text-align: center;
  color: var(--text-2);
  font-size: .88rem;
  margin-bottom: .75rem;
}

.pix-amount-label strong {
  color: var(--green-accent);
  font-size: 1.05rem;
}

.pix-key-text {
  font-size: .72rem;
  color: var(--text-2);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

/* PIX: polling indicator */
.pix-poll-status {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-2);
  margin: .75rem 0 .25rem;
}

.pix-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: pix-pulse 1.4s ease-in-out infinite;
}

@keyframes pix-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.65); }
}

/* PIX: sucesso */
.pix-success {
  text-align: center;
  padding: 1.5rem .5rem;
}

.pix-success-icon { font-size: 2.75rem; margin-bottom: .6rem; }

.pix-success h3 {
  color: var(--green-accent);
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.pix-success p {
  color: var(--text-2);
  font-size: .9rem;
}

/* PIX: erro */
.pix-error {
  text-align: center;
  padding: 1rem .5rem;
  color: #ff6b6b;
  font-size: .9rem;
}

.pix-error button {
  margin-top: .75rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: .5rem 1.1rem;
  border-radius: 8px;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s;
}

.pix-error button:hover { background: #e0e0e0; }

/* ── SHARE CARD ── */
.share-card h3 { font-size: .98rem; color: var(--text-1); margin-bottom: .3rem; }
.share-card p { font-size: .83rem; color: var(--text-2); margin-bottom: .85rem; }

.share-btns {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.btn-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: none;
  border-radius: 8px;
  padding: .65rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
  color: #fff;
}
.btn-share:hover { opacity: .88; }
.btn-share.whatsapp  { background: #25d366; }
.btn-share.facebook  { background: #1877f2; }
.btn-share.copy-link { background: #555; }

/* ── SUPPORTERS ── */
.supporters-inline { margin-bottom: 1rem; }

.supporters-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.supporters-carousel::-webkit-scrollbar { display: none; }

.supporter-card {
  display: flex;
  gap: .85rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  min-width: 240px;
  flex-shrink: 0;
}

.supporter-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.supporter-info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.supporter-info strong { font-size: .93rem; color: var(--text-1); }
.supporter-info span  { font-size: .8rem; color: var(--text-2); }
.supporter-info span:first-of-type { color: var(--green); font-weight: 700; }
.supporter-date { font-size: .76rem !important; }
.supporter-info p {
  font-size: .8rem;
  color: var(--text-2);
  font-style: italic;
  margin-top: .25rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}
.carousel-controls button {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--bg-input);
  color: var(--text-2);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .2s;
}
.carousel-controls button:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── FOOTER ── */
.footer { background: #f8f8f8; border-top: 1px solid var(--border); padding: 2rem 1.25rem; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer .nav-logo { color: var(--text-1); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.5rem;
}
.footer-links a { color: var(--text-3); font-size: .83rem; }
.footer-links a:hover { color: var(--text-1); }
.footer-copy { font-size: .78rem; color: var(--text-3); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #111;
  color: #fff;
  border: 1px solid #333;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  z-index: 999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Hero: padding lateral + cantos arredondados (sem forçar ratio) */
  .hero {
    padding: .75rem .75rem 0;
    max-height: none;
  }
  .hero-img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: none;
  }

  /* Mobile intro: aparece após o hero */
  .mobile-intro {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    padding: 1.1rem .75rem 1.25rem;
    background: #ffffff;
  }
  .mobile-title {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-1);
    letter-spacing: -.5px;
  }

  /* Creator info */
  .creator-row {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
  }
  .creator-heart {
    font-size: 1.15rem;
    color: var(--text-2);
    padding-top: .15rem;
  }
  .creator-details {
    display: flex;
    flex-direction: column;
    gap: .05rem;
  }
  .creator-label {
    font-size: .82rem;
    color: var(--text-2);
  }
  .creator-name {
    color: var(--green-accent);
    font-size: 1rem;
    font-weight: 700;
  }
  .creator-date-row {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .84rem;
    color: var(--text-2);
  }

  /* CTA verde */
  .btn-cta-mobile {
    display: block;
    width: 100%;
    background: var(--green-dark);
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    padding: .95rem;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: .6px;
    border: 1px solid #1e5c35;
  }

  /* Oculta título e meta dentro da col-left (já aparecem no mobile-intro) */
  .col-left .campaign-title,
  .col-left .campaign-meta {
    display: none;
  }

  /* Grid: coluna única */
  .main-container {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    padding: 0 .75rem;
  }

  /* col-right desce para depois da história */
  .col-right {
    position: static;
    order: 1;
  }

  /* Navbar: apenas logo + hambúrguer */
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .donation-list { grid-template-columns: 1fr; }
}
