/* ===== CORES ===== */
:root {
  --verde: #32CD32;        /* LimeGreen */
  --verde-escuro: #15803d;
  --cinza-claro: #f5f5f5;
  --branco: #fff;
  --texto: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Saira', sans-serif;
  background: var(--branco);
  color: var(--texto);
  line-height: 1.6;
}

/* ===== TOPO ===== */
.topo img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.topo h1 {
  font-size: 2rem;
  margin: 1rem;
  color: var(--verde-escuro);
}
.topo p {
  margin: 0 1rem 1rem;
  font-size: 1.1rem;
}

/* ===== PROGRESSO ===== */
.progresso-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.progresso-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.barra-fundo {
  background: #e0e0e0;
  height: 25px;
  border-radius: 12px;
  position: relative;
  margin: 0.5rem 0;
}
.barra-preenchida {
  background: var(--verde);
  height: 100%;
  border-radius: 12px;
  transition: width 0.5s;
}
.porcentagem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}
.balão-falta {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #86efac;
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
  display: inline-block;
  width: auto;
}

/* ===== BOTÃO DOAR ===== */
.centro {
  text-align: center;
  margin: 2rem 0;
}
.botao-doar {
  background: var(--verde);
  color: white;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
}
.botao-doar:hover {
  background: var(--verde-escuro);
}
/* Animação pulsar */
.pulse {
  animation: pulsar 2s infinite;
}
@keyframes pulsar {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ===== CARROSSEL ===== */
.carrossel-section h2 {
  color: var(--verde-escuro);
  margin-bottom: 1rem;
  text-align: center;
}

.carrossel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 400px;
}

.slides img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Setas */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.seta:hover {
  background: white;
}
.seta-esquerda {
  left: 15px;
}
.seta-direita {
  right: 15px;
}

/* Indicadores (bolinhas) */
.indicadores {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.indicador {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 2px solid white;
  cursor: pointer;
  transition: background 0.3s;
}
.indicador.ativo {
  background: #15803d;
  border-color: #15803d;
}

/* ===== DOADORES ===== */
.doadores {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.doador-card {
  display: flex;
  align-items: center;
  background: var(--cinza-claro);
  border-radius: 10px;
  padding: 0.8rem;
  margin: 0.5rem 0;
}
.doador-card i {
  color: var(--verde);
  font-size: 1.5rem;
  margin-right: 0.8rem;
}
.doador-info {
  flex: 1;
}
.doador-info h3 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.doador-info .tempo {
  font-size: 0.8rem;
  color: #777;
}
.doador-valor {
  font-weight: bold;
  color: var(--verde-escuro);
}

/* ===== HISTÓRIA PERSUASIVA ===== */
.texto-impacto {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}
.texto-impacto h2 {
  color: #15803d;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.destaque {
  font-weight: 500;
  font-size: 1.2rem;
  color: #111;
}
.urgencia-box {
  background: #fff3cd;
  border-left: 6px solid #f59e0b;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}
.lista-esperanca {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}
.lista-esperanca li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}
.apelo-final {
  background: #f0fdf4;
  border: 2px solid #86efac;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}
.apelo-final p {
  margin: 0.5rem 0;
}

/* ===== RODAPÉ ===== */
footer {
  background: var(--verde-escuro);
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
