/**
 * Base Styles - Estilos fundamentales y reset
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FAFAFA;
    color: #1d1d1f;
    line-height: 1.4;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Utility Classes */
.accent {
    color: #FF6B35;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

p {
    font-family: 'Inter', sans-serif;
    color: #6e6e73;
}

/* Global Link Styles */
a {
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background-color: #FF6B35;
    color: white;
}
