/* ===== Enhanced CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, 
              #001a33 0%, 
              #003366 100%),
              url('../../img/footer-4.png') center/cover;
  color: var(--light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, 
              var(--primary-dark) 0%, 

              transparent 60%);
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 2;
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.cta-content h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 4px;
}

.cta-content p {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--light-gray);
  margin-bottom: 3rem;
  opacity: 0.95;
  position: relative;
  padding: 0 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius:var(--radius-full);
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--success);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}
  
.btn-whatsapp:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-light i,
.btn-whatsapp i {
  font-size: 1rem;
  margin-right: 0.5rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 4.5rem 0;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
  }
  
  .cta-buttons {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 3.5rem 0;
  }
  
  .cta-content h2 {
    font-size: 1.9rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-light,
  .btn-whatsapp {
    width: 100%;
    font-size: 1.1rem;
    max-width: 280px;
    text-align: center;
  }
}