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

body {
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(to right, #01bf63, #1a4056);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(to right, #01bf63, #01a352);
}

/* Novo estilo moderno para o header */
.app-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4f46e5;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link-active {
    position: relative;
    font-weight: 600;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4f46e5;
    border-radius: 1px;
}

.modern-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transition: all 0.6s;
}

.modern-button:hover:before {
    left: 100%;
}

.mobile-menu {
    display: none;
}


.mobile-menu.active {
    display: block;
}

/* Client Form Styles */
.drop-zone-active { 
    border-color: #6366f1 !important; 
    background-color: #f5f3ff !important; 
    transform: scale(1.01); 
    transition: all 0.2s ease; 
}