/* Cores personalizadas */
:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --success-color: #059669;
    --danger-color: #dc2626;
}

/* Gradiente para hero */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
}

/* Hero section */
.hero-section {
    padding-top: 100px;
}

.hero-stats h3 {
    font-size: 2rem;
}

.hero-image img {
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Feature cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits section */
.benefit-item {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    height: 60px;
    display: flex;
    align-items: center;
}

/* Utilities */
.min-vh-100 {
    min-height: 100vh;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}
