:root {
    --atlas-primary: #0260f7;
    --atlas-primary-hover: #0150d6;
    --atlas-success: #10B981;
    --atlas-warning: #F59E0B;
    --atlas-danger: #F43F5E;
    --atlas-secondary: #CBD5E1;
    --atlas-bg-light: #F8F9FA;
    --atlas-text-dark: #1F2937;
    --atlas-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --atlas-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--atlas-bg-light);
    color: var(--atlas-text-dark);
}

.navbar-atlas {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    box-shadow: var(--atlas-shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--atlas-primary) !important;
}

.navbar-brand strong {
    color: var(--atlas-primary);
}

.nav-link {
    font-weight: 500;
    color: var(--atlas-text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--atlas-primary) !important;
}

.btn-atlas-primary {
    background-color: var(--atlas-primary);
    border-color: var(--atlas-primary);
    color: white;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--atlas-shadow);
}

.btn-atlas-primary:hover {
    background-color: var(--atlas-primary-hover);
    border-color: var(--atlas-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--atlas-shadow-lg);
}

.btn-atlas-secondary {
    background-color: var(--atlas-secondary);
    border-color: var(--atlas-secondary);
    color: var(--atlas-text-dark);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-atlas-success {
    background-color: var(--atlas-success);
    border-color: var(--atlas-success);
    color: white;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card-atlas {
    border: none;
    border-radius: 16px;
    box-shadow: var(--atlas-shadow);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.card-atlas:hover {
    transform: translateY(-4px);
    box-shadow: var(--atlas-shadow-lg);
}

.card-atlas-header {
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px 16px 0 0;
}

.card-local {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.card-local-img {
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.card-local-body {
    padding: 1.5rem;
}

.badge-status-livre {
    background-color: var(--atlas-success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.badge-status-pendente {
    background-color: var(--atlas-warning);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.badge-status-reservado {
    background-color: var(--atlas-danger);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.badge-status-bloqueado {
    background-color: var(--atlas-secondary);
    color: var(--atlas-text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.kpi-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--atlas-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--atlas-shadow-lg);
}

.kpi-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--atlas-primary);
}

.kpi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--atlas-text-dark);
    margin-bottom: 0.5rem;
}

.kpi-label {
    font-size: 0.875rem;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.footer-atlas {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.esporte-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--atlas-shadow);
}

.esporte-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--atlas-shadow-lg);
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: white;
}

.esporte-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.esporte-card:hover .esporte-icon {
    color: white;
}

.table-atlas {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--atlas-shadow);
}

.table-atlas thead {
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: white;
}

.table-atlas th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.table-atlas td {
    padding: 1rem;
    vertical-align: middle;
}

.hero-section {
    height:500px;
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: white;
    text-align: center;
    padding: 2px;
    margin: 2rem 0;
    border-radius: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.identity-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
    padding: 2rem 1rem;
}

.identity-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 3rem;
    max-width: 480px;
    width: 100%;
}

.identity-header {
    text-align: center;
    margin-bottom: 2rem;
}

.identity-logo {
    font-size: 3rem;
    color: var(--atlas-primary);
    margin-bottom: 1rem;
}

.identity-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--atlas-text-dark);
    margin-bottom: 0.5rem;
}

.identity-subtitle {
    color: #6B7280;
    font-size: 0.95rem;
}

.form-group-atlas {
    margin-bottom: 1.5rem;
}

.form-label-atlas {
    font-weight: 600;
    color: var(--atlas-text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-atlas {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-atlas:focus {
    outline: none;
    border-color: var(--atlas-primary);
    box-shadow: 0 0 0 3px rgba(255, 95, 21, 0.1);
}

.form-control-atlas.is-invalid {
    border-color: var(--atlas-danger);
}

.text-validation-error {
    color: var(--atlas-danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.btn-identity-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--atlas-shadow);
}

.btn-identity-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--atlas-shadow-lg);
}

.btn-marcar-horario {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-marcar-horario:hover {
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: scaleX(90%);
}


.identity-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.identity-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.identity-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: #6B7280;
    font-size: 0.875rem;
}

.identity-link {
    color: var(--atlas-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.identity-link:hover {
    color: var(--atlas-primary-hover);
    text-decoration: underline;
}

.checkbox-atlas {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-atlas input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 6px;
    border: 2px solid #E5E7EB;
    cursor: pointer;
}

.calendario-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--atlas-shadow-lg);
}

.calendario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F3F4F6;
}

.calendario-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calendario-titulo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--atlas-text-dark);
}

