* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

/* Estilo para a PRIMEIRA imagem (o ícone verde) */
.footer-logo img:first-child {
    width: 40px;
    height: 40px;
}

/* Estilo para a SEGUNDA imagem (o texto "POUPA+") */
.footer-logo img:last-child {
    height: 28px; /* Altura ideal para alinhar com o ícone, ajuste se necessário */
    width: 115px;  /* Largura automática para não distorcer a imagem */
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-credit {
  color: #25d366;
  font-weight: 600;
}

.footer-specialist-text {
  color: #666;
  font-size: 0.9rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #25d366;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

footer .cta-button {
  background: #25d366;
  color: white;
  width: 100%;
  padding: 10px 12px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-align: center;
}

/* RESPONSIVOS        */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  footer .cta-button {
    width: 50%;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}
