﻿
.licenca-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 16px;
}

.licenca-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-width: 460px;
    width: 100%;
    animation: fadeIn 0.6s ease-in-out;
}

.licenca-titulo {
    font-weight: 700;
    color: #d32f2f;
}

.licenca-descricao {
    color: #444;
    line-height: 1.6;
    font-size: 0.98rem;
}

.licenca-footer {
    margin-top: 24px;
    color: #888;
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .licenca-card {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .licenca-titulo {
        font-size: 1.3rem;
    }

    .licenca-descricao {
        font-size: 0.9rem;
    }
}
