/* CSS Crítico - Carrega primeiro para melhor performance */

/* Estilos base e configuração do tema */
:root {
    --bg-dark: #0A0A0A;
    --bg-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --brand-orange: #ff6a00;
    --brand-orange-dark: #e55800;
    --panel-light: rgba(255, 255, 255, 0.6);
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Modo escuro - quando tem a classe dark */
.dark body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Efeito de "Glow" radial com divs */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.dark .glow-container {
    opacity: 1;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(250px);
}

.glow-1 {
    width: 800px;
    height: 800px;
    top: -20%;
    left: -15%;
    background: linear-gradient(180deg, rgba(0, 255, 133, 0.15) 0%, rgba(12, 12, 12, 0.15) 100%);
}

.glow-2 {
    width: 700px;
    height: 700px;
    top: 10%;
    right: -20%;
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.15) 0%, rgba(12, 12, 12, 0.15) 100%);
}

.glow-3 {
    width: 900px;
    height: 900px;
    bottom: -30%;
    left: 10%;
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.15) 0%, rgba(12, 12, 12, 0.15) 100%);
}

/* Efeito de vidro inspirado no Figma */
.glass-card {
    border-radius: 1.5rem;
    transition: background 0.3s ease, border 0.3s ease;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-light);
    background-color: var(--panel-light);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Modo escuro - quando tem a classe dark */
.dark .glass-card {
    background-color: rgba(12, 12, 12, 0.45);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background-image: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%);
}

.header-glass {
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-radius: 50px;
}

.switchable-text {
    color: var(--text-dark);
}

.dark .switchable-text {
    color: var(--text-light);
} 