/*# sourceMappingURL=custom.min.css.map */

/* Tela de Loading CloudCare */
.cloudcare-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradê azul claro → azul escuro elegante (evita tons muito escuros como Facebook #1877F2) */
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 20%, #90CAF9 40%, #64B5F6 60%, #42A5F5 80%, #2196F3 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.cloudcare-loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.cloudcare-logo-container {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

.cloudcare-logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.3));
}

.cloudcare-quote-container {
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

.cloudcare-quote-text {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;
}

.cloudcare-quote-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e6f3ff;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cloudcare-loading-spinner {
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1.8s ease-out 1s forwards;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    border-color: rgba(255, 255, 255, 0.8);
    border-right-color: transparent;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cloudcare-logo-container:hover .cloudcare-logo {
    animation: pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .cloudcare-logo {
        width: 250px;
    }
    
    .cloudcare-quote-text {
        font-size: 1.2rem;
        min-height: 100px;
    }
    
    .cloudcare-quote-author {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cloudcare-logo {
        width: 200px;
    }
    
    .cloudcare-quote-text {
        font-size: 1.1rem;
        min-height: 90px;
    }
    
    .cloudcare-quote-container {
        padding: 0 15px;
    }
}
