/* Updated: 2026-02-03 */
/* CTA Formulario Cacao section */
.cta-cacao-section {
  width: 100%;
  background: #f5f5f5;
  padding: 96px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-cacao-container {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
}

.cta-cacao-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4a445, #c4941f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
}

.cta-cacao-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.3;
}

.cta-cacao-title .highlight {
  color: #d4a445;
  display: block;
}

.cta-cacao-description {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.cta-cacao-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.cta-cacao-button {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-cacao-button.primary {
  background: #d4a445;
  color: #2a1810;
}

.cta-cacao-button.primary:hover {
  background: #c4941f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 164, 69, 0.3);
}

.cta-cacao-button.secondary {
  background: transparent;
  color: #333;
  border-color: #d4a445;
}

.cta-cacao-button.secondary:hover {
  border-color: #d4a445;
  background: rgba(212, 164, 69, 0.1);
  color: #333;
  box-shadow: 0 8px 24px rgba(212, 164, 69, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-cacao-section {
    padding: 72px 20px;
  }

  .cta-cacao-container {
    padding: 0 20px;
  }

  .cta-cacao-title {
    font-size: 2rem;
  }

  .cta-cacao-description {
    font-size: 1rem;
  }

  .cta-cacao-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-cacao-button {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

@media (max-width: 500px) {
  .cta-cacao-section {
    padding: 56px 16px;
  }

  .cta-cacao-title {
    font-size: 1.75rem;
  }

  .cta-cacao-description {
    font-size: 0.95rem;
  }

  .cta-cacao-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
