body, html {
    font-family: Arial, Helvetica, sans-serif;
}

.pdr-50{
    padding-right: 50px;
}

/* ========================================
   Modal de Redirecionamento - Trelogic para Tecnomind
   ======================================== */

body.modal-active > *:not(.redirect-modal) {
    filter: grayscale(100%);
    pointer-events: none;
}

body.modal-active {
    overflow: hidden;
}

.redirect-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.redirect-modal-content {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    padding: 3rem 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(13, 27, 42, 0.6);
    animation: modalFadeIn 0.5s ease-out;
    border: 1px solid rgba(65, 90, 119, 0.3);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.redirect-modal-content h2 {
    color: #e0e1dd;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.redirect-modal-text {
    color: #a8b2c1;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.redirect-modal-text strong {
    color: #e0e1dd;
}

.redirect-modal-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.redirect-modal-subtext {
    color: #a8b2c1;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.redirect-modal-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1b4965 0%, #0d1b2a 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(27, 73, 101, 0.4);
    border: 1px solid rgba(65, 90, 119, 0.5);
}

.redirect-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.5);
    background: linear-gradient(135deg, #2a6f97 0%, #1b263b 100%);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .redirect-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .redirect-modal-content h2 {
        font-size: 1.3rem;
    }

    .redirect-modal-logo {
        max-width: 220px;
    }

    .redirect-modal-text {
        font-size: 1rem;
    }

    .redirect-modal-subtext {
        font-size: 0.9rem;
    }

    .redirect-modal-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}