.calendario-subtitulo {
    color: #6B7280;
    font-size: 0.95rem;
}

.calendario-legenda {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 12px;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.legenda-cor {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legenda-cor.pendente {
    background-color: #F59E0B;
}

.legenda-cor.aprovado {
    background-color: #10B981;
}

.legenda-cor.bloqueado {
    background-color: #0260f7;
}

.legenda-cor.livre {
    background-color: #E5E7EB;
    border: 2px solid #9CA3AF;
}

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

.fc .fc-button-primary {
    background-color: var(--atlas-primary);
    border-color: var(--atlas-primary);
    border-radius: 8px;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.fc .fc-button-primary:hover {
    background-color: var(--atlas-primary-hover);
    border-color: var(--atlas-primary-hover);
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    background-color: var(--atlas-primary-hover);
    border-color: var(--atlas-primary-hover);
}

.fc-event {
    border-radius: 6px;
    padding: 2px 4px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.fc-daygrid-day:hover {
    background-color: #FEF3E7;
}

.perfil-header {
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
}

.perfil-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    color: var(--atlas-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.perfil-nome {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.perfil-email {
    font-size: 1rem;
    opacity: 0.9;
}

.agendamento-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--atlas-shadow);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.agendamento-card:hover {
    transform: translateX(4px);
    box-shadow: var(--atlas-shadow-lg);
}

.agendamento-card.status-pendente {
    border-left-color: var(--atlas-warning);
}

.agendamento-card.status-aprovado {
    border-left-color: var(--atlas-success);
}

.agendamento-card.status-recusado {
    border-left-color: var(--atlas-danger);
}

.agendamento-card.status-cancelado {
    border-left-color: var(--atlas-secondary);
    opacity: 0.7;
}

.agendamento-info {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.agendamento-detalhes h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--atlas-text-dark);
    margin-bottom: 0.5rem;
}

.agendamento-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.agendamento-meta i {
    width: 20px;
    text-align: center;
}

.filtros-container {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--atlas-shadow);
}

.filtros-titulo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--atlas-text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filtro-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filtro-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--atlas-text-dark);
}

.filtro-select {
    padding: 0.625rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.filtro-select:focus {
    outline: none;
    border-color: var(--atlas-primary);
}

.upload-area {
    border: 2px dashed #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #F9FAFB;
}

.upload-area:hover {
    border-color: var(--atlas-primary);
    background: #FEF3E7;
}

.upload-area.dragover {
    border-color: var(--atlas-primary);
    background: #FEF3E7;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 3rem;
    color: var(--atlas-primary);
    margin-bottom: 1rem;
}

.upload-text {
    color: #6B7280;
    font-size: 0.95rem;
}

.upload-preview {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.upload-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.config-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--atlas-shadow);
}

.config-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--atlas-text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F3F4F6;
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.config-item:last-child {
    border-bottom: none;
}

.config-info h6 {
    font-weight: 600;
    color: var(--atlas-text-dark);
    margin-bottom: 0.25rem;
}

.config-info p {
    color: #6B7280;
    font-size: 0.875rem;
    margin: 0;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E1;
    transition: 0.4s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--atlas-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.modal-atlas .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-atlas .modal-header {
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 2rem;
    border: none;
}

.modal-atlas .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-atlas .btn-close {
    filter: brightness(0) invert(1);
}

.modal-atlas .modal-body {
    padding: 2rem;
}

.modal-atlas .modal-footer {
    border-top: 2px solid #F3F4F6;
    padding: 1.5rem 2rem;
}

.alert-atlas {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--atlas-shadow);
}

.alert-atlas i {
    font-size: 1.5rem;
}

.alert-atlas-success {
    background: #ECFDF5;
    color: #065F46;
    border-left: 4px solid var(--atlas-success);
}

.alert-atlas-danger {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 4px solid var(--atlas-danger);
}

.alert-atlas-warning {
    background: #FFFBEB;
    color: #92400E;
    border-left: 4px solid var(--atlas-warning);
}

.alert-atlas-info {
    background: #EFF6FF;
    color: #1E40AF;
    border-left: 4px solid #3B82F6;
}

#calendar {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--atlas-shadow);
}

.fc-button-primary {
    background-color: var(--atlas-primary) !important;
    border-color: var(--atlas-primary) !important;
}

.fc-button-primary:hover {
    background-color: var(--atlas-primary-hover) !important;
    border-color: var(--atlas-primary-hover) !important;
}

.fc-event {
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 600;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--atlas-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 95, 21, 0.25);
}

