/* Custom styles for Modus Agendamentos de Cursos */

:root {
    /* Cores principais da Modus - Identidade Visual Atualizada */
    --primary-color: #1a1a1a;          /* Preto/cinza muito escuro - cor principal da Modus */
    --primary-light: #2d2d2d;          /* Cinza escuro */
    --primary-dark: #000000;           /* Preto absoluto */
    --secondary-color: #4a5568;        /* Cinza médio */
    --accent-color: #ff6b35;           /* Laranja vibrante - cor de destaque da Modus */
    --accent-secondary: #ffa726;       /* Laranja mais claro */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3182ce;             /* Azul para informações */
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --text-light: #e2e8f0;             /* Texto claro */
    --text-muted: #a0aec0;             /* Texto secundário */
    
    /* Gradientes modernos da Modus */
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-secondary: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    
    /* Sombras aprimoradas */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
    --shadow-accent: 0 4px 14px 0 rgba(255, 107, 53, 0.3);
}

body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

/* Main content positioning */
main.container {
    position: relative;
    z-index: 1;
}

/* Navbar customizations - Estilo Modus */
.navbar {
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1000;
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem !important;
    border-radius: 0.375rem;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Dropdown melhorado */
.dropdown-menu {
    background: var(--gradient-primary);
    border: 1px solid var(--accent-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-light) !important;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
}

.dropdown-item:hover {
    background: var(--gradient-accent) !important;
    color: white !important;
    transform: translateX(5px);
}

.dropdown-toggle::after {
    border-top-color: var(--text-light);
    transition: all 0.3s ease;
}

.dropdown-toggle:hover::after {
    border-top-color: var(--accent-color);
}

/* Buttons - Estilo Modus */
.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-accent);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    font-weight: 500;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
}

.btn-success {
    background: var(--success-color);
    border: none;
    font-weight: 500;
}

.btn-info {
    background: var(--info-color);
    border: none;
    font-weight: 500;
}

.btn-warning {
    background: var(--warning-color);
    border: none;
    color: white;
    font-weight: 500;
}

.btn-danger {
    background: var(--danger-color);
    border: none;
    font-weight: 500;
}

/* Cards - Estilo Modus */
.card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem 1rem 0 0 !important;
    border: none;
    font-weight: 600;
    padding: 1.25rem;
    border-bottom: 2px solid var(--accent-color);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background: rgba(26, 26, 26, 0.05);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 1rem 1.5rem;
}

/* Forms - Estilo Modus */
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.875rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.875rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Tables - Estilo Modus */
.table {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.table thead th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(255, 107, 53, 0.05);
    transform: scale(1.01);
}

.table tbody td {
    padding: 1rem 1.25rem;
    border-color: rgba(255, 107, 53, 0.1);
}

/* Alerts - Estilo Modus */
.alert {
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-weight: 500;
    border-width: 2px;
}

.alert-primary {
    background: rgba(26, 26, 26, 0.1);
    border: 2px solid rgba(26, 26, 26, 0.3);
    color: var(--primary-color);
}

