/* ================================================
   CÃES E GATOS EM SITUAÇÃO DE ABANDONO
   style.css - Design Premium Responsivo
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde: #2ecc71;
  --verde-dark: #27ae60;
  --verde-light: #a8e6cf;
  --laranja: #e67e22;
  --laranja-light: #f39c12;
  --marrom: #6b3f1f;
  --creme: #fdf6ec;
  --cinza: #f4f4f4;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 20px; /* Aumentado globalmente para 20px no desktop (texto 25% maior que o padrão) */
}

@media (max-width: 768px) {
  html {
    font-size: 17.5px; /* Aumentado para 17.5px no mobile para manter compatibilidade e legibilidade */
  }
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 1rem;
}

.container {
  max-width: 1140px; /* Aumentado de 1080px para 1140px */
  margin: 0 auto;
  padding: 0 28px;
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(46,204,113,0.85) 0%, rgba(39,174,96,0.7) 40%, rgba(107,63,31,0.8) 100%),
    url('./img/dog1.png') center/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  padding: 60px 24px 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeInUp 0.9s ease both;
}

.logo-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 3px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  animation: pulse-logo 3s ease-in-out infinite;
  overflow: hidden;
}

.logo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(42% at 50% 50%);
  transform: scale(1.2);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 7vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  font-weight: 800;
}

