/* ==========================================================================
   ACOLHIMENTO & ORAÇÃO - FINAL CTA & FOOTER STYLES
   ========================================================================== */

/* Final CTA Section */
.cta-final-section {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: var(--bg-main);
}

.cta-final-card {
  position: relative;
  background-color: var(--primary-green-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.cta-final-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.cta-final-title {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-final-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-olive);
}

.cta-final-media {
  position: relative;
  z-index: 1;
}

.cta-final-img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid #FFFFFF;
}

/* Footer Section */
.footer {
  background-color: #1E351A;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-icon.icon-wa:hover {
  background-color: #25D366;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.footer-social-icon.icon-insta:hover {
  background-color: #E1306C;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.footer-social-icon.icon-yt:hover {
  background-color: #FF0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.footer-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.65rem 1.15rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.footer-group-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.footer-group-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-logo-text {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.footer-logo-text span {
  display: block;
  font-size: 0.825rem;
  font-family: var(--font-body);
  color: var(--accent-olive);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-column-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

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

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-dev-link {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-dev-link:hover {
  color: #88C057;
  text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulseGlow 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
