/* CSS específico para página de ativação */

.activation-section {
    background: var(--gradient-primary);
    min-height: 80vh;
    padding: 3rem 0;
    display: flex;
    align-items: center;
}

.activation-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.activation-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.activation-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.activation-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.activation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.mac-help {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.mac-help h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mac-help ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mac-help li {
    margin-bottom: 0.5rem;
    color: #1e40af;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    width: 100%;
    justify-content: center;
}

.trial-info {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
}

.trial-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trial-info p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Sistema fora do ar */
.system-down-message {
    text-align: center;
    padding: 2rem;
}

.system-down-icon {
    color: #dc2626;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.system-down-message h2 {
    color: #dc2626;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.system-down-content {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.system-down-content p {
    color: #991b1b;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.system-down-content ul {
    list-style: none;
    text-align: left;
    color: #b91c1c;
}

.system-down-content li {
    margin-bottom: 0.5rem;
}

.support-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.support-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.support-info strong {
    color: var(--primary-color);
    font-size: 1.125rem;
}

/* Mensagem de sucesso do contato */
.contact-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    color: #10b981;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-success h3 {
    color: #10b981;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-success p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-success .small {
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .activation-section {
        padding: 2rem 0;
    }
    
    .activation-header h1 {
        font-size: 2rem;
    }
    
    .activation-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .trial-info {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .activation-form-container {
        padding: 1.5rem;
    }
    
    .mac-help {
        padding: 1rem;
    }
    
    .trial-info {
        padding: 1rem;
    }
}

