body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  background: #c91c50;
  min-height: 100vh;
}

.header {
  background: #fff;
  padding: 0.5rem 0 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo {
  height: 48px;
  width: auto;
}

.hero {
  background: #c91c50;
  padding: 2rem 1rem 1.5rem 1rem;
  text-align: center;
}
.hero h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.2;
}

.causas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 0 1rem;
}

.causa-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-width: 0;
}
.causa-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: scale(1.025);
  z-index: 2;
}

.card-imgs {
  display: flex;
  position: relative;
  width: 100%;
  height: 140px;
  background: none;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.card-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 20px 20px 0 0;
  background: none;
}
.fav-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.fav-icon svg {
  width: 18px;
  height: 18px;
  transition: stroke 0.2s, fill 0.2s;
}
.logo-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  display: block;
}

.card-content {
  background: #fff;
  padding: 1.1rem 1rem 1.2rem 1rem;
  border-radius: 0 0 20px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  gap: 0.3rem;
}
.causa-categoria {
  color: #c91c50;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
}
.causa-titulo {
  color: #222;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.causa-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
  color: #b0aeb2;
  margin-bottom: 0.2rem;
}
.causa-barra {
  width: 100%;
  height: 6px;
  background: #f3e6ed;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
}
.causa-barra-parcial {
  height: 100%;
  background: #c91c50;
  border-radius: 6px;
  transition: width 0.4s;
  position: relative;
}
.causa-barra-bolinha {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  background: #c91c50;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 4px rgba(201,28,80,0.15);
}
.causa-valores {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 1.1rem;
  color: #c91c50;
  font-weight: 600;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
}
.causa-porcentagem {
  color: #b0aeb2;
  font-size: 0.97rem;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
}
.causa-arrecadado {
  color: #c91c50;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.5rem;
}
.causa-meta {
  color: #b0aeb2;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 0.2rem;
}

@media (max-width: 800px) {
  .causas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
  }
  .hero h1 {
    font-size: 1.3rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 500px) {
  .causas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 1.2rem 0.2rem 0 0.2rem;
  }
  .header {
    padding: 0.5rem 0 0.5rem 0.7rem;
  }
  .logo {
    height: 38px;
  }
  .card-imgs {
    height: 110px;
  }
  .card-content {
    padding: 1rem 0.7rem 1rem 0.7rem;
    min-height: 100px;
  }
  .causa-titulo {
    font-size: 1rem;
  }
  .causa-arrecadado {
    font-size: 1.1rem;
  }
} 