/* CTA GRID */
.cta-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: center;
}

.cta-content {
	max-width: 480px;
}

.cta-content .section-paragraph {
	margin-top: 16px;
	color: #8a94a6;
}

/* FORM */
.cta-form {
	/* background: #ffffff; */
	padding: 32px;
	border-radius: 6px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);

	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cta-form input,
.cta-form textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: 4px;
	border: 1px solid #d9e1ec;
	font-family: inherit;
	font-size: 14px;
}

.cta-form input:focus,
.cta-form textarea:focus {
	outline: none;
	border-color: #0270d7;
}

.cta-form textarea {
	resize: none;
}

.form-message {
	margin-top: 6px;
	font-size: 14px;
	text-align: center;
	display: none;
}

.form-message.success {
	color: #22c55e; /* verde */
	display: block;
}

.form-message.error {
	color: #ef4444; /* rojo */
	display: block;
}

#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  z-index: 9999;
  /* border-radius: 50%; */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

#whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.cta-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}

	.cta-content {
		max-width: none;
	}
}
