/* AurusTech - Vercel Style CSS */

/* Estilo base para cards */
.vercel-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vercel-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Botão principal */
.vercel-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vercel-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.vercel-button:active {
    transform: translateY(0);
}

/* Efeito shimmer para texto */
.text-shimmer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Fonte Inter para consistência */
.font-inter {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Animações suaves */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estados de hover para botões de login */
.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

/* Melhorias visuais */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to));
}

/* Layout e Sidebar */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

/* Responsividade */
@media (max-width: 640px) {
    .vercel-card {
        margin: 1rem;
        border-radius: 8px;
    }
    
    .vercel-button {
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 1023px) {
    .sidebar {
        width: 280px !important;
        max-width: 85vw;
    }
}

/* Layout para dashboards */
@media (min-width: 1024px) {
    .sidebar {
        transform: translateX(-200px) !important;
        width: 200px !important;
    }
}

/* Remover estilos antigos do content-main - agora usando flexbox */

/* Evitar scroll horizontal global */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Garantir que elementos não ultrapassem a largura */
* {
    box-sizing: border-box;
}

.vercel-card, .grid, .flex {
    max-width: 100%;
    overflow: hidden;
}