.alert {
    border-radius: 12px;
    border: none;
    box-shadow: var(--atlas-shadow);
}

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--atlas-shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--atlas-primary) 0%, #014bb5 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.breadcrumb {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--atlas-shadow);
    margin-bottom: 2rem;
}

.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--atlas-text-dark);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6B7280;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .kpi-value {
        font-size: 2rem;
    }
    
    .card-local-img {
        height: 150px;
    }
}

.swal2-popup {
    border-radius: 16px !important;
}

.swal2-confirm {
    background-color: var(--atlas-primary) !important;
    border-radius: 10px !important;
}

.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--atlas-shadow);
    margin-bottom: 2rem;
}

.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(255, 95, 21, 0.3);
    border-radius: 50%;
    border-top-color: var(--atlas-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--atlas-shadow);
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--atlas-secondary);
    margin-bottom: 1rem;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--atlas-text-dark);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: #6B7280;
}

/* Avisos */
.avisos-container .alert {
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.avisos-container .alert-info {
    border-left-color: #0dcaf0;
}

.avisos-container .alert-success {
    border-left-color: #10B981;
}

.avisos-container .alert-warning {
    border-left-color: #F59E0B;
}

.avisos-container .alert-danger {
    border-left-color: #F43F5E;
}

/* Calendário melhorado - Design profissional */
.fc-button {
    background-color: var(--atlas-primary) !important;
    border-color: var(--atlas-primary) !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease !important;
}

.fc-button:hover {
    background-color: var(--atlas-primary-hover) !important;
    border-color: var(--atlas-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 95, 21, 0.3) !important;
}

.fc-button-active {
    background-color: #cc4a12 !important;
    border-color: #cc4a12 !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.fc-button:disabled {
    opacity: 0.5;
}

.fc-toolbar-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--atlas-text-dark) !important;
    text-transform: capitalize !important;
}

.fc-toolbar {
    padding: 1rem 0 !important;
    margin-bottom: 1rem !important;
}

.fc-col-header-cell {
    background: linear-gradient(135deg, #0260f7 0%, #3d7fff 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.875rem !important;
    padding: 1rem 0.5rem !important;
    border: none !important;
    letter-spacing: 0.5px !important;
}

.fc-col-header-cell-cushion {
    color: white !important;
    text-decoration: none !important;
    padding: 0.5rem !important;
}

.fc-timegrid-slot {
    height: 3.5rem !important;
    border-color: #E5E7EB !important;
}

.fc-timegrid-slot-label {
    font-weight: 600 !important;
    color: #6B7280 !important;
}

.fc-event {
    border-radius: 6px !important;
    padding: 4px 8px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}

.fc-event:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.fc-daygrid-day-number {
    font-weight: 600 !important;
    color: var(--atlas-text-dark) !important;
    padding: 0.5rem !important;
}

.fc-day-today {
    background-color: #FEF3E7 !important;
}

.fc-timegrid-axis {
    font-weight: 600 !important;
}

.fc-scrollgrid {
    border-color: #E5E7EB !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.fc-theme-standard td, 
.fc-theme-standard th {
    border-color: #E5E7EB !important;
}

.fc-timegrid-col.fc-day-today {
    background-color: rgba(255, 95, 21, 0.03) !important;
}

/*Carousel*/
.carousel-container{
    margin: 100px auto;
    width: 100%;
    height: 350px;
    display: flex;
    overflow-x: auto;
}

.carousel-container::-webkit-scrollbar{
    display: none;
}

.carousel-section {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 10s infinite linear;
    padding-right: 1em;
}

.carousel-card {
    flex: 0 0 12em; /* largura fixa para TODOS */
    height: 350px; /* altura fixa */
    padding: 0; /* remove padding (importante!) */
    border-radius: .5em;
    text-align: center;
    align-content: center;
}
.carousel-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.carousel-futsal {
    background-image: url(../images/locais/5b8e5004-5aea-41a7-ac21-f52a5d4167dc.jpg);
}
.carousel-cruzeiro {
    background-image: url(../images/locais/017e3f2d-0973-47fa-93e2-cc32f3f21429.jpg);
}
.carousel-jardim_europa {
    background-image: url(../images/locais/411f9232-c036-4e0b-8594-dfc715d6d67c.jpg);
}
.carousel-parque_familia {
    background-image: url(../images/locais/9427a433-f542-4574-adb0-5b5e6c7b66a6.webp);
}
.carousel-simao {
    background-image: url(../images/locais/d51c1e0f-78c4-45b6-b5a0-0b3c08f92b95.jpg);
}
@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}