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

:root {
    --bg-dark: #0f1012;
    --bg-darker: #080809;
    --bg-surface: #1e1f23;
    --bg-surface-light: #2a2b30;
    --text-main: #f8f9fa;
    --text-muted: #c9ced6;
    --accent: #ff884d;
    --primary: #ff5e14; /* Laranja de Alta Energia */
    --primary-hover: #e04a0b;
    --border-color: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(30, 31, 35, 0.6);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Enhancements */
.text-muted {
    color: var(--text-muted) !important;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.text-impact {
    font-weight: 900;
    letter-spacing: -2px;
}

/* Utils */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.smooth-transition {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Components */
.btn-premium {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-premium:hover {
    color: var(--bg-dark);
}

.btn-premium:hover::before {
    width: 100%;
}

.btn-premium-solid {
    background-color: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-premium-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Cards Hover Animation */
.premium-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.15);
}

/* Form Inputs */
.form-premium {
    background-color: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 4px;
    padding: 1rem;
}

.form-premium:focus {
    background-color: rgba(0,0,0,0.5);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 10px rgba(255, 94, 20, 0.2);
}

.form-premium::placeholder {
    color: var(--text-muted);
}

.text-primary-accent {
    color: var(--primary) !important;
}
