.kai-cta-section {
  background: #E3F6F1;
  border-radius: 12px;
  padding: 32px;
  margin: 40px auto;
  max-width: 1100px; /* aumentei um pouco para dar espaço à imagem maior */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.kai-cta-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.kai-cta-text {
  flex: 1 1 50%;
  text-align: left; /* ✅ garante texto à esquerda em todas as telas */
}

.kai-cta-text h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #363F4D;
  text-align: left; /* redundante, mas reforça o alinhamento */
}

.kai-cta-text p {
  margin: 0 0 20px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
  text-align: left; /* mantém coerência */
}

.btn-whatsapp {
  display: inline-block;
  background: #2dd1ac;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background: #2FAE94;
  transform: translateY(-2px);
}

.kai-cta-image {
  flex: 1 1 45%;
  text-align: center;
}

.kai-cta-image img {
  max-width: 450px;  /* imagem maior no desktop */
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .kai-cta-content {
    flex-direction: column;
    align-items: center;
    text-align: center; /* centraliza o container, mas o texto fica à esquerda */
  }

  .kai-cta-text {
    text-align: left; /*  força o texto à esquerda mesmo no mobile */
    width: 100%;
  }

  .kai-cta-image img {
    max-width: 260px; /* reduzido no mobile */
  }
}