.hero-title span {
  display: block;
  font-size: 0.7em;
  color: var(--verde-light);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--verde-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 15px 36px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.btn-hero:hover {
  background: var(--verde-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  animation: bounce 2s ease infinite;
  z-index: 2;
}

/* ==============================
   SEÇÕES COMUNS
   ============================== */
section { padding: 80px 0; }

.badge {
  display: inline-block;
  background: var(--verde-light);
  color: var(--verde-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.badge-light {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.2;
}

.section-title.light { color: var(--white); }

/* ==============================
   SOBRE
   ============================== */
.sobre { background: var(--creme); text-align: center; }

.sobre-texto {
  font-size: 1.15rem; /* Aumentado de 1.12rem */
  color: var(--text-light);
  line-height: 1.95;
  max-width: 840px; /* Aumentado de 720px */
  margin: 0 auto 48px;
}

.sobre-texto strong { color: var(--verde-dark); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid var(--verde);
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.stat-num { font-size: 2rem; font-weight: 900; color: var(--verde-dark); line-height: 1; }
.stat-label { font-size: 0.85rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* ==============================
   CAMPANHAS EM ANDAMENTO
   ============================== */
.campanhas {
  position: relative;
  padding: 60px 0 100px; /* Reduzido topo de 100px para 60px para subir o título */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.campanhas .badge {
  margin-bottom: 48px; /* Aumentado de 14px para 48px para afastar bastante do card */
}

.campanhas-bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 1;
}

.campanhas-bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(0.9); /* Escurece bastante as fotos para o texto sobressair */
}

/* Overlay gradiente escuro de verde para preto sobre as imagens */
.campanhas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.45), rgba(17, 17, 17, 0.85));
  z-index: 2;
  pointer-events: none;
}

.campanhas .container {
  position: relative;
  z-index: 3;
}

.campanha-card-single {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.campanha-card-single:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.campanha-img-wrap {
  flex: 1;
  min-height: 380px;
  background: #eee;
  position: relative;
  overflow: hidden;
}

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

.campanha-img-wrap.duas-imagens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--white);
}

.campanha-content {
  flex: 1.2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.campanha-dog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.campanha-dog-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.campanha-dog-text p {
  margin-bottom: 12px; /* Espaçamento reduzido e mais elegante entre parágrafos */
}

.campanha-dog-text p:last-child {
  margin-bottom: 0;
}

.campanha-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.campanha-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.campanha-list li span {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  background: rgba(230, 126, 34, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

.campanha-dog-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
}

.meta-item {
  color: var(--text-light);
}

.meta-item strong {
  color: var(--text);
  font-weight: 700;
}

.btn-adotar-now {
  display: inline-block; /* Garante renderização correta de margens/paddings */
  align-self: flex-start;
  background: #27ae60; /* Fallback estático */
  background: var(--verde-dark);
  color: #ffffff; /* Fallback estático */
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 30px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.2);
  transition: var(--transition);
  text-align: center;
}

.btn-adotar-now:hover {
  background: #2ecc71; /* Fallback estático */
  background: var(--verde);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.35);
}

.btn-ajudar-hercules {
  display: inline-block; /* Garante renderização correta de margens/paddings */
  align-self: flex-start;
  background: transparent;
  color: #27ae60; /* Fallback estático */
  color: var(--verde-dark);
  border: 2px solid #27ae60; /* Fallback estático */
  border: 2px solid var(--verde-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 11px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.btn-ajudar-hercules:hover {
  background: #a8e6cf; /* Fallback estático */
  background: var(--verde-light);
  color: #27ae60; /* Fallback estático */
  color: var(--verde-dark);
  transform: translateY(-2px);
}

/* ==============================
   HISTÓRIA / FAQ
   ============================== */
.historia { background: var(--creme); text-align: center; }

.faq {
  max-width: 840px; /* Aumentado de 720px */
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 5px solid var(--verde);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(46,204,113,0.07); }

.faq-icon { transition: transform 0.35s ease; flex-shrink: 0; color: var(--verde-dark); }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 1.05rem; /* Aumentado de 1rem */
  color: var(--text-light);
  line-height: 1.85;
}

.faq-answer strong { color: var(--verde-dark); }

/* ==============================
   COMO AJUDAR
   ============================== */
.ajudar { background: var(--white); text-align: center; }
.ajudar-sub { color: var(--text-light); font-size: 1.05rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.ajudar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.ajudar-card {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.ajudar-card:hover {
  transform: translateY(-6px);
  border-color: var(--verde-light);
  box-shadow: var(--shadow-hover);
}

.ajudar-card.destaque {
  background: linear-gradient(135deg, var(--verde-dark), var(--verde));
  color: var(--white);
  border-color: transparent;
}

.ajudar-card.destaque h3,
.ajudar-card.destaque p { color: var(--white); }

.ajudar-icon { font-size: 3rem; margin-bottom: 16px; display: block; }

.ajudar-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.ajudar-card p { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; }
.ajudar-card.destaque p strong { color: var(--verde-light); }

.btn-card {
  display: inline-block;
  margin-top: 20px;
  background: var(--white);
  color: var(--verde-dark);
  padding: 12px 32px; /* Aumentado */
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.05rem; /* Aumentado de 0.95rem */
  text-decoration: none;
  transition: var(--transition);
}

.btn-card:hover { background: var(--verde-light); transform: scale(1.04); }

.frase-impacto {
  background: linear-gradient(135deg, var(--laranja), var(--laranja-light));
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--white);
}

.frase-impacto p { font-size: 1.15rem; font-weight: 700; line-height: 1.6; }
.frase-impacto p strong { font-size: 1.25em; }
.pata-dec { font-size: 2rem; opacity: 0.8; }

/* ==============================
   DOAÇÃO PIX
   ============================== */
.doacao {
  background: linear-gradient(135deg, #1a5c36 0%, #27ae60 50%, #2ecc71 100%);
  text-align: center;
  padding: 80px 0;
}

.doacao-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pix-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 48px 44px; /* Aumentado padding */
  max-width: 660px; /* Aumentado de 620px */
  margin: 0 auto 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pix-label {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem; /* Aumentado de 0.95rem */
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; /* Aumentado gap */
  margin-bottom: 24px;
}

.btn-valor {
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 16px 12px; /* Aumentado de 14px 10px */
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem; /* Aumentado de 1.05rem */
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.btn-valor:hover, .btn-valor.ativo {
  background: var(--white);
  color: var(--verde-dark);
  border-color: var(--white);
  transform: scale(1.05);
}

.btn-outro {
  grid-column: span 3;
  background: rgba(255,255,255,0.1);
  font-size: 0.95rem;
  border-style: dashed;
}

.valor-custom { margin-top: 4px; }

.valor-custom label {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.input-custom-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-prefix {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

#valor-custom-input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
}

#valor-custom-input::placeholder { color: rgba(255,255,255,0.5); }
#valor-custom-input:focus { border-color: var(--white); background: rgba(255,255,255,0.2); }

/* Remove number arrows */
#valor-custom-input::-webkit-inner-spin-button,
#valor-custom-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.btn-gerar {
  padding: 14px 20px;
  background: var(--white);
  color: var(--verde-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gerar:hover { background: var(--verde-light); transform: scale(1.03); }

/* PIX RESULTADO */
.pix-resultado { text-align: center; }

.pix-valor-selecionado {
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 28px;
  font-weight: 700;
}

.pix-valor-selecionado strong { font-size: 1.4em; color: var(--verde-light); }

.pix-qrcode-wrap { margin-bottom: 28px; }
.pix-qrcode-wrap .pix-label, .pix-copy-wrap .pix-label { text-align: center; margin-bottom: 14px; }

.qrcode-container {
  display: flex;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 0 auto 10px;
  width: fit-content;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

#qrcode-canvas { display: block; border-radius: 8px; }

.qrcode-hint {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-style: italic;
}

.pix-copy-wrap { margin-bottom: 24px; }

.pix-copy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

#pix-code-text {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.9);
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  resize: none;
  outline: none;
  line-height: 1.6;
}

.btn-copiar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--verde-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  min-width: 72px;
}

.btn-copiar:hover { background: var(--verde-light); transform: scale(1.03); }
.btn-copiar.copiado { background: #c8f7c5; color: #1a5c36; }

.pix-instrucao {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
}

.btn-trocar {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-trocar:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.1); }

.pix-chave-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 18px 28px;
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  text-align: left;
}

.pix-chave-info svg { flex-shrink: 0; opacity: 0.8; }
.pix-chave-info div { display: flex; flex-direction: column; gap: 4px; }
.pix-chave-info strong { color: var(--white); font-weight: 800; }

/* ==============================
   CONTATO
   ============================== */
.contato {
  background: var(--creme);
  text-align: center;
  padding: 80px 0;
}

.contato-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.contato-cards {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contato-card-insta {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contato-card-insta:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #e1306c; /* Cor clássica do Instagram */
}

.insta-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
  transition: var(--transition);
}

.contato-card-insta:hover .insta-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(225, 48, 108, 0.5);
}

.contato-card-insta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 8px;
}

.insta-user {
  font-size: 1.1rem;
  color: #e1306c;
  font-weight: 700;
}

.btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 36px;
  border-radius: 100px;
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.2);
  transition: var(--transition);
}

.contato-card-insta:hover .btn-insta {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 60px 24px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  opacity: 0.9;
  clip-path: circle(42% at 50% 50%);
  transform: scale(1.2);
}

.footer-name {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-desc { font-size: 0.9rem; margin-bottom: 16px; }
.footer-patas { font-size: 1.5rem; margin-bottom: 20px; letter-spacing: 8px; }
.footer-copy { font-size: 0.8rem; opacity: 0.6; }

/* ==============================
   ANIMAÇÕES
   ============================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse-logo {
  0%, 100% { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 0 rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 16px rgba(255,255,255,0); }
}

/* Aparece ao scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==============================
   RESPONSIVO
   ============================== */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .ajudar-cards { grid-template-columns: 1fr; }

  .frase-impacto { padding: 28px 24px; flex-direction: column; gap: 10px; }
  .pata-dec { font-size: 1.5rem; }

  .pix-box { padding: 28px 20px; }
  .valores-grid { grid-template-columns: repeat(3, 1fr); }
  .btn-outro { grid-column: span 3; }

  .pix-chave-info { flex-direction: column; text-align: center; }
  .pix-chave-info div { align-items: center; }

  /* Campanhas responsivo */
  .campanha-card-single { flex-direction: column; max-width: 100%; }
  .campanha-img-wrap { min-height: 280px; }
  .campanha-content { padding: 28px 24px; }
  .btn-adotar-now, .btn-ajudar-hercules { display: block; align-self: stretch; text-align: center; }
}

@media (max-width: 480px) {
  .logo-wrap { width: 170px; height: 170px; }
  .logo { width: 140px; height: 140px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Campanhas responsivo em celulares pequenos */
  .campanha-img-wrap { min-height: 220px; }
  .campanha-content { padding: 20px 16px; }

  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-outro { grid-column: span 2; }

  .input-custom-row { flex-wrap: wrap; }
  #valor-custom-input { min-width: 0; }
  .btn-gerar { width: 100%; }

  .frase-impacto { padding: 24px 16px; }
  .frase-impacto p { font-size: 1rem; }
}

/* ====================================================
   CAMPANHA CARAMELA - ELEMENTOS FORMATADOS
   ==================================================== */
.prestacao-contas-box {
  background: var(--cinza);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid var(--verde-dark);
}

.prestacao-contas-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

.contas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.conta-item {
  background: var(--white);
  padding: 12px 8px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.conta-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.conta-valor {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
}

.conta-item.arrecadado {
  border-bottom: 3px solid var(--verde-dark);
}

.conta-item.arrecadado .conta-valor {
  color: var(--verde-dark);
}

.conta-item.restante {
  border-bottom: 3px solid var(--laranja);
}

.conta-item.restante .conta-valor {
  color: var(--laranja);
}

.progresso-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progresso-bar {
  background: rgba(0, 0, 0, 0.08);
  height: 8px;
  border-radius: 100px;
  overflow: hidden;
}

.progresso-fill {
  background: linear-gradient(90deg, var(--verde), var(--verde-dark));
  height: 100%;
  border-radius: 100px;
}

.progresso-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
}

.apelo-pata {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 700;
  margin: 16px 0;
}

.procura-lar-card {
  background: var(--creme);
  border: 1px dashed var(--laranja);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
}

.procura-lar-card .lar-title {
  font-weight: 800;
  color: var(--laranja);
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.procura-lar-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 576px) {
  .contas-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .conta-item {
    padding: 10px;
  }
}

