/* UI Baseada nos Prints Fornecidos */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #10b981;
    --primary-light: #d1fae5;
    --primary-dark: #059669;
    --secondary: #0f172a;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --premium-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

/* Glassmorphism & Modern Utils */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.text-gradient {
    color: var(--primary);
}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Sidebar Estilizada */
#sidebar {
    background-color: var(--bg-sidebar);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: var(--radius-md);
    margin-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link i {
    font-size: 1.25rem;
    margin-right: 12px;
}

.nav-link:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(4px);
}

.nav-link.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Cards Premium */
.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--premium-shadow);
}

/* Botões Modernos */
.btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

/* Logo Styles */
.logo-container {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Guest Layout (Login/Register) */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
}

.auth-sidebar {
    background: #064e3b;
    /* Solid Deep Emerald */
    color: white;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.auth-sidebar-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    /* Solid overlay for legibility */
    z-index: 3;
}

.auth-content {
    width: 55%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}

.form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    height: 3.5rem;
    border-radius: var(--radius-md);
    padding: 0 1.25rem;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Landing Page Extensions */
.hero-section {
    padding: 8rem 0;
    background: var(--bg-body);
    overflow: hidden;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.btn-access {
    background: var(--secondary);
    color: white !important;
    border-radius: 100px;
    padding: 0.8rem 2rem;
}

.btn-access:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card {
    padding: 2.5rem;
    border-radius: 24px;
    background: white;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-light);
}

.step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    margin: 0 auto;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
}

.step-circle:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-dark .nav-link:hover {
    color: white !important;
    padding-left: 10px !important;
}

.hover-white:hover {
    color: white !important;
}

@media (max-width: 992px) {
    .auth-sidebar {
        display: none;
    }

    .auth-content {
        width: 100%;
        padding: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}