/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5FBF;
    --secondary-purple: #7C4DFF;
    --light-purple: #B794F6;
    --logo-yellow: #FFD60A;
    --text-purple: #8B5FBF;
    --background-light: #F8F9FA;
    --white: #ffffff;
    --text-dark: #1D1D1F;
    --text-gray: #6E6E73;
    --button-purple: #8B5FBF;
    --button-outline: #86868B;
    --card-bg: rgba(255, 255, 255, 0.95);
    --gradient-primary: linear-gradient(135deg, #8B5FBF 0%, #7C4DFF 100%);
    --gradient-text: linear-gradient(135deg, #8B5FBF 0%, #7C4DFF 100%);
    --gradient-light: linear-gradient(135deg, #B794F6 0%, #8B5FBF 100%);
    --gradient-yellow: linear-gradient(135deg, #FFD60A 0%, #FF9500 100%);
    --glow-purple: 0 0 20px rgba(139, 95, 191, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.47;
    color: var(--text-dark);
    background: var(--background-light);
    overflow-x: hidden;
}

/* Tipografías limpias */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Utilidades */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Efectos sutiles de fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(139, 95, 191, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 77, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
} 