/* Footer Section */
.footer {
  padding: 5rem 0 2rem;
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3, 122, 200, 0.5), transparent);
}

/* CTA Block */
.footer-cta-block {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-cta-block h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.footer-cta-block p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #25D366;
  color: white;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 1.125rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-whatsapp:hover {
  background: #1ebd5b;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Footer Main Info */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.footer-link:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--color-secondary);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
