/* ClimaPro 360 - Estilo unificado das páginas modelo */

/* cadastro-empresa.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }
        
        /* Custom file upload styling */
        .file-upload-active {
            border-color: #1E88E5;
            background-color: #EFF6FF;
        }

/* login.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        
        .animate-fade-in {
            animation: fadeIn 0.5s ease-out forwards;
        }
        
        .animate-slide-up {
            animation: slideUp 0.6s ease-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

/* dashboard-principal.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }

/* ordem-servico.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }
        
        /* Custom form styling */
        .form-input {
            transition: all 0.2s;
        }
        .form-input:focus {
            border-color: #1E88E5;
            box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
            outline: none;
        }
        
        /* Status badge pulsing animation */
        @keyframes pulse-soft {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
            70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }
        .status-pulse {
            animation: pulse-soft 2s infinite;
        }

/* envio-email.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }
        
        .form-input {
            transition: all 0.2s;
        }
        .form-input:focus {
            border-color: #1E88E5;
            box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
            outline: none;
        }

        /* Success Message Animation */
        @keyframes slide-in {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .success-message {
            animation: slide-in 0.5s ease-out forwards;
        }

/* gestao-equipe.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }
        
        .form-input {
            transition: all 0.2s;
        }
        .form-input:focus {
            border-color: #1E88E5;
            box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
            outline: none;
        }

        /* Modal Animation */
        .modal-enter { opacity: 0; transform: scale(0.95); }
        .modal-enter-active { opacity: 1; transform: scale(1); transition: opacity 0.3s, transform 0.3s; }
        .modal-exit { opacity: 1; transform: scale(1); }
        .modal-exit-active { opacity: 0; transform: scale(0.95); transition: opacity 0.2s, transform 0.2s; }

/* financeiro.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }
        
        .form-input {
            transition: all 0.2s;
        }
        .form-input:focus {
            border-color: #1E88E5;
            box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
            outline: none;
        }

/* planos.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }
        
        .check-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: #4B5563;
            font-size: 0.95rem;
        }
        .check-list li i {
            color: #22C55E;
            flex-shrink: 0;
        }
        .check-list li.disabled {
            color: #9CA3AF;
        }
        .check-list li.disabled i {
            color: #D1D5DB;
        }
        
        /* Toggle Switch */
        .toggle-checkbox:checked {
            right: 0;
            border-color: #1E88E5;
        }
        .toggle-checkbox:checked + .toggle-label {
            background-color: #1E88E5;
        }

/* painel-admin-master.html */
::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }

/* calendario.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }
        
        /* Custom Calendar Grid Styles */
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background-color: #E5E7EB; /* Border color for grid */
        }
        .calendar-day {
            background-color: white;
            min-height: 120px;
        }
        .calendar-day-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
        }
        
        /* Event Card Styles */
        .event-card {
            transition: all 0.2s ease;
        }
        .event-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

/* configuracoes-empresa.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        .sidebar-transition { transition: transform 0.3s ease-in-out; }
        
        /* Form Styles matching inspiration */
        .form-input {
            width: 100%;
            border: 1px solid #E5E7EB;
            border-radius: 0.5rem;
            padding: 0.625rem 0.875rem;
            font-size: 0.875rem;
            color: #111827;
            background-color: #FFFFFF;
            transition: all 0.2s;
        }
        .form-input:focus {
            outline: none;
            border-color: #1E88E5;
            box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
        }
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.375rem;
        }
        .form-section-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.25rem;
        }
        .form-section-desc {
            font-size: 0.875rem;
            color: #6B7280;
            margin-bottom: 1.5rem;
        }
        
        /* Custom File Upload */
        .file-upload-area {
            border: 2px dashed #E5E7EB;
            border-radius: 0.75rem;
            transition: all 0.2s;
        }
        .file-upload-area:hover {
            border-color: #1E88E5;
            background-color: #F8FAFC;
        }

        /* Toggle Switch */
        .toggle-checkbox:checked {
            right: 0;
            border-color: #1E88E5;
        }
        .toggle-checkbox:checked + .toggle-label {
            background-color: #1E88E5;
        }

/* onboarding.html */
::-webkit-scrollbar { display: none; }
        body { font-family: 'Inter', sans-serif; }
        
        .fade-enter {
            opacity: 0;
            transform: translateX(20px);
        }
        .fade-enter-active {
            opacity: 1;
            transform: translateX(0);
            transition: opacity 300ms, transform 300ms;
        }
        .fade-exit {
            opacity: 1;
            transform: translateX(0);
        }
        .fade-exit-active {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 300ms, transform 300ms;
        }
        
        /* Custom smooth transition for the slider */
        .slide-container {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

/* Shared layout tweaks */
.mobile-sidebar-bg {
    background-color: #f8fafc;
}

.mobile-sidebar-overlay {
    background-color: rgba(248, 250, 252, 0.82);
}

@media (min-width: 768px) {
    .mobile-sidebar-bg {
        background-color: transparent;
    }
}
