/* Variáveis CSS */
:root {
  --azul-principal: #11ABE0;
  --amarelo-destaque: #FCC62D;
  --branco: #FFFFFF;
  --fundo: #F3F3F3;
  --cinza-claro: #F3F3F3;
  --texto: #1B2A41;
  --sombra: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.doe-page {
  padding-top: 80px;
}

/* Hero Section com animação */
.hero {
  background: var(--branco);
  padding: 40px 0 30px;
  text-align: center;
}

.hero h1 {
  color: var(--azul-principal);
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(50px);
  animation: scrollFloat 0.8s ease forwards;
}

.hero-subtitle {
  color: var(--texto);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 0.2s forwards;
}

.hero-text {
  color: var(--texto);
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 15px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 0.4s forwards;
}

.hero-description {
  color: var(--azul-principal);
  font-size: 14px;
  font-weight: 600;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 0.6s forwards;
}

@keyframes scrollFloat {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seção de Serviços - ESPAÇAMENTO REDUZIDO */
.servicos-section {
  background: var(--branco);
  padding: 5px 0 15px;
}

.servicos-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.servicos-list p {
  color: var(--texto);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  animation: scrollFloat 0.6s ease forwards;
}

.servicos-list p:nth-child(1) {
  animation-delay: 0.8s;
}

.servicos-list p:nth-child(2) {
  animation-delay: 0.9s;
}

.servicos-list p:nth-child(3) {
  animation-delay: 1s;
}

.servicos-list p:nth-child(4) {
  animation-delay: 1.1s;
}

.servicos-list p:nth-child(5) {
  animation-delay: 1.2s;
}

.servicos-list p:nth-child(6) {
  animation-delay: 1.3s;
}

.servicos-list strong {
  color: var(--azul-principal);
  font-weight: bold;
}

.final-text {
  margin-top: 15px !important;
  font-weight: 600;
  color: var(--azul-principal);
}

/* Cards de Doação - ESPAÇAMENTO REDUZIDO */
.cards-section {
  background: var(--branco);
  padding: 25px 0 40px;
}

.cards-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card base - SEM SOMBRA NOS ÍCONES */
.doe-card {
  width: 324px;
  height: 320px;
  border-radius: 26px;
  background: #FCC62D;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px; /* ajuste o valor */
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 1.4s forwards;
}

.cards-grid .doe-card:nth-child(2) {
  animation-delay: 1.6s;
}

/* Círculo no topo */
.card-icon-circle {
  width: 115px;
  height: 115px;
  background: #FCC62D;
  border-radius: 50%;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -57px;
  z-index: 2;
}

/* Ícone - SEM BOX-SHADOW */
.card-icon {
  width: 59px;
  height: 59px;
  aspect-ratio: 1/1;
}

.card-title {
  color: var(--texto);
  font-size: 18px;
  font-weight: bold;
  margin: 70px 0 15px 0;
}

/* Informações do card */
.card-info {
  width: 100%;
}




/* Card PIX - QR CODE MAIOR */
.pix-chave {
  color: var(--branco);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
}

.pix-numero {
  color: var(--texto);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.qr-code {
  margin-top: 8px;
}

.qr-code img {
  width: 125px;
  height: 125px;
}

/* Nota Fiscal - ESPAÇAMENTO REDUZIDO */
.nota-fiscal-section {
  background: var(--branco);
  padding: 40px 0 30px;
  text-align: center;
}

.nota-fiscal-section h2 {
  color: var(--azul-principal);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 1.8s forwards;
}

.nota-subtitle {
  color: var(--texto);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 2s forwards;
}

.nota-text {
  color: var(--texto);
  font-size: 14px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: scrollFloat 0.6s ease forwards;
}

.nota-text:nth-of-type(3) {
  animation-delay: 2.2s;
}

.nota-text:nth-of-type(4) {
  animation-delay: 2.4s;
}

.nota-text strong {
  color: var(--azul-principal);
  font-weight: bold;
}

/* Como Fazer - ESPAÇAMENTO REDUZIDO */
.como-fazer-section {
  background: var(--branco);
  padding: 30px 0 60px;
  text-align: center;
}

.como-fazer-section h2 {
  color: var(--azul-principal);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 2.6s forwards;
}

.passos-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  border: 3px solid var(--azul-principal);
  border-radius: 15px;
  background: var(--branco);
  opacity: 0;
  transform: translateY(30px);
  animation: scrollFloat 0.8s ease 2.8s forwards;
}

.passos-list {
  text-align: left;
  color: var(--texto);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.passos-list li {
  margin-bottom: 6px;
}

.duvidas-text {
  color: var(--texto);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.duvidas-text a {
  color: var(--azul-principal);
  text-decoration: none;
  font-weight: bold;
}

.duvidas-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .cards-grid {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .qr-code img {
    width: 90px;
    height: 90px;
  }
}

/* Labels em branco */
.banco-label,
.agencia-label,
.conta-label {
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 3px;
}

/* Valores em texto escuro */
.banco-nome,
.agencia-numero,
.conta-numero {
  color: var(--texto);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}