/**
 * VARIABLES GLOBALES PARA BLOQUES AMENTUM
 * Archivo compartido con todas las variables CSS utilizadas en los bloques
 */

/* Variables globales para los bloques */
:root {
	/* Colores primarios */
	--amentum-primary: #007cba;
	--amentum-secondary: #667eea;
	--amentum-accent: #764ba2;

	/* Colores de texto */
	--amentum-text: #333;
	--amentum-text-light: #666;

	/* Colores de fondo */
	--amentum-bg-light: #f8f9fa;

	/* Espaciados */
	--amentum-spacing: 100px;
	--amentum-block-spacing: 60px;

	/* Bordes y formas */
	--amentum-radius: 12px;

	/* Transiciones */
	--amentum-transition: all 0.3s ease;
}

/* Estilos base compartidos */
.block-header {
	text-align: center;
	margin-bottom: var(--amentum-block-spacing);
}

.block-title {
	font-size: 2.5rem;
	color: var(--amentum-text);
	margin-bottom: 20px;
	font-weight: bold;
}

.block-subtitle {
	font-size: 1.2rem;
	color: var(--amentum-text-light);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Los botones ahora usan el sistema de diseño unificado en _botones.scss */

/* Acciones de bloque */
.block-actions {
	text-align: center;
	margin-top: 40px;
}

/* Estado sin contenido */
.no-content {
	text-align: center;
	padding: 60px 40px;
}

.no-content p {
	color: var(--amentum-text-light);
	margin-bottom: 30px;
	font-size: 1.1rem;
}

/* Responsive global */
@media (max-width: 768px) {
	.block-title {
		font-size: 2rem;
	}

	:root {
		--amentum-spacing: 80px;
		--amentum-block-spacing: 40px;
	}
}

@media (max-width: 480px) {
	:root {
		--amentum-spacing: 60px;
		--amentum-block-spacing: 30px;
	}
}
