/**
 * Estilos del frontend para el plugin Adhequim Cotización y Contacto.
 */

.adhequim-cotizar-container {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 24px 0;
	width: 100%;
}

.adhequim-cotizar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	flex: 1;
	min-width: 200px;
	cursor: pointer;
	border: 1px solid transparent;
	outline: none;
	box-sizing: border-box;
}

.adhequim-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
	transition: transform 0.3s ease;
	display: inline-block;
	vertical-align: middle;
}

/* Botón de WhatsApp */
.adhequim-btn-whatsapp {
	background-color: var(--adhequim-wa-bg, #25D366);
	color: var(--adhequim-wa-color, #ffffff) !important;
}

.adhequim-btn-whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
	filter: brightness(1.05);
}

.adhequim-btn-whatsapp:hover .adhequim-icon {
	transform: scale(1.15) rotate(8deg);
}

/* Botón de Contactar */
.adhequim-btn-contact {
	background-color: var(--adhequim-contact-bg, #333333);
	color: var(--adhequim-contact-color, #ffffff) !important;
	border-color: rgba(255, 255, 255, 0.1);
}

.adhequim-btn-contact:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	filter: brightness(1.15);
}

.adhequim-btn-contact:hover .adhequim-icon {
	transform: scale(1.15);
}

/* Adaptación a dispositivos móviles */
@media (max-width: 600px) {
	.adhequim-cotizar-container {
		flex-direction: column;
		gap: 12px;
	}

	.adhequim-cotizar-btn {
		width: 100%;
		min-width: 100%;
		padding: 12px 20px;
		font-size: 14px;
	}
}
