.tonic-cta-card-container {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tonic-cta-card {
  background-color: #ffffff;
  border-radius: 8px; 
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); 
  padding: 60px 40px;
  max-width: 850px; /
  width: 100%;
  text-align: center;
}

.tonic-cta-card-title {
  font-size: 42px;
  font-weight: 700;
  color: #222222;
  margin-top: 0;
  margin-bottom: 20px;
}

.tonic-cta-card-desc {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.tonic-cta-card-btn {
  display: inline-block;
  background-color: #d25627; /* Naranja Tonic3 */
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.tonic-cta-card-btn:hover {
  background-color: #b5451d; 
  color: #ffffff;
}

@media (max-width: 768px) {
  .tonic-cta-card {
    padding: 40px 20px;
  }
  .tonic-cta-card-title {
    font-size: 32px;
  }
  .tonic-cta-card-desc {
    font-size: 16px;
  }
}