.alert-info {
    background: rgba(49, 130, 206, 0.1);
    border: 2px solid rgba(49, 130, 206, 0.3);
    color: var(--info-color);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: var(--success-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    color: var(--warning-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: var(--danger-color);
}

.alert-dismissible .btn-close {
    padding: 0.75rem;
}

/* Progress bars */
.progress-bar {
    background: var(--gradient-primary);
}

/* Badges */
.badge-primary {
    background: var(--primary-color);
}

.badge-info {
    background: var(--accent-color);
}

/* Links */
a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Dashboard specific styles */
.dashboard-card {
    background: var(--gradient-secondary);
    color: white;
    border: none;
}

.dashboard-card .card-body {
    padding: 2rem;
}

.dashboard-card:hover {
    background: var(--gradient-accent);
}

/* Status indicators */
.status-pending {
    color: var(--warning-color);
}

.status-confirmed {
    color: var(--primary-color);
}

.status-completed {
    color: var(--success-color);
}

.status-cancelled {
    color: var(--danger-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


.navbar {
    height: 60px !important;
    min-height: 60px !important;
    padding: 0.5rem 1rem !important;
    background: var(--gradient-primary) !important;
}

.navbar-brand {
    font-size: 1.2rem !important;
    margin: 0 !important;
    padding: 0.25rem 0 !important;
    line-height: 1.2 !important;
}

.navbar-nav {
    height: 60px !important;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    line-height: 1.2 !important;
}

.navbar-collapse {
    height: auto !important;
}

/* Ajustar conteúdo abaixo do navbar */
main.container {
    margin-top: 1rem !important;
    padding-top: 0 !important;
}

body {
    padding-top: 0 !important;
}
/* === FIM CORREÇÃO HEADER === */


/* === CORREÇÃO LAYOUT COMPLETO MODUS === */

/* Reset geral - reduzir espaçamentos */
* {
    box-sizing: border-box;
}

html, body {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Navbar compacto */
.navbar {
    height: 50px !important;
    min-height: 50px !important;
    padding: 0.25rem 1rem !important;
    margin-bottom: 0.5rem !important;
}

.navbar-brand {
    font-size: 1.1rem !important;
    margin: 0 !important;
    padding: 0.2rem 0 !important;
    line-height: 1.2 !important;
}

.navbar-nav {
    height: 50px !important;
}

.navbar-nav .nav-link {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
}

/* Container principal compacto */
.container, .container-fluid {
    max-width: 100% !important;
    padding: 0.5rem !important;
    margin: 0 auto !important;
}

main.container {
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
}

/* Cards compactos */
.card {
    margin-bottom: 1rem !important;
    border-radius: 0.5rem !important;
}

.card-header {
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.card-body {
    padding: 1rem !important;
}

.card-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
}

/* Botões compactos */
.btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.9rem !important;
    border-radius: 0.4rem !important;
    margin: 0.2rem !important;
}

.btn-sm {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.8rem !important;
}

.btn-lg {
    padding: 0.6rem 1.2rem !important;
    font-size: 1rem !important;
}

/* Formulários compactos */
.form-control {
    padding: 0.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 0.4rem !important;
    margin-bottom: 0.5rem !important;
}

.form-group {
    margin-bottom: 0.75rem !important;
}

.form-label, label {
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
    font-weight: 500 !important;
}

/* Tabelas compactas */
.table {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
}

.table th {
    padding: 0.5rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

.table td {
    padding: 0.5rem !important;
    font-size: 0.85rem !important;
}

/* Títulos compactos */
h1 {
    font-size: 1.6rem !important;
    margin: 0.5rem 0 !important;
}

h2 {
    font-size: 1.4rem !important;
    margin: 0.4rem 0 !important;
}

h3 {
    font-size: 1.2rem !important;
    margin: 0.4rem 0 !important;
}

h4 {
    font-size: 1.1rem !important;
    margin: 0.3rem 0 !important;
}

h5 {
    font-size: 1rem !important;
    margin: 0.3rem 0 !important;
}

/* Alertas compactos */
.alert {
    padding: 0.6rem !important;
    margin: 0.5rem 0 !important;
    font-size: 0.9rem !important;
    border-radius: 0.4rem !important;
}

/* Modal compacto */
.modal-header {
    padding: 0.75rem 1rem !important;
}

.modal-body {
    padding: 1rem !important;
}

.modal-footer {
    padding: 0.5rem 1rem !important;
}

/* Badges compactos */
.badge {
    font-size: 0.75rem !important;
    padding: 0.25rem 0.5rem !important;
}

/* Breadcrumb compacto */
.breadcrumb {
    padding: 0.5rem 1rem !important;
    margin: 0.5rem 0 !important;
    font-size: 0.85rem !important;
}

/* Lista compacta */
.list-group-item {
    padding: 0.6rem !important;
    font-size: 0.9rem !important;
}

/* Tabs compactas */
.nav-tabs .nav-link {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
}

/* Logo redimensionada */
.navbar-brand img, 
.logo, 
img[src*="logo"] {
    max-height: 35px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
}

/* Responsivo - mobile ainda mais compacto */
@media (max-width: 768px) {
    html, body {
        font-size: 13px !important;
    }
    
    .navbar {
        height: 45px !important;
        padding: 0.2rem 0.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .navbar-brand img {
        max-height: 30px !important;
        max-width: 100px !important;
    }
    
    .container {
        padding: 0.3rem !important;
    }
    
    .card-body {
        padding: 0.8rem !important;
    }
    
    .btn {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.85rem !important;
    }
}

/* === FIM CORREÇÃO LAYOUT === */


/* === CORREÇÃO ESPAÇAMENTO NAVBAR === */

/* Aumentar espaçamento entre brand e nav items */
.navbar-brand {
    margin-right: 2rem !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    padding: 0.2rem 2rem 0.2rem 0 !important;
    line-height: 1.2 !important;
}

/* Espaçar os itens do menu da navbar */
.navbar-nav {
    margin-left: 1.5rem !important;
    height: 50px !important;
}

.navbar-nav .nav-item {
    margin-left: 0.8rem !important;
}

.navbar-nav .nav-link {
    padding: 0.4rem 1rem !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    margin: 0 0.3rem !important;
}

/* Para telas maiores, mais espaçamento */
@media (min-width: 992px) {
    .navbar-brand {
        margin-right: 3rem !important;
        padding-right: 3rem !important;
    }
    
    .navbar-nav {
        margin-left: 2rem !important;
    }
    
    .navbar-nav .nav-item {
        margin-left: 1rem !important;
    }
}

/* Para telas médias */
@media (max-width: 991px) and (min-width: 768px) {
    .navbar-brand {
        margin-right: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .navbar-nav {
        margin-left: 1rem !important;
    }
}

/* Mobile - manter compacto mas com espaçamento */
@media (max-width: 767px) {
    .navbar-brand {
        margin-right: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .navbar-nav {
        margin-left: 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    .navbar-nav .nav-item {
        margin-left: 0.3rem !important;
    }
}

/* Garantir que o botão toggler também tenha espaçamento */
.navbar-toggler {
    margin-left: 1rem !important;
}

/* === FIM CORREÇÃO ESPAÇAMENTO NAVBAR === */

/* === CORREÇÃO LAYOUT WIDE SCREEN === */

/* Limitar largura máxima do conteúdo */
.container, .container-fluid {
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* Para telas muito grandes, centralizar e limitar */
@media (min-width: 1600px) {
    .container, .container-fluid {
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    body {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 0 2rem !important;
    }
}

/* Ajustar cards para não ficarem muito largos */
.card {
    max-width: 100% !important;
}

/* Tabelas responsivas para evitar esticamento */
.table-responsive {
    overflow-x: auto !important;
}

.table {
    min-width: 600px !important;
    max-width: 100% !important;
}

/* Dashboard cards em grid responsivo */
.row .col-md-3, .row .col-lg-3 {
    max-width: 300px !important;
    flex: 0 0 auto !important;
}

/* Formulários com largura controlada */
.form-control {
    max-width: 500px !important;
}

/* Botões com largura controlada */
.btn-group {
    max-width: 100% !important;
    flex-wrap: wrap !important;
}

/* === FIM CORREÇÃO LAYOUT WIDE SCREEN === */

/* === PADRONIZAÇÃO BOTÕES NAVBAR === */

/* Navbar principal com gradiente melhorado */
.navbar {
    background: linear-gradient(135deg, #003366 0%, #0066cc 50%, #0080ff 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.75rem 1rem !important;
    min-height: 65px !important;
}

/* Brand melhorado */
.navbar-brand {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    margin-right: 2rem !important;
    transition: all 0.3s ease !important;
}

.navbar-brand:hover {
    color: #ffd700 !important;
    transform: scale(1.05) !important;
}

/* Botões da navbar padronizados */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 0.6rem 1.2rem !important;
    margin: 0 0.3rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.navbar-nav .nav-link:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

/* Dropdown melhorado */
.navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(0, 51, 102, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.3) !important;
    margin-top: 0.5rem !important;
    padding: 0.5rem 0 !important;
}

.navbar-nav .dropdown-item {
    color: #003366 !important;
    font-weight: 500 !important;
    padding: 0.6rem 1.5rem !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    margin: 0.2rem 0.5rem !important;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%) !important;
    color: white !important;
    transform: translateX(5px) !important;
}

.navbar-nav .dropdown-divider {
    border-color: rgba(0, 51, 102, 0.2) !important;
    margin: 0.5rem 1rem !important;
}

/* Botão toggle melhorado */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    padding: 0.5rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Ícones nos botões */
.navbar-nav .nav-link i {
    margin-right: 0.5rem !important;
    font-size: 0.9rem !important;
}

/* Responsividade melhorada */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(0, 51, 102, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        border-radius: 12px !important;
        margin-top: 1rem !important;
        padding: 1rem !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .navbar-nav .nav-link {
        margin: 0.3rem 0 !important;
        text-align: center !important;
    }
    
    .navbar-brand {
        margin-right: 1rem !important;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem !important;
        min-height: 60px !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
    }
}

/* Animações suaves */
@keyframes navbarSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav {
    animation: navbarSlideIn 0.5s ease-out !important;
}

/* === FIM PADRONIZAÇÃO BOTÕES NAVBAR === */
