/**
 * Base Styles - Reset y estilos fundamentales
 *
 * Contiene:
 * - Reset CSS
 * - Tipografía base (Jost)
 * - Colores globales
 * - Variables CSS
 * - Utilidades básicas
 */

/* =====================================================
   0. VARIABLES CSS
   ===================================================== */

:root {
	/* Typography */
	--font-size-sm: 12px;
	--font-size-base: 14px;
	--font-size-md: 16px;

	/* Spacing - Responsivo dinámico */
	--lateral-spacing: clamp(80px, 10vw, 220px);

	/* Animations */
	--button-animation: button-hover 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
		transition-duration: 0.01ms;
	}
}

/* =====================================================
   1. TIPOGRAFÍA BASE - INTER
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================================================
   2. CSS RESET
   ===================================================== */



html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd, dt {
	margin: 0 !important;
	padding: 0 !important;
}

ul, ol {
	list-style: none !important;
}

a {
	text-decoration: none;
}

input,
textarea,
select,
button {
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}

/* WordPress específico */
.wp-block-heading {
	margin: 0 !important;
	padding: 0 !important;
}

.wp-block-paragraph {
	margin: 0 !important;
	padding: 0 !important;
}

figure {
	margin: 0 !important;
	padding: 0 !important;
}

table {
	margin: 0 !important;
	padding: 0 !important;
	border-collapse: collapse;
}

th, td {
	margin: 0 !important;
	padding: 0 !important;
}

/* =====================================================
   3. ANIMATIONS - KEYFRAMES GLOBALES
   ===================================================== */

@keyframes button-hover {
	0% {
		transform: scale(1) translateY(0);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		filter: brightness(1);
	}
	100% {
		transform: scale(1.05) translateY(-4px);
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 0 24px rgba(70, 96, 96, 0.12);
		filter: brightness(1.1);
	}
}

/* =====================================================
   5. GLOBAL COMPONENTS
   ===================================================== */

/* Alerts */
.mentoria-alert,
.notification {
	padding: 12px;
	border-radius: 4px;
	font-size: 14px;
}

.mentoria-alert--error,
.notification--error {
	background-color: #fee;
	border: 1px solid #fcc;
	color: #c33;
}

.mentoria-alert--success,
.notification--success {
	background-color: #efe;
	border: 1px solid #cfc;
	color: #3c3;
}
