/* assets/css/style.css */
/* Estilos personalizados para o Portal de Correspondentes */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-custom {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-verde {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.btn-verde:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alert {
    border-radius: 8px;
}

.navbar{

    background: #0056b3;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.stats-card h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.demand-card {
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.demand-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.badge-status {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.region-tag {
    background: var(--info-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin: 0.25rem;
}

/* Page - ManagerDemand */
.modern-card {
        background-color: #f9fafb;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.03);
        transition: transform 0.2s ease;
    }

    .modern-card:hover {
        transform: translateY(-4px);
    }

    .demand-card-modern {
        background-color: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 1rem;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .demand-card-modern:hover {
        box-shadow: 0 6px 16px rgba(0,0,0,0.06);
        transform: translateY(-4px);
    }

    .badge-status {
        padding: 6px 12px;
        border-radius: 10px;
        font-size: 0.75rem;
    }

    .search-input {
        border-radius: 10px;
        padding: 0.6rem 1rem;
        border: 1px solid #d1d5db;
    }

    .quick-actions .btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 500;
        padding: 0.6rem 1rem;
        border-radius: 10px;
        transition: background-color 0.2s ease;
    }

    .quick-actions .btn:hover {
        opacity: 0.9;
    }




/* Media